From owner-svn-ports-head@freebsd.org Sun Nov 13 17:36:38 2016 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 4FADCC3F1C2; Sun, 13 Nov 2016 17:36:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 12D821B84; Sun, 13 Nov 2016 17:36:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uADHabS9014423; Sun, 13 Nov 2016 17:36:37 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uADHaaaD014411; Sun, 13 Nov 2016 17:36:36 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201611131736.uADHaaaD014411@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 13 Nov 2016 17:36:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426060 - in head: devel/p5-Debug-Client devel/p5-List-AllUtils devel/p5-List-Objects-WithUtils devel/p5-Specio devel/p5-Test-DependentModules devel/p5-Text-Levenshtein devel/p5-Types-C... 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.23 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: Sun, 13 Nov 2016 17:36:38 -0000 Author: sunpoet Date: Sun Nov 13 17:36:35 2016 New Revision: 426060 URL: https://svnweb.freebsd.org/changeset/ports/426060 Log: - Revert the removal of PERL_LEVEL check Notified by: mat Modified: head/devel/p5-Debug-Client/Makefile head/devel/p5-List-AllUtils/Makefile head/devel/p5-List-Objects-WithUtils/Makefile head/devel/p5-Specio/Makefile head/devel/p5-Test-DependentModules/Makefile head/devel/p5-Text-Levenshtein/Makefile head/devel/p5-Types-Core/Makefile head/devel/p5-Xporter/Makefile head/devel/p5-match-simple/Makefile head/devel/p5-mem/Makefile head/misc/p5-Geo-Coder-OpenCage/Makefile head/www/p5-Net-Async-HTTP/Makefile Modified: head/devel/p5-Debug-Client/Makefile ============================================================================== --- head/devel/p5-Debug-Client/Makefile Sun Nov 13 16:14:14 2016 (r426059) +++ head/devel/p5-Debug-Client/Makefile Sun Nov 13 17:36:35 2016 (r426060) @@ -27,4 +27,11 @@ NO_ARCH= yes USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502000 +BUILD_DEPENDS+= p5-IO-Socket-IP>=0.21:net/p5-IO-Socket-IP +RUN_DEPENDS+= p5-IO-Socket-IP>=0.21:net/p5-IO-Socket-IP +.endif + +.include Modified: head/devel/p5-List-AllUtils/Makefile ============================================================================== --- head/devel/p5-List-AllUtils/Makefile Sun Nov 13 16:14:14 2016 (r426059) +++ head/devel/p5-List-AllUtils/Makefile Sun Nov 13 17:36:35 2016 (r426060) @@ -21,4 +21,11 @@ NO_ARCH= yes USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502000 +BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.31:lang/p5-Scalar-List-Utils +RUN_DEPENDS+= p5-Scalar-List-Utils>=1.31:lang/p5-Scalar-List-Utils +.endif + +.include Modified: head/devel/p5-List-Objects-WithUtils/Makefile ============================================================================== --- head/devel/p5-List-Objects-WithUtils/Makefile Sun Nov 13 16:14:14 2016 (r426059) +++ head/devel/p5-List-Objects-WithUtils/Makefile Sun Nov 13 17:36:35 2016 (r426060) @@ -27,4 +27,11 @@ NO_ARCH= yes USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502000 +BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.33:lang/p5-Scalar-List-Utils +RUN_DEPENDS+= p5-Scalar-List-Utils>=1.33:lang/p5-Scalar-List-Utils +.endif + +.include Modified: head/devel/p5-Specio/Makefile ============================================================================== --- head/devel/p5-Specio/Makefile Sun Nov 13 16:14:14 2016 (r426059) +++ head/devel/p5-Specio/Makefile Sun Nov 13 17:36:35 2016 (r426060) @@ -28,4 +28,11 @@ NO_ARCH= yes USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502000 +BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.33:lang/p5-Scalar-List-Utils +RUN_DEPENDS+= p5-Scalar-List-Utils>=1.33:lang/p5-Scalar-List-Utils +.endif + +.include Modified: head/devel/p5-Test-DependentModules/Makefile ============================================================================== --- head/devel/p5-Test-DependentModules/Makefile Sun Nov 13 16:14:14 2016 (r426059) +++ head/devel/p5-Test-DependentModules/Makefile Sun Nov 13 17:36:35 2016 (r426060) @@ -30,4 +30,10 @@ NO_ARCH= yes USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} >= 502200 +TEST_DEPENDS+= p5-Module-Build>=0:${PORTSDIR}/devel/p5-Module-Build +.endif + +.include Modified: head/devel/p5-Text-Levenshtein/Makefile ============================================================================== --- head/devel/p5-Text-Levenshtein/Makefile Sun Nov 13 16:14:14 2016 (r426059) +++ head/devel/p5-Text-Levenshtein/Makefile Sun Nov 13 17:36:35 2016 (r426060) @@ -17,4 +17,11 @@ NO_ARCH= yes USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502000 +BUILD_DEPENDS+= p5-Unicode-Collate>=1.04:textproc/p5-Unicode-Collate +RUN_DEPENDS+= p5-Unicode-Collate>=1.04:textproc/p5-Unicode-Collate +.endif + +.include Modified: head/devel/p5-Types-Core/Makefile ============================================================================== --- head/devel/p5-Types-Core/Makefile Sun Nov 13 16:14:14 2016 (r426059) +++ head/devel/p5-Types-Core/Makefile Sun Nov 13 17:36:35 2016 (r426060) @@ -22,4 +22,10 @@ NO_ARCH= yes USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502000 +BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=6.86:devel/p5-ExtUtils-MakeMaker +.endif + +.include Modified: head/devel/p5-Xporter/Makefile ============================================================================== --- head/devel/p5-Xporter/Makefile Sun Nov 13 16:14:14 2016 (r426059) +++ head/devel/p5-Xporter/Makefile Sun Nov 13 17:36:35 2016 (r426060) @@ -22,4 +22,10 @@ NO_ARCH= yes USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502000 +BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=6.86:devel/p5-ExtUtils-MakeMaker +.endif + +.include Modified: head/devel/p5-match-simple/Makefile ============================================================================== --- head/devel/p5-match-simple/Makefile Sun Nov 13 16:14:14 2016 (r426059) +++ head/devel/p5-match-simple/Makefile Sun Nov 13 17:36:35 2016 (r426060) @@ -24,4 +24,11 @@ NO_ARCH= yes USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502000 +BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.33:lang/p5-Scalar-List-Utils +RUN_DEPENDS+= p5-Scalar-List-Utils>=1.33:lang/p5-Scalar-List-Utils +.endif + +.include Modified: head/devel/p5-mem/Makefile ============================================================================== --- head/devel/p5-mem/Makefile Sun Nov 13 16:14:14 2016 (r426059) +++ head/devel/p5-mem/Makefile Sun Nov 13 17:36:35 2016 (r426060) @@ -18,4 +18,10 @@ NO_ARCH= yes USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502000 +BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=6.82:devel/p5-ExtUtils-MakeMaker +.endif + +.include Modified: head/misc/p5-Geo-Coder-OpenCage/Makefile ============================================================================== --- head/misc/p5-Geo-Coder-OpenCage/Makefile Sun Nov 13 16:14:14 2016 (r426059) +++ head/misc/p5-Geo-Coder-OpenCage/Makefile Sun Nov 13 17:36:35 2016 (r426060) @@ -25,4 +25,13 @@ NO_ARCH= yes USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502000 +BUILD_DEPENDS+= p5-HTTP-Tiny>=0.028:www/p5-HTTP-Tiny \ + p5-Pod-Perldoc>=3.21:textproc/p5-Pod-Perldoc +RUN_DEPENDS+= p5-HTTP-Tiny>=0.028:www/p5-HTTP-Tiny \ + p5-Pod-Perldoc>=3.21:textproc/p5-Pod-Perldoc +.endif + +.include Modified: head/www/p5-Net-Async-HTTP/Makefile ============================================================================== --- head/www/p5-Net-Async-HTTP/Makefile Sun Nov 13 16:14:14 2016 (r426059) +++ head/www/p5-Net-Async-HTTP/Makefile Sun Nov 13 17:36:35 2016 (r426060) @@ -34,4 +34,11 @@ USES= perl5 SSL_BUILD_DEPENDS= p5-IO-Async-SSL>=0.12:security/p5-IO-Async-SSL SSL_RUN_DEPENDS= p5-IO-Async-SSL>=0.12:security/p5-IO-Async-SSL -.include +.include + +.if ${PERL_LEVEL} < 502000 +BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.29:lang/p5-Scalar-List-Utils +RUN_DEPENDS+= p5-Scalar-List-Utils>=1.29:lang/p5-Scalar-List-Utils +.endif + +.include