- Update to 0.25 Some missing deps including the one mentioned were not included in the original commit to the update from PR ports/154619. This is an updated patch to the one suggested by brooks@ that includes the missing changes. Port maintainer (perl@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99
Responsible Changed From-To: freebsd-ports-bugs->perl Over to maintainer (via the GNATS Auto Assign Tool)
Hello. few notes 1. I don't think we really need Dist::CheckConflicts since it useless and don't affect on build and run processes. 2. It don't required Scalar::List::Utils as I can see (probably you mistyped). Scalar::Util part of coremodules since perl 5.7 So, if you make follow-up with changes to TEST_DEPENDS I or anyone else will commit changes. Thanks!
>Submitter-Id: current-users >Originator: milki >Organization: UC Berkeley - RSSP-IT >Confidential: no >Synopsis: Re: ports/154808: [PATCH] devel/p5-Package-Stash: update to 0.25_2 >Severity: non-critical >Priority: low >Category: ports >Class: update >Release: FreeBSD 7.3-RELEASE-p4 amd64 >Environment: System: FreeBSD dev-www7.rescomp.berkeley.edu 7.3-RELEASE-p4 FreeBSD 7.3-RELEASE-p4 #15: Tue Nov 30 11:51:59 PST 2010 >Description: - Update to 0.25_2 I've changed the patch with Andrej's suggestions. This patch should work against the recent 0.25_1 changes. Port maintainer (perl@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-Package-Stash-0.25_2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-Package-Stash/Makefile /tmp/milki/ports/p5-Package-Stash/Makefile --- /usr/ports/devel/p5-Package-Stash/Makefile 2011-02-15 12:38:25.000000000 -0800 +++ /tmp/milki/ports/p5-Package-Stash/Makefile 2011-02-15 12:41:14.000000000 -0800 @@ -7,10 +7,10 @@ PORTNAME= Package-Stash PORTVERSION= 0.25 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= ../by-authors/id/D/DO/DOY +MASTER_SITE_SUBDIR= ../authors/id/D/DO/DOY PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org @@ -19,8 +19,8 @@ BUILD_DEPENDS= p5-Package-Stash-XS>=0.21:${PORTSDIR}/devel/p5-Package-Stash-XS RUN_DEPENDS= p5-Package-Stash-XS>=0.21:${PORTSDIR}/devel/p5-Package-Stash-XS \ p5-Package-DeprecationManager>=0.10:${PORTSDIR}/devel/p5-Package-DeprecationManager + TEST_DEPENDS= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple \ - p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception \ p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal \ p5-Test-Requires>=0:${PORTSDIR}/devel/p5-Test-Requires diff -ruN --exclude=CVS /usr/ports/devel/p5-Package-Stash/pkg-plist /tmp/milki/ports/p5-Package-Stash/pkg-plist --- /usr/ports/devel/p5-Package-Stash/pkg-plist 2011-02-11 22:23:47.000000000 -0800 +++ /tmp/milki/ports/p5-Package-Stash/pkg-plist 2011-02-15 12:15:20.000000000 -0800 @@ -5,5 +5,5 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Package/Stash/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Package/Stash @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Package -@dirrmtry %%SITE_PERL%%/Package/Stash +@dirrm %%SITE_PERL%%/Package/Stash @dirrmtry %%SITE_PERL%%/Package --- p5-Package-Stash-0.25_2.patch ends here ---
az 2011-02-15 20:51:37 UTC FreeBSD ports repository Modified files: devel/p5-Package-Stash Makefile Log: Remove p5-Test-Exception from TEST_DEPENDS. PR: ports/154808 Submitted by: milki@rescomp.berkeley.edu Revision Changes Path 1.10 +1 -1 ports/devel/p5-Package-Stash/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Since TEST_DEPENDS just variable and don't affect package build, don't bump PORTREVISION.Also I think @dirrm almost same as @dirmrmtry by functional. Thanks.