Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 3B16D7A214 for ; Tue, 13 Jun 2017 12:19:06 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id DF7A284DE8; Tue, 13 Jun 2017 12:19:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6FC9F84D78 for ; Tue, 13 Jun 2017 12:19:05 +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 sqjyy-ILBbZh for ; Tue, 13 Jun 2017 12:19:04 +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 D344284C6C for ; Tue, 13 Jun 2017 12:19:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C9786FAB3; Tue, 13 Jun 2017 12:19:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_149735634480320" MIME-Version: 1.0 Date: Tue, 13 Jun 2017 12:19:04 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/devel/p5-PPI To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20170613121904.C9786FAB3@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. --_----------=_149735634480320 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Tue Jun 13 12:19:04 UTC 2017 Modified Files: pkgsrc/devel/p5-PPI: Makefile distinfo Log Message: Updated devel/p5-PPI to 1.224 ----------------------------- 1.224 Sun 14 May 2017 Summary: - updating an out-of-date meta.yml caused by Module::Install 1.222 Sun 14 May 2017 Summary: - unit tests for many parts, both passing and TODO - many documentation fixes - add ->version method to PPI::Statement::Package (WOLFSAGE) - remove unused PPI::Document->new timeout feature - do not expect '.' in @INC (PLICEASE) - many parsing fixes - various fixes to the behaviors of methods - removal of problematic dependencies Details: - Remove undocumented, non-working 'timeout' attribute to Document->new, including HAVE_ALARM and PPI::Exception::ParserTimeout. (GitHub #140) (MOREGAN) - first cut of a travis configuration - do hex number matching with [[:xdigit:]] - some readability improvements on the code of HereDoc.pm - recognize heredoc even if they have no newline at the end (AUBERTG) - parse left side of => as bareword even if it looks like a keyword or op (MOREGAN) - remove source code escapes in the output of QuoteLike::Words->literal (MOREGAN) - removal of Test::NoWarnings - less uses of List::MoreUtils in favor of List::Util - expand $'x to $::main::x in Symbol->canonical as with $::x (MOREGAN) - fixed parsing of large numbers in Number::Exp on Solaris 80 (JMASLAK) - make remove_child actually return undef on failure to find child to remove - higher accuracy when deciding whether certain characters are operators or variable type casts (*&% etc.) (MOREGAN) - parse x as the first element of code as a word, not an operator (MOREGAN) - recognize the implied end of a package statement that includes a block (MOREGAN) - parse package names that look like operators as strings, not ops (MOREGAN) - parse package names that look like v10 as strings, not versions (MOREGAN) - parse things like v49use as a single bareword, not v-string + keyword (MOREGAN) - parse x64 as a word, not x operator + number (MOREGAN) - parse 1.eq 1 as float + op, not concatenation - parse subroutine attributes correctly (MOREGAN) To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/devel/p5-PPI/Makefile cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/p5-PPI/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_149735634480320 Content-Disposition: inline Content-Length: 1852 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/p5-PPI/Makefile diff -u pkgsrc/devel/p5-PPI/Makefile:1.25 pkgsrc/devel/p5-PPI/Makefile:1.26 --- pkgsrc/devel/p5-PPI/Makefile:1.25 Mon Jun 12 13:27:36 2017 +++ pkgsrc/devel/p5-PPI/Makefile Tue Jun 13 12:19:04 2017 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.25 2017/06/12 13:27:36 maya Exp $ +# $NetBSD: Makefile,v 1.26 2017/06/13 12:19:04 mef Exp $ -DISTNAME= PPI-1.220 +DISTNAME= PPI-1.224 PKGNAME= p5-${DISTNAME} -PKGREVISION= 3 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=PPI/} @@ -30,7 +29,6 @@ BUILD_DEPENDS+= p5-Test-Object>=0.07:../ BUILD_DEPENDS+= p5-Test-SubCalls>=1.07:../../devel/p5-Test-SubCalls USE_LANGUAGES= # empty -MAKE_ENV+= PERL_USE_UNSAFE_INC=1 PERL5_PACKLIST= auto/PPI/.packlist PERL5_MODULE_TYPE= Module::Install::Bundled Index: pkgsrc/devel/p5-PPI/distinfo diff -u pkgsrc/devel/p5-PPI/distinfo:1.11 pkgsrc/devel/p5-PPI/distinfo:1.12 --- pkgsrc/devel/p5-PPI/distinfo:1.11 Tue Nov 3 03:28:37 2015 +++ pkgsrc/devel/p5-PPI/distinfo Tue Jun 13 12:19:04 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.11 2015/11/03 03:28:37 agc Exp $ +$NetBSD: distinfo,v 1.12 2017/06/13 12:19:04 mef Exp $ -SHA1 (PPI-1.220.tar.gz) = 930bced7010eaa0f8cc67741e9d32c2005e35f90 -RMD160 (PPI-1.220.tar.gz) = a0d7d920dfcee5ed0b9bb875c286a597693d7407 -SHA512 (PPI-1.220.tar.gz) = 03ff865424a11cb351211dc7d57b6477848e8f354de74dc5bae214614438549f1dba6818842f6312f88fa631514abad69b0023046d56c8e8584d0b634c202694 -Size (PPI-1.220.tar.gz) = 245416 bytes +SHA1 (PPI-1.224.tar.gz) = dd3f7b8ea4ad1611ba61f97f9da00c2bf2520147 +RMD160 (PPI-1.224.tar.gz) = aafeff6a5539bd41c27850127e8dc1cf25d35382 +SHA512 (PPI-1.224.tar.gz) = 7c5f4a01b3d4a1e7e2f68d7e5c81368387fbe9a4cd2f20afc494706f742c9ba0b293747b692fb77af9a1457e077687c7d5217bf09137ab71bb50ba52da24431c +Size (PPI-1.224.tar.gz) = 257197 bytes --_----------=_149735634480320--