Received: by mail.netbsd.org (Postfix, from userid 605) id EE5E584E33; Tue, 7 Jan 2020 13:35:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D062A84DE1 for ; Tue, 7 Jan 2020 13:35:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 6M1TjrqL3p4n for ; Tue, 7 Jan 2020 13:35:06 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 3F72984D47 for ; Tue, 7 Jan 2020 13:35:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3306BFBF4; Tue, 7 Jan 2020 13:35:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1578404106263390" MIME-Version: 1.0 Date: Tue, 7 Jan 2020 13:35:06 +0000 From: "Wen Heping" Subject: CVS commit: pkgsrc/devel/p5-Perl-Tidy To: pkgsrc-changes@NetBSD.org Reply-To: wen@netbsd.org X-Mailer: log_accum Message-Id: <20200107133506.3306BFBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1578404106263390 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wen Date: Tue Jan 7 13:35:06 UTC 2020 Modified Files: pkgsrc/devel/p5-Perl-Tidy: Makefile distinfo Log Message: Update to 20191203 Upstream changes: 2019 12 03 - Fixed issue RT#131115: -bli option not working correctly. Closing braces were not indented in some cases due to a glitch introduced in version 20181120. - Fixed issue RT#130394: Allow short nested blocks. Given the following $factorial = sub { reduce { $a * $b } 1 .. 11 }; Previous versions would always break the sub block because it contains another block (the reduce block). The fix keeps short one-line blocks such as this intact. - Implement issue RT#130640: Allow different subroutine keywords. Added a flag --sub-alias-list=s or -sal=s, where s is a string with one or more aliases for 'sub', separated by spaces or commas. For example, perltidy -sal='method fun' will cause the perltidy to treat the words 'method' and 'fun' to be treated the same as if they were 'sub'. - Added flag --space-prototype-paren=i, or -spp=i, to control spacing before the opening paren of a prototype, where i=0, 1, or 2: i=0 no space i=1 follow input [current and default] i=2 always space Previously, perltidy always followed the input. For example, given the following input sub usage(); The result will be: sub usage(); # i=0 [no space] sub usage(); # i=1 [default; follows input] sub usage (); # i=2 [space] - Fixed issue git#16, minor vertical alignment issue. - Fixed issue git#10, minor conflict of -wn and -ce - Improved some vertical alignments involving two lines. To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 pkgsrc/devel/p5-Perl-Tidy/Makefile cvs rdiff -u -r1.22 -r1.23 pkgsrc/devel/p5-Perl-Tidy/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1578404106263390 Content-Disposition: inline Content-Length: 1710 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/p5-Perl-Tidy/Makefile diff -u pkgsrc/devel/p5-Perl-Tidy/Makefile:1.39 pkgsrc/devel/p5-Perl-Tidy/Makefile:1.40 --- pkgsrc/devel/p5-Perl-Tidy/Makefile:1.39 Sun Oct 27 14:04:38 2019 +++ pkgsrc/devel/p5-Perl-Tidy/Makefile Tue Jan 7 13:35:06 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.39 2019/10/27 14:04:38 mef Exp $ +# $NetBSD: Makefile,v 1.40 2020/01/07 13:35:06 wen Exp $ -DISTNAME= Perl-Tidy-20190915 +DISTNAME= Perl-Tidy-20191203 PKGNAME= p5-${DISTNAME} CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Perl/} Index: pkgsrc/devel/p5-Perl-Tidy/distinfo diff -u pkgsrc/devel/p5-Perl-Tidy/distinfo:1.22 pkgsrc/devel/p5-Perl-Tidy/distinfo:1.23 --- pkgsrc/devel/p5-Perl-Tidy/distinfo:1.22 Sun Oct 27 14:04:38 2019 +++ pkgsrc/devel/p5-Perl-Tidy/distinfo Tue Jan 7 13:35:06 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.22 2019/10/27 14:04:38 mef Exp $ +$NetBSD: distinfo,v 1.23 2020/01/07 13:35:06 wen Exp $ -SHA1 (Perl-Tidy-20190915.tar.gz) = a0c31ff78813e42f044a77cb7cdb16e9a14a5d6c -RMD160 (Perl-Tidy-20190915.tar.gz) = cd1fd37f2ac02545a43bf0dd77741f09a39bd003 -SHA512 (Perl-Tidy-20190915.tar.gz) = 553d84bcba8cbe10c0a1e77ef9e31dfdc5957c758efa2bd556ff47a0a354f16eec922842a36c4ccdaed691ffecb6a5dad63dfee2b038f4d2c5882a7e07bad51f -Size (Perl-Tidy-20190915.tar.gz) = 599290 bytes +SHA1 (Perl-Tidy-20191203.tar.gz) = 2dfa7a91edd9b5d955a235d95bfdaa2f4c1b6410 +RMD160 (Perl-Tidy-20191203.tar.gz) = d723625524625ee878f585e803d1a20da5802699 +SHA512 (Perl-Tidy-20191203.tar.gz) = 6543cdc74fadc3cfc7b23ed025783c323f3251ed57b87d770c758b3161d2b7671941e2526c55dafb402ef8498b656967374f13843f797207fb4d0551e6940824 +Size (Perl-Tidy-20191203.tar.gz) = 607789 bytes --_----------=_1578404106263390--