Received: by mail.netbsd.org (Postfix, from userid 605) id B21D284D9F; Sat, 17 Jun 2017 13:04:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 42C9084D88 for ; Sat, 17 Jun 2017 13:04:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id PJ8aMOgpgt7S for ; Sat, 17 Jun 2017 13:04:16 +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 AC43C84D78 for ; Sat, 17 Jun 2017 13:04:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A2ABDFAE8; Sat, 17 Jun 2017 13:04:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1497704656208180" MIME-Version: 1.0 Date: Sat, 17 Jun 2017 13:04:16 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/devel/p5-Perl-Critic To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20170617130416.A2ABDFAE8@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. --_----------=_1497704656208180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Sat Jun 17 13:04:16 UTC 2017 Modified Files: pkgsrc/devel/p5-Perl-Critic: Makefile distinfo Log Message: Updated devel/p5-Perl-Critic to 1.128 ------------------------------------- 1.128 Sat Jun 10 22:31:28 CDT 2017 Official release. No changes since 1.127_02. 1.127_02 Tue May 23 18:31:59 CDT 2017 Developer release leading up to 1.128. [Bug Fixes] * PPI misparsing a module caused an incorrect "Must end with a recognizable true value." This is fixed by upgrading to PPI 1.224. (GH #696, GH #607) * A test would fail under the upcoming Perl 5.26 that omits the current directory from @INC. Thanks, Kent Fredric. * Fixed an invalid test in the RequireBarewordsIncludes test. Thanks, Christian Walde. (GH #751) * If an element contained blank lines then the source "%r" displayed for a violation was wrong. Thanks, Sawyer X. (GH #702, #734) [Dependencies] Perl::Critic now requires PPI 1.224. PPI is the underlying Perl parser on which Perl::Critic is built, and 1.224 introduces many parsing fixes such as: * Fixes for dot-in-@INC. * Parse left side of => as bareword even if it looks like a keyword or op. * $::x now works. * Higher accuracy when deciding whether certain characters are operators or variable type casts (*&% etc.). * Subroutine attributes parsed correctly. [Performance Enhancements] * Sped up BuiltinFunctions::ProhibitUselessTopic ~7%. Thanks, James Raspass. (GH #656) [Documentation] * Fixed incorrect explanation of capture variables in ProhibitCaptureWithoutTest. Thanks, Felipe Gasper. * Fixed incorrect links. Thanks, Glenn Fowler. * Fixed incorrect example for returning a sorted list. Thanks, @daviding58. * Fixed invalid POD. Thanks, Jakub Wilk. (GH #735) * Updated docs on ProhibitYadaOperator. Thanks, Stuart A Johnston. (GH #662) * Removed all the references to the old mailing list and code repository at tigris.org. (GH #757) 1.127_01 Sun May 21 21:57:16 CDT 2017 Removed from CPAN because it did not get indexed correctly. To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 pkgsrc/devel/p5-Perl-Critic/Makefile cvs rdiff -u -r1.20 -r1.21 pkgsrc/devel/p5-Perl-Critic/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1497704656208180 Content-Disposition: inline Content-Length: 2251 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/p5-Perl-Critic/Makefile diff -u pkgsrc/devel/p5-Perl-Critic/Makefile:1.32 pkgsrc/devel/p5-Perl-Critic/Makefile:1.33 --- pkgsrc/devel/p5-Perl-Critic/Makefile:1.32 Mon Jun 5 14:23:28 2017 +++ pkgsrc/devel/p5-Perl-Critic/Makefile Sat Jun 17 13:04:16 2017 @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.32 2017/06/05 14:23:28 ryoon Exp $ +# $NetBSD: Makefile,v 1.33 2017/06/17 13:04:16 mef Exp $ # -DISTNAME= Perl-Critic-1.126 +DISTNAME= Perl-Critic-1.128 PKGNAME= p5-${DISTNAME} -PKGREVISION= 2 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Perl/} @@ -22,7 +21,7 @@ DEPENDS+= p5-File-HomeDir-[0-9]*:../../d DEPENDS+= p5-File-Which-[0-9]*:../../devel/p5-File-Which DEPENDS+= p5-IO-String-[0-9]*:../../devel/p5-IO-String DEPENDS+= p5-List-MoreUtils>=0.19:../../devel/p5-List-MoreUtils -DEPENDS+= p5-PPI>=1.220:../../devel/p5-PPI +DEPENDS+= p5-PPI>=1.224:../../devel/p5-PPI DEPENDS+= p5-PPIx-Regexp>=0.022:../../devel/p5-PPIx-Regexp DEPENDS+= p5-PPIx-Utilities>=1.001:../../devel/p5-PPIx-Utilities DEPENDS+= p5-Perl-Tidy-[0-9]*:../../devel/p5-Perl-Tidy Index: pkgsrc/devel/p5-Perl-Critic/distinfo diff -u pkgsrc/devel/p5-Perl-Critic/distinfo:1.20 pkgsrc/devel/p5-Perl-Critic/distinfo:1.21 --- pkgsrc/devel/p5-Perl-Critic/distinfo:1.20 Tue Nov 3 03:28:40 2015 +++ pkgsrc/devel/p5-Perl-Critic/distinfo Sat Jun 17 13:04:16 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.20 2015/11/03 03:28:40 agc Exp $ +$NetBSD: distinfo,v 1.21 2017/06/17 13:04:16 mef Exp $ -SHA1 (Perl-Critic-1.126.tar.gz) = 4b7858ae25fd5aebedd7f421494c1cb112270571 -RMD160 (Perl-Critic-1.126.tar.gz) = 48b0dbc3b38d7593fbb3360c22c0237afe814efd -SHA512 (Perl-Critic-1.126.tar.gz) = 9427447893eabc83cafd5126d015aa29d9694a83fdd01dd45f5156af9c672a955e0ec6c0ebdddc2ab3ed2d22bdbf14cc016ce474c24fd18d8046bc2889ca33d2 -Size (Perl-Critic-1.126.tar.gz) = 646552 bytes +SHA1 (Perl-Critic-1.128.tar.gz) = 34487d5acab5802d59c4a3a7edae7a77c3851429 +RMD160 (Perl-Critic-1.128.tar.gz) = 27779a6ec039482341862b2835f56b39013e388e +SHA512 (Perl-Critic-1.128.tar.gz) = 6243817911f237fb6a54aaa747accf1d70c7374346c43862a32692e66e318233d1c4c2f6af1fb8f735c1ed9ac9a03cc84c9ad7b051e98fa59b28b243cc77579e +Size (Perl-Critic-1.128.tar.gz) = 645977 bytes --_----------=_1497704656208180--