From owner-svn-ports-head@freebsd.org Thu Sep 13 21:52:24 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 58636109AE65; Thu, 13 Sep 2018 21:52:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0F00985097; Thu, 13 Sep 2018 21:52:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 09FF01B4E5; Thu, 13 Sep 2018 21:52:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8DLqNff080638; Thu, 13 Sep 2018 21:52:23 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8DLqNSB080632; Thu, 13 Sep 2018 21:52:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201809132152.w8DLqNSB080632@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Sep 2018 21:52:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479698 - head/databases/pgFormatter X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/databases/pgFormatter X-SVN-Commit-Revision: 479698 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Sep 2018 21:52:24 -0000 Author: sunpoet Date: Thu Sep 13 21:52:22 2018 New Revision: 479698 URL: https://svnweb.freebsd.org/changeset/ports/479698 Log: Update to 3.1 - Sort PLIST - Reformat pkg-descr - Take maintainership Changes: https://github.com/darold/pgFormatter/releases Modified: head/databases/pgFormatter/Makefile head/databases/pgFormatter/distinfo (contents, props changed) head/databases/pgFormatter/pkg-descr (contents, props changed) head/databases/pgFormatter/pkg-plist (contents, props changed) Modified: head/databases/pgFormatter/Makefile ============================================================================== --- head/databases/pgFormatter/Makefile Thu Sep 13 21:49:52 2018 (r479697) +++ head/databases/pgFormatter/Makefile Thu Sep 13 21:52:22 2018 (r479698) @@ -2,11 +2,11 @@ # $FreeBSD$ PORTNAME= pgFormatter -PORTVERSION= 3.0 +PORTVERSION= 3.1 DISTVERSIONPREFIX= v CATEGORIES= databases -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= PostgreSQL SQL syntax beautifier LICENSE= PostgreSQL @@ -14,8 +14,10 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= perl5 USE_PERL5= configure + USE_GITHUB= yes GH_ACCOUNT= darold + NO_ARCH= yes .include Modified: head/databases/pgFormatter/distinfo ============================================================================== --- head/databases/pgFormatter/distinfo Thu Sep 13 21:49:52 2018 (r479697) +++ head/databases/pgFormatter/distinfo Thu Sep 13 21:52:22 2018 (r479698) @@ -1,3 +1,3 @@ -TIMESTAMP = 1534388007 -SHA256 (darold-pgFormatter-v3.0_GH0.tar.gz) = 8cf2452d0e4a6448e86b80e9a0dbc9252729544150f3141d14192e33bc86fedb -SIZE (darold-pgFormatter-v3.0_GH0.tar.gz) = 61783 +TIMESTAMP = 1536875089 +SHA256 (darold-pgFormatter-v3.1_GH0.tar.gz) = 250e3cfab11deda28d86a3e0ba9d3e03a76106957bd122fdbbf08953e68f88fc +SIZE (darold-pgFormatter-v3.1_GH0.tar.gz) = 90564 Modified: head/databases/pgFormatter/pkg-descr ============================================================================== --- head/databases/pgFormatter/pkg-descr Thu Sep 13 21:49:52 2018 (r479697) +++ head/databases/pgFormatter/pkg-descr Thu Sep 13 21:52:22 2018 (r479698) @@ -1,8 +1,10 @@ -This SQL formatter/beautifier supports keywords from SQL-92, SQL-99, -SQL-2003, SQL-2008, SQL-2011 and PostgreSQL specifics keywords. May -works with any other databases too. pgFormatter can work as a console -program or as a CGI. It will automatically detect his environment and -output as text or as HTML following the context. Keywords highlighting -will only be available in CGI context. +This SQL formatter/beautifier supports keywords from SQL-92, SQL-99, SQL-2003, +SQL-2008, SQL-2011 and PostgreSQL specifics keywords. May works with any other +databases too. + +pgFormatter can work as a console program or as a CGI. It will automatically +detect his environment and output as text or as HTML following the context. + +Keywords highlighting will only be available in CGI context. WWW: https://github.com/darold/pgFormatter Modified: head/databases/pgFormatter/pkg-plist ============================================================================== --- head/databases/pgFormatter/pkg-plist Thu Sep 13 21:49:52 2018 (r479697) +++ head/databases/pgFormatter/pkg-plist Thu Sep 13 21:52:22 2018 (r479698) @@ -1,9 +1,9 @@ bin/pg_format -%%PERL5_MAN1%%/pg_format.1.gz -%%PERL5_MAN3%%/pgFormatter::Beautify.3.gz -%%PERL5_MAN3%%/pgFormatter::CGI.3.gz -%%PERL5_MAN3%%/pgFormatter::CLI.3.gz %%SITE_PERL%%/pgFormatter/Beautify.pm %%SITE_PERL%%/pgFormatter/CGI.pm %%SITE_PERL%%/pgFormatter/CLI.pm %%SITE_PERL%%/regress_test.pl +%%PERL5_MAN1%%/pg_format.1.gz +%%PERL5_MAN3%%/pgFormatter::Beautify.3.gz +%%PERL5_MAN3%%/pgFormatter::CGI.3.gz +%%PERL5_MAN3%%/pgFormatter::CLI.3.gz