From owner-svn-ports-head@FreeBSD.ORG Mon Nov 10 16:45:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F4F1A7D; Mon, 10 Nov 2014 16:45:44 +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 7B95BBD4; Mon, 10 Nov 2014 16:45:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAAGjiDH058809; Mon, 10 Nov 2014 16:45:44 GMT (envelope-from az@FreeBSD.org) Received: (from az@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAAGji4n058808; Mon, 10 Nov 2014 16:45:44 GMT (envelope-from az@FreeBSD.org) Message-Id: <201411101645.sAAGji4n058808@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: az set sender to az@FreeBSD.org using -f From: Andrej Zverev Date: Mon, 10 Nov 2014 16:45:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372404 - head/devel/p5-Config-Any 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.18-1 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: Mon, 10 Nov 2014 16:45:44 -0000 Author: az Date: Mon Nov 10 16:45:43 2014 New Revision: 372404 URL: https://svnweb.freebsd.org/changeset/ports/372404 QAT: https://qat.redports.org/buildarchive/r372404/ Log: - make conditional depend on p5-Module-Pluggable It still in corelibs till perl 5.19 (or 5.20 which we have in ports). - bump portrevision Modified: head/devel/p5-Config-Any/Makefile Modified: head/devel/p5-Config-Any/Makefile ============================================================================== --- head/devel/p5-Config-Any/Makefile Mon Nov 10 16:37:27 2014 (r372403) +++ head/devel/p5-Config-Any/Makefile Mon Nov 10 16:45:43 2014 (r372404) @@ -3,7 +3,7 @@ PORTNAME= Config-Any PORTVERSION= 0.24 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,8 +14,7 @@ COMMENT= Load class configuration data f LICENSE= ART10 GPLv1 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Config-General>=2.47:${PORTSDIR}/devel/p5-Config-General \ - p5-Module-Pluggable>=0:${PORTSDIR}/devel/p5-Module-Pluggable +BUILD_DEPENDS= p5-Config-General>=2.47:${PORTSDIR}/devel/p5-Config-General RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= INI JSON XML YAML @@ -46,4 +45,12 @@ BUILD_DEPENDS+= p5-YAML-LibYAML>=0:${POR RUN_DEPENDS+= p5-YAML-LibYAML>=0:${PORTSDIR}/textproc/p5-YAML-LibYAML .endif -.include +.include + +.if ${PERL_LEVEL} >= 502000 +# Module::Pluggable was first released with perl v5.8.9 and removed from v5.19.0 +RUN_DEPENDS+= p5-Module-Pluggable>=0:${PORTSDIR}/devel/p5-Module-Pluggable +BUILD_DEPENDS+= p5-Module-Pluggable>=0:${PORTSDIR}/devel/p5-Module-Pluggable +.endif + +.include