Date: Thu, 26 Jan 2012 23:07:25 +0800 (CST) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: FreeBSD-gnats-submit@FreeBSD.org Cc: hartzell@alerce.com Subject: ports/164512: [PATCH] devel/p5-App-Cmd: update to 0.314 Message-ID: <20120126150725.A9451338C@sunpoet.net> Resent-Message-ID: <201201261510.q0QFAA3s052683@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 164512 >Category: ports >Synopsis: [PATCH] devel/p5-App-Cmd: update to 0.314 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Jan 26 15:10:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 9.0-PRERELEASE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 9.0-PRERELEASE FreeBSD 9.0-PRERELEASE #0: Sat Dec 24 06:18:22 CST 2011 >Description: - Update to 0.314 - Sort *_DEPENDS - Add TEST_DEPENDS Changes: http://search.cpan.org/dist/App-Cmd/Changes Port maintainer (hartzell@alerce.com) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-App-Cmd-0.314.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-App-Cmd/Makefile,v retrieving revision 1.6 diff -u -u -r1.6 Makefile --- Makefile 22 Nov 2010 20:06:01 -0000 1.6 +++ Makefile 26 Jan 2012 15:06:52 -0000 @@ -6,7 +6,7 @@ # PORTNAME= App-Cmd -PORTVERSION= 0.309 +PORTVERSION= 0.314 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,14 +14,18 @@ MAINTAINER= hartzell@alerce.com COMMENT= App::Cmd - Write command line apps with less suffering -BUILD_DEPENDS= p5-Getopt-Long-Descriptive>=0:${PORTSDIR}/devel/p5-Getopt-Long-Descriptive \ +BUILD_DEPENDS= p5-Capture-Tiny>=0.13:${PORTSDIR}/devel/p5-Capture-Tiny \ + p5-Class-Load>=0.06:${PORTSDIR}/devel/p5-Class-Load \ + p5-Getopt-Long-Descriptive>=0.084:${PORTSDIR}/devel/p5-Getopt-Long-Descriptive \ p5-IO-TieCombine>=0:${PORTSDIR}/devel/p5-IO-TieCombine \ p5-Module-Pluggable>=0:${PORTSDIR}/devel/p5-Module-Pluggable \ + p5-String-RewritePrefix>=0:${PORTSDIR}/textproc/p5-String-RewritePrefix \ p5-Sub-Exporter>=0:${PORTSDIR}/devel/p5-Sub-Exporter \ - p5-Sub-Install>=0:${PORTSDIR}/devel/p5-Sub-Install \ - p5-String-RewritePrefix>=0:${PORTSDIR}/textproc/p5-String-RewritePrefix + p5-Sub-Install>=0:${PORTSDIR}/devel/p5-Sub-Install RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal + PERL_CONFIGURE= yes MAN3= App::Cmd.3 \ @@ -35,6 +39,7 @@ App::Cmd::Subdispatch.3 \ App::Cmd::Subdispatch::DashedStyle.3 \ App::Cmd::Tester.3 \ + App::Cmd::Tester::CaptureExternal.3 \ App::Cmd::Tutorial.3 \ .include <bsd.port.mk> Index: distinfo =================================================================== RCS file: /home/ncvs/ports/devel/p5-App-Cmd/distinfo,v retrieving revision 1.5 diff -u -u -r1.5 distinfo --- distinfo 22 Nov 2010 20:06:01 -0000 1.5 +++ distinfo 26 Jan 2012 15:06:52 -0000 @@ -1,2 +1,2 @@ -SHA256 (App-Cmd-0.309.tar.gz) = 7489143ac2dca3a6fe40b07bf4826d02a539cc86e9f31af38518395598c1677f -SIZE (App-Cmd-0.309.tar.gz) = 29641 +SHA256 (App-Cmd-0.314.tar.gz) = 29c52eb325ec86a0c4e7f9c211c9503eb00e675160b969e4faa7160453ac5576 +SIZE (App-Cmd-0.314.tar.gz) = 32204 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/devel/p5-App-Cmd/pkg-plist,v retrieving revision 1.2 diff -u -u -r1.2 pkg-plist --- pkg-plist 22 Nov 2010 20:06:01 -0000 1.2 +++ pkg-plist 26 Jan 2012 15:06:52 -0000 @@ -9,11 +9,13 @@ %%SITE_PERL%%/App/Cmd/Subdispatch.pm %%SITE_PERL%%/App/Cmd/Subdispatch/DashedStyle.pm %%SITE_PERL%%/App/Cmd/Tester.pm +%%SITE_PERL%%/App/Cmd/Tester/CaptureExternal.pm %%SITE_PERL%%/App/Cmd/Tutorial.pod %%SITE_PERL%%/%%PERL_ARCH%%/auto/App/Cmd/.packlist -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/App/Cmd +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/App/Cmd @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/App -@dirrmtry %%SITE_PERL%%/App/Cmd/Subdispatch -@dirrmtry %%SITE_PERL%%/App/Cmd/Command -@dirrmtry %%SITE_PERL%%/App/Cmd +@dirrm %%SITE_PERL%%/App/Cmd/Tester +@dirrm %%SITE_PERL%%/App/Cmd/Subdispatch +@dirrm %%SITE_PERL%%/App/Cmd/Command +@dirrm %%SITE_PERL%%/App/Cmd @dirrmtry %%SITE_PERL%%/App --- p5-App-Cmd-0.314.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20120126150725.A9451338C>