From owner-svn-ports-head@freebsd.org Wed Jun 24 16:05:53 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2DC7A916745; Wed, 24 Jun 2015 16:05:53 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1BA581072; Wed, 24 Jun 2015 16:05:53 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5OG5rIn029627; Wed, 24 Jun 2015 16:05:53 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5OG5mtT029600; Wed, 24 Jun 2015 16:05:48 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201506241605.t5OG5mtT029600@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Wed, 24 Jun 2015 16:05:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390491 - in head/devel: p5-Number-Tolerant p5-Test-Benchmark p5-Test-BinaryData p5-Test-Bits p5-Test-CleanNamespaces p5-Test-Deep p5-Test-Filename p5-Test-JSON p5-Test-NoWarnings p5-Te... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 16:05:53 -0000 Author: adamw Date: Wed Jun 24 16:05:47 2015 New Revision: 390491 URL: https://svnweb.freebsd.org/changeset/ports/390491 Log: Switch p5-Test-Tester dependencies to p5-Test-Simple, but only on perl < 5.22. Bump PORTREVISION where necessary. Modified: head/devel/p5-Number-Tolerant/Makefile head/devel/p5-Test-Benchmark/Makefile head/devel/p5-Test-BinaryData/Makefile head/devel/p5-Test-Bits/Makefile head/devel/p5-Test-CleanNamespaces/Makefile head/devel/p5-Test-Deep/Makefile head/devel/p5-Test-Filename/Makefile head/devel/p5-Test-JSON/Makefile head/devel/p5-Test-NoWarnings/Makefile head/devel/p5-Test-Output/Makefile head/devel/p5-Test-Spelling/Makefile head/devel/p5-Test-Timer/Makefile head/devel/p5-Test-Trap/Makefile head/devel/p5-Test-Version/Makefile head/devel/p5-Test-WWW-Declare/Makefile head/devel/p5-Test-Warnings/Makefile head/devel/p5-Type-Tiny/Makefile Modified: head/devel/p5-Number-Tolerant/Makefile ============================================================================== --- head/devel/p5-Number-Tolerant/Makefile Wed Jun 24 15:57:08 2015 (r390490) +++ head/devel/p5-Number-Tolerant/Makefile Wed Jun 24 16:05:47 2015 (r390491) @@ -16,9 +16,14 @@ LICENSE_COMB= dual BUILD_DEPENDS= p5-Sub-Exporter>=0.950:${PORTSDIR}/devel/p5-Sub-Exporter RUN_DEPENDS:= ${BUILD_DEPENDS} -TEST_DEPENDS= p5-Test-Tester>=0:${PORTSDIR}/devel/p5-Test-Tester USES= perl5 USE_PERL5= configure -.include +.include + +.if ${PERL_LEVEL} < 502200 +TEST_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Modified: head/devel/p5-Test-Benchmark/Makefile ============================================================================== --- head/devel/p5-Test-Benchmark/Makefile Wed Jun 24 15:57:08 2015 (r390490) +++ head/devel/p5-Test-Benchmark/Makefile Wed Jun 24 16:05:47 2015 (r390491) @@ -13,10 +13,15 @@ COMMENT= Make sure something really is f LICENSE= LGPL21 -TEST_DEPENDS= p5-Test-Tester>=0:${PORTSDIR}/devel/p5-Test-Tester \ - p5-Test-NoWarnings>=0:${PORTSDIR}/devel/p5-Test-NoWarnings +TEST_DEPENDS= p5-Test-NoWarnings>=0:${PORTSDIR}/devel/p5-Test-NoWarnings USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502200 +TEST_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Modified: head/devel/p5-Test-BinaryData/Makefile ============================================================================== --- head/devel/p5-Test-BinaryData/Makefile Wed Jun 24 15:57:08 2015 (r390490) +++ head/devel/p5-Test-BinaryData/Makefile Wed Jun 24 16:05:47 2015 (r390491) @@ -14,9 +14,13 @@ COMMENT= Compare two things, give hex du LICENSE= ART10 GPLv1 LICENSE_COMB= dual -TEST_DEPENDS= p5-Test-Tester>=0.10.7:${PORTSDIR}/devel/p5-Test-Tester - USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502200 +TEST_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Modified: head/devel/p5-Test-Bits/Makefile ============================================================================== --- head/devel/p5-Test-Bits/Makefile Wed Jun 24 15:57:08 2015 (r390490) +++ head/devel/p5-Test-Bits/Makefile Wed Jun 24 16:05:47 2015 (r390491) @@ -15,10 +15,15 @@ LICENSE= ART20 BUILD_DEPENDS= p5-List-AllUtils>=0:${PORTSDIR}/devel/p5-List-AllUtils RUN_DEPENDS:= ${BUILD_DEPENDS} -TEST_DEPENDS= p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal \ - p5-Test-Tester>=0:${PORTSDIR}/devel/p5-Test-Tester +TEST_DEPENDS= p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502200 +TEST_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Modified: head/devel/p5-Test-CleanNamespaces/Makefile ============================================================================== --- head/devel/p5-Test-CleanNamespaces/Makefile Wed Jun 24 15:57:08 2015 (r390490) +++ head/devel/p5-Test-CleanNamespaces/Makefile Wed Jun 24 16:05:47 2015 (r390491) @@ -23,7 +23,6 @@ BUILD_DEPENDS= p5-File-Find-Rule>0:${POR RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>0:${PORTSDIR}/devel/p5-Test-Deep \ p5-Test-Requires>0:${PORTSDIR}/devel/p5-Test-Requires \ - p5-Test-Tester>0:${PORTSDIR}/devel/p5-Test-Tester \ p5-Test-Warnings>=0.009:${PORTSDIR}/devel/p5-Test-Warnings USES= perl5 @@ -32,4 +31,10 @@ USE_PERL5= configure PLIST_FILES= %%SITE_PERL%%/Test/CleanNamespaces.pm \ %%PERL5_MAN3%%/Test::CleanNamespaces.3.gz -.include +.include + +.if ${PERL_LEVEL} < 502200 +TEST_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Modified: head/devel/p5-Test-Deep/Makefile ============================================================================== --- head/devel/p5-Test-Deep/Makefile Wed Jun 24 15:57:08 2015 (r390490) +++ head/devel/p5-Test-Deep/Makefile Wed Jun 24 16:05:47 2015 (r390491) @@ -3,6 +3,7 @@ PORTNAME= Test-Deep PORTVERSION= 0.117 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -27,8 +28,8 @@ post-patch: .include .if ${PERL_LEVEL} < 502200 -BUILD_DEPENDS+= p5-Test-Tester>=0.10.7:${PORTSDIR}/devel/p5-Test-Tester -RUN_DEPENDS+= p5-Test-Tester>=0.10.7:${PORTSDIR}/devel/p5-Test-Tester +BUILD_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +RUN_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple .endif .include Modified: head/devel/p5-Test-Filename/Makefile ============================================================================== --- head/devel/p5-Test-Filename/Makefile Wed Jun 24 15:57:08 2015 (r390490) +++ head/devel/p5-Test-Filename/Makefile Wed Jun 24 16:05:47 2015 (r390491) @@ -13,10 +13,14 @@ COMMENT= Perl extension for portable fil RUN_DEPENDS= \ p5-Path-Tiny>0:${PORTSDIR}/devel/p5-Path-Tiny BUILD_DEPENDS= ${RUN_DEPENDS} -TEST_DEPENDS= \ - p5-Test-Tester>0:${PORTSDIR}/devel/p5-Test-Tester USES= perl5 USE_PERL5= configure -.include +.include + +.if ${PERL_LEVEL} < 502200 +TEST_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Modified: head/devel/p5-Test-JSON/Makefile ============================================================================== --- head/devel/p5-Test-JSON/Makefile Wed Jun 24 15:57:08 2015 (r390490) +++ head/devel/p5-Test-JSON/Makefile Wed Jun 24 16:05:47 2015 (r390491) @@ -3,7 +3,7 @@ PORTNAME= Test-JSON PORTVERSION= 0.11 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,11 +13,17 @@ MAINTAINER= lth@FreeBSD.org COMMENT= Test JSON data RUN_DEPENDS= p5-Test-Differences>=0.47:${PORTSDIR}/devel/p5-Test-Differences \ - p5-Test-Tester>=0.10.7:${PORTSDIR}/devel/p5-Test-Tester \ p5-JSON-Any>=1.20:${PORTSDIR}/converters/p5-JSON-Any BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure -.include +.include + +.if ${PERL_LEVEL} < 502200 +BUILD_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +RUN_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Modified: head/devel/p5-Test-NoWarnings/Makefile ============================================================================== --- head/devel/p5-Test-NoWarnings/Makefile Wed Jun 24 15:57:08 2015 (r390490) +++ head/devel/p5-Test-NoWarnings/Makefile Wed Jun 24 16:05:47 2015 (r390491) @@ -13,8 +13,6 @@ COMMENT= Hide and store warnings while r LICENSE= LGPL21 -TEST_DEPENDS= p5-Test-Tester>=0.10.7:${PORTSDIR}/devel/p5-Test-Tester - USES= perl5 USE_PERL5= configure @@ -28,4 +26,10 @@ BUILD_DEPENDS+= p5-Devel-StackTrace>=0:$ RUN_DEPENDS+= p5-Devel-StackTrace>=0:${PORTSDIR}/devel/p5-Devel-StackTrace .endif -.include +.include + +.if ${PERL_LEVEL} < 502200 +TEST_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Modified: head/devel/p5-Test-Output/Makefile ============================================================================== --- head/devel/p5-Test-Output/Makefile Wed Jun 24 15:57:08 2015 (r390490) +++ head/devel/p5-Test-Output/Makefile Wed Jun 24 16:05:47 2015 (r390491) @@ -17,9 +17,14 @@ LICENSE_COMB= dual BUILD_DEPENDS= p5-Capture-Tiny>=0.17:${PORTSDIR}/devel/p5-Capture-Tiny \ p5-Sub-Exporter>=0:${PORTSDIR}/devel/p5-Sub-Exporter RUN_DEPENDS:= ${BUILD_DEPENDS} -TEST_DEPENDS= p5-Test-Tester>=0.10.7:${PORTSDIR}/devel/p5-Test-Tester USES= perl5 USE_PERL5= configure -.include +.include + +.if ${PERL_LEVEL} < 502200 +TEST_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Modified: head/devel/p5-Test-Spelling/Makefile ============================================================================== --- head/devel/p5-Test-Spelling/Makefile Wed Jun 24 15:57:08 2015 (r390490) +++ head/devel/p5-Test-Spelling/Makefile Wed Jun 24 16:05:47 2015 (r390491) @@ -18,9 +18,14 @@ BUILD_DEPENDS= p5-Pod-Spell>=0:${PORTSDI p5-IPC-Run3>=0:${PORTSDIR}/devel/p5-IPC-Run3 RUN_DEPENDS= p5-Pod-Spell>=0:${PORTSDIR}/textproc/p5-Pod-Spell \ p5-IPC-Run3>=0:${PORTSDIR}/devel/p5-IPC-Run3 -TEST_DEPENDS= p5-Test-Tester>=0:${PORTSDIR}/devel/p5-Test-Tester USES= perl5 USE_PERL5= configure -.include +.include + +.if ${PERL_LEVEL} < 502200 +TEST_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Modified: head/devel/p5-Test-Timer/Makefile ============================================================================== --- head/devel/p5-Test-Timer/Makefile Wed Jun 24 15:57:08 2015 (r390490) +++ head/devel/p5-Test-Timer/Makefile Wed Jun 24 16:05:47 2015 (r390491) @@ -12,11 +12,16 @@ MAINTAINER= swills@FreeBSD.org COMMENT= Perl test module to test/assert response times BUILD_DEPENDS= p5-Error>=0:${PORTSDIR}/lang/p5-Error -TEST_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception \ - p5-Test-Tester>=0:${PORTSDIR}/devel/p5-Test-Tester +TEST_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception RUN_DEPENDS= p5-Error>=0:${PORTSDIR}/lang/p5-Error USES= perl5 USE_PERL5= configure -.include +.include + +.if ${PERL_LEVEL} < 502200 +TEST_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Modified: head/devel/p5-Test-Trap/Makefile ============================================================================== --- head/devel/p5-Test-Trap/Makefile Wed Jun 24 15:57:08 2015 (r390490) +++ head/devel/p5-Test-Trap/Makefile Wed Jun 24 16:05:47 2015 (r390491) @@ -16,10 +16,15 @@ LICENSE_COMB= dual BUILD_DEPENDS= p5-Data-Dump>=0:${PORTSDIR}/devel/p5-Data-Dump RUN_DEPENDS:= ${BUILD_DEPENDS} -TEST_DEPENDS= p5-Test-Refcount>=0:${PORTSDIR}/devel/p5-Test-Refcount \ - p5-Test-Tester>=0.10.7:${PORTSDIR}/devel/p5-Test-Tester +TEST_DEPENDS= p5-Test-Refcount>=0:${PORTSDIR}/devel/p5-Test-Refcount USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502200 +TEST_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Modified: head/devel/p5-Test-Version/Makefile ============================================================================== --- head/devel/p5-Test-Version/Makefile Wed Jun 24 15:57:08 2015 (r390490) +++ head/devel/p5-Test-Version/Makefile Wed Jun 24 16:05:47 2015 (r390491) @@ -15,10 +15,15 @@ LICENSE= ART20 BUILD_DEPENDS= p5-File-Find-Rule-Perl>=0:${PORTSDIR}/devel/p5-File-Find-Rule-Perl RUN_DEPENDS:= ${BUILD_DEPENDS} -TEST_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception \ - p5-Test-Tester>=0:${PORTSDIR}/devel/p5-Test-Tester +TEST_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502200 +TEST_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Modified: head/devel/p5-Test-WWW-Declare/Makefile ============================================================================== --- head/devel/p5-Test-WWW-Declare/Makefile Wed Jun 24 15:57:08 2015 (r390490) +++ head/devel/p5-Test-WWW-Declare/Makefile Wed Jun 24 16:05:47 2015 (r390491) @@ -13,9 +13,14 @@ COMMENT= Declarative testing for your we BUILD_DEPENDS= p5-Test-WWW-Mechanize>=0:${PORTSDIR}/devel/p5-Test-WWW-Mechanize RUN_DEPENDS:= ${BUILD_DEPENDS} -TEST_DEPENDS= p5-Test-Tester>=0:${PORTSDIR}/devel/p5-Test-Tester USES= perl5 USE_PERL5= configure -.include +.include + +.if ${PERL_LEVEL} < 502200 +TEST_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Modified: head/devel/p5-Test-Warnings/Makefile ============================================================================== --- head/devel/p5-Test-Warnings/Makefile Wed Jun 24 15:57:08 2015 (r390490) +++ head/devel/p5-Test-Warnings/Makefile Wed Jun 24 16:05:47 2015 (r390491) @@ -15,10 +15,15 @@ LICENSE_COMB= dual TEST_DEPENDS= p5-CPAN-Meta-Check>=0.007:${PORTSDIR}/devel/p5-CPAN-Meta-Check \ p5-Capture-Tiny>=0:${PORTSDIR}/devel/p5-Capture-Tiny \ - p5-Test-Kwalitee>=1.12:${PORTSDIR}/devel/p5-Test-Kwalitee \ - p5-Test-Tester>=0.108:${PORTSDIR}/devel/p5-Test-Tester + p5-Test-Kwalitee>=1.12:${PORTSDIR}/devel/p5-Test-Kwalitee USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502200 +TEST_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Modified: head/devel/p5-Type-Tiny/Makefile ============================================================================== --- head/devel/p5-Type-Tiny/Makefile Wed Jun 24 15:57:08 2015 (r390490) +++ head/devel/p5-Type-Tiny/Makefile Wed Jun 24 16:05:47 2015 (r390491) @@ -31,7 +31,6 @@ TEST_DEPENDS= p5-Class-InsideOut>=0:${PO p5-Sub-Exporter-Lexical>=0:${PORTSDIR}/devel/p5-Sub-Exporter-Lexical \ p5-Test-LeakTrace>=0:${PORTSDIR}/devel/p5-Test-LeakTrace \ p5-Test-Requires>=0:${PORTSDIR}/devel/p5-Test-Requires \ - p5-Test-Tester>=0.10.9:${PORTSDIR}/devel/p5-Test-Tester \ p5-Test-Warnings>=0:${PORTSDIR}/devel/p5-Test-Warnings \ p5-Validation-Class>=0:${PORTSDIR}/devel/p5-Validation-Class \ p5-match-simple>=0:${PORTSDIR}/devel/p5-match-simple @@ -48,4 +47,10 @@ USES= perl5 XS_BUILD_DEPENDS= p5-Type-Tiny-XS>=0.010:${PORTSDIR}/devel/p5-Type-Tiny-XS XS_RUN_DEPENDS= p5-Type-Tiny-XS>=0.010:${PORTSDIR}/devel/p5-Type-Tiny-XS -.include +.include + +.if ${PERL_LEVEL} < 502200 +TEST_DEPENDS+= p5-Test-Simple>=1.001.014:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include