From owner-svn-ports-all@FreeBSD.ORG Sun Jun 8 16:11:55 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E6A05BCA; Sun, 8 Jun 2014 16:11:55 +0000 (UTC) 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 D33A022D2; Sun, 8 Jun 2014 16:11:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s58GBtmh060641; Sun, 8 Jun 2014 16:11:55 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s58GBteU060640; Sun, 8 Jun 2014 16:11:55 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201406081611.s58GBteU060640@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 8 Jun 2014 16:11:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357049 - head/devel/p5-List-AllUtils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2014 16:11:56 -0000 Author: sunpoet Date: Sun Jun 8 16:11:55 2014 New Revision: 357049 URL: http://svnweb.freebsd.org/changeset/ports/357049 QAT: https://qat.redports.org/buildarchive/r357049/ Log: - Update *_DEPENDS for Perl 5.20 - Bump PORTREVISION for dependency change PR: ports/190789 Submitted by: sunpoet (myself) Approved by: Gea-Suan Lin (maintainer) Modified: head/devel/p5-List-AllUtils/Makefile Modified: head/devel/p5-List-AllUtils/Makefile ============================================================================== --- head/devel/p5-List-AllUtils/Makefile Sun Jun 8 16:04:21 2014 (r357048) +++ head/devel/p5-List-AllUtils/Makefile Sun Jun 8 16:11:55 2014 (r357049) @@ -2,6 +2,7 @@ PORTNAME= List-AllUtils PORTVERSION= 0.08 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,13 +12,18 @@ COMMENT= Combines List::Util and List::M LICENSE= ART20 -# As of Perl 5.18, List::Util in core are earlier than 1.31 -BUILD_DEPENDS= p5-List-MoreUtils>=0.28:${PORTSDIR}/lang/p5-List-MoreUtils \ - p5-Scalar-List-Utils>=1.31:${PORTSDIR}/lang/p5-Scalar-List-Utils +BUILD_DEPENDS= p5-List-MoreUtils>=0.28:${PORTSDIR}/lang/p5-List-MoreUtils RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Warnings>=0:${PORTSDIR}/devel/p5-Test-Warnings USES= perl5 USE_PERL5= configure -.include +.include + +.if ${PERL_LEVEL} < 502000 +BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.31:${PORTSDIR}/lang/p5-Scalar-List-Utils +RUN_DEPENDS+= p5-Scalar-List-Utils>=1.31:${PORTSDIR}/lang/p5-Scalar-List-Utils +.endif + +.include