From owner-svn-ports-head@freebsd.org Sat Nov 18 00:10:33 2017 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 C5BCDDE6532; Sat, 18 Nov 2017 00:10:33 +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 9EE617AC00; Sat, 18 Nov 2017 00:10:33 +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 vAI0AWCD094819; Sat, 18 Nov 2017 00:10:32 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAI0AWQ0094814; Sat, 18 Nov 2017 00:10:32 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201711180010.vAI0AWQ0094814@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 18 Nov 2017 00:10:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454393 - in head/devel: . p5-Clone-Choose X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . p5-Clone-Choose X-SVN-Commit-Revision: 454393 X-SVN-Commit-Repository: ports 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.25 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: Sat, 18 Nov 2017 00:10:33 -0000 Author: sunpoet Date: Sat Nov 18 00:10:32 2017 New Revision: 454393 URL: https://svnweb.freebsd.org/changeset/ports/454393 Log: Add p5-Clone-Choose 0.008 Clone::Choose checks several different modules which provides a clone() function and selects an appropriate one. The default preference is: - Clone - Storable - Clone::PP This list might evolve in future. Please see ["EXPORTS"](#exports) how to pick a particular one. WWW: http://search.cpan.org/dist/Clone-Choose/ Added: head/devel/p5-Clone-Choose/ head/devel/p5-Clone-Choose/Makefile (contents, props changed) head/devel/p5-Clone-Choose/distinfo (contents, props changed) head/devel/p5-Clone-Choose/pkg-descr (contents, props changed) head/devel/p5-Clone-Choose/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Nov 17 23:11:07 2017 (r454392) +++ head/devel/Makefile Sat Nov 18 00:10:32 2017 (r454393) @@ -2117,6 +2117,7 @@ SUBDIR += p5-Class-XPath SUBDIR += p5-Class-XSAccessor SUBDIR += p5-Clone + SUBDIR += p5-Clone-Choose SUBDIR += p5-Clone-Fast SUBDIR += p5-Clone-More SUBDIR += p5-Clone-PP Added: head/devel/p5-Clone-Choose/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Clone-Choose/Makefile Sat Nov 18 00:10:32 2017 (r454393) @@ -0,0 +1,31 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Clone-Choose +PORTVERSION= 0.008 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Choose appropriate clone utility + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +OPTIONS_DEFINE= CLONE CLONE_PP STORABLE +OPTIONS_DEFAULT=CLONE +CLONE_DESC= Use Clone +CLONE_PP_DESC= Use Clone::PP +STORABLE_DESC= Use Storable + +NO_ARCH= yes +USE_PERL5= configure +USES= perl5 + +CLONE_BUILD_DEPENDS= p5-Clone>=0.10:devel/p5-Clone +CLONE_RUN_DEPENDS= p5-Clone>=0.10:devel/p5-Clone +CLONE_PP_BUILD_DEPENDS= p5-Clone-PP>=0:devel/p5-Clone-PP +CLONE_PP_RUN_DEPENDS= p5-Clone-PP>=0:devel/p5-Clone-PP + +.include Added: head/devel/p5-Clone-Choose/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Clone-Choose/distinfo Sat Nov 18 00:10:32 2017 (r454393) @@ -0,0 +1,3 @@ +TIMESTAMP = 1510956125 +SHA256 (Clone-Choose-0.008.tar.gz) = d32ac724c006250c966592579a97ff0734feac7c51a983d554f8371ade022e3f +SIZE (Clone-Choose-0.008.tar.gz) = 9148 Added: head/devel/p5-Clone-Choose/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Clone-Choose/pkg-descr Sat Nov 18 00:10:32 2017 (r454393) @@ -0,0 +1,10 @@ +Clone::Choose checks several different modules which provides a clone() function +and selects an appropriate one. The default preference is: +- Clone +- Storable +- Clone::PP + +This list might evolve in future. Please see ["EXPORTS"](#exports) how to pick a +particular one. + +WWW: http://search.cpan.org/dist/Clone-Choose/ Added: head/devel/p5-Clone-Choose/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Clone-Choose/pkg-plist Sat Nov 18 00:10:32 2017 (r454393) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Clone/Choose.pm +%%PERL5_MAN3%%/Clone::Choose.3.gz