From owner-svn-ports-head@freebsd.org Fri Apr 1 11:16:29 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 37036AEBEE8; Fri, 1 Apr 2016 11:16:29 +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 0EA181A5D; Fri, 1 Apr 2016 11:16:28 +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 u31BGScl003187; Fri, 1 Apr 2016 11:16:28 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u31BGS8A003185; Fri, 1 Apr 2016 11:16:28 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201604011116.u31BGS8A003185@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 1 Apr 2016 11:16:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412325 - 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.21 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: Fri, 01 Apr 2016 11:16:29 -0000 Author: sunpoet Date: Fri Apr 1 11:16:27 2016 New Revision: 412325 URL: https://svnweb.freebsd.org/changeset/ports/412325 Log: - Update to 0.27 - Update *_DEPENDS: remove PORTSDIR - Add NO_ARCH Changes: http://search.cpan.org/dist/Config-Any/Changes Modified: head/devel/p5-Config-Any/Makefile head/devel/p5-Config-Any/distinfo Modified: head/devel/p5-Config-Any/Makefile ============================================================================== --- head/devel/p5-Config-Any/Makefile Fri Apr 1 11:16:23 2016 (r412324) +++ head/devel/p5-Config-Any/Makefile Fri Apr 1 11:16:27 2016 (r412325) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Config-Any -PORTVERSION= 0.26 +PORTVERSION= 0.27 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -18,26 +18,27 @@ OPTIONS_DEFAULT=GENERAL INI JSON XML YAM GENERAL_DESC= Generic Config format support +NO_ARCH= yes USES= perl5 USE_PERL5= configure -GENERAL_BUILD_DEPENDS= p5-Config-General>=2.47:${PORTSDIR}/devel/p5-Config-General -GENERAL_RUN_DEPENDS= p5-Config-General>=2.47:${PORTSDIR}/devel/p5-Config-General -INI_BUILD_DEPENDS= p5-Config-Tiny>=0:${PORTSDIR}/devel/p5-Config-Tiny -INI_RUN_DEPENDS= p5-Config-Tiny>=0:${PORTSDIR}/devel/p5-Config-Tiny -JSON_BUILD_DEPENDS= p5-JSON-XS>=0:${PORTSDIR}/converters/p5-JSON-XS -JSON_RUN_DEPENDS= p5-JSON-XS>=0:${PORTSDIR}/converters/p5-JSON-XS -XML_BUILD_DEPENDS= p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple -XML_RUN_DEPENDS= p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple -YAML_BUILD_DEPENDS= p5-YAML-LibYAML>=0:${PORTSDIR}/textproc/p5-YAML-LibYAML -YAML_RUN_DEPENDS= p5-YAML-LibYAML>=0:${PORTSDIR}/textproc/p5-YAML-LibYAML +GENERAL_BUILD_DEPENDS= p5-Config-General>=2.47:devel/p5-Config-General +GENERAL_RUN_DEPENDS= p5-Config-General>=2.47:devel/p5-Config-General +INI_BUILD_DEPENDS= p5-Config-Tiny>=0:devel/p5-Config-Tiny +INI_RUN_DEPENDS= p5-Config-Tiny>=0:devel/p5-Config-Tiny +JSON_BUILD_DEPENDS= p5-JSON-XS>=0:converters/p5-JSON-XS +JSON_RUN_DEPENDS= p5-JSON-XS>=0:converters/p5-JSON-XS +XML_BUILD_DEPENDS= p5-XML-Simple>=0:textproc/p5-XML-Simple +XML_RUN_DEPENDS= p5-XML-Simple>=0:textproc/p5-XML-Simple +YAML_BUILD_DEPENDS= p5-YAML-LibYAML>=0:textproc/p5-YAML-LibYAML +YAML_RUN_DEPENDS= p5-YAML-LibYAML>=0:textproc/p5-YAML-LibYAML .include .if ${PERL_LEVEL} >= 502000 # Module::Pluggable was first released with perl v5.8.9 and removed from v5.19.0 -BUILD_DEPENDS+= p5-Module-Pluggable>=0:${PORTSDIR}/devel/p5-Module-Pluggable -RUN_DEPENDS+= p5-Module-Pluggable>=0:${PORTSDIR}/devel/p5-Module-Pluggable +BUILD_DEPENDS+= p5-Module-Pluggable>=3.6:devel/p5-Module-Pluggable +RUN_DEPENDS+= p5-Module-Pluggable>=3.6:devel/p5-Module-Pluggable .endif .include Modified: head/devel/p5-Config-Any/distinfo ============================================================================== --- head/devel/p5-Config-Any/distinfo Fri Apr 1 11:16:23 2016 (r412324) +++ head/devel/p5-Config-Any/distinfo Fri Apr 1 11:16:27 2016 (r412325) @@ -1,2 +1,2 @@ -SHA256 (Config-Any-0.26.tar.gz) = f9ae12d5c1f084385dd9d55dd25c09a6f69f1a76c938d4d06ea3c6d85710a594 -SIZE (Config-Any-0.26.tar.gz) = 35193 +SHA256 (Config-Any-0.27.tar.gz) = 836f6dfff4a7ca2b05cf72e81848f9904ef2b61690f382a76819dc4853289cde +SIZE (Config-Any-0.27.tar.gz) = 34862