From owner-svn-ports-all@FreeBSD.ORG Thu Aug 2 03:18:00 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D34A4106566C; Thu, 2 Aug 2012 03:18:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B3D7E8FC17; Thu, 2 Aug 2012 03:18:00 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q723I0BJ031416; Thu, 2 Aug 2012 03:18:00 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q723I0Mr031410; Thu, 2 Aug 2012 03:18:00 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201208020318.q723I0Mr031410@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 2 Aug 2012 03:18:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r301850 - in head/devel: . p5-Sub-Exporter-Progressive X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 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: Thu, 02 Aug 2012 03:18:00 -0000 Author: sunpoet Date: Thu Aug 2 03:18:00 2012 New Revision: 301850 URL: http://svn.freebsd.org/changeset/ports/301850 Log: - Add p5-Sub-Exporter-Progressive 0.001002 Sub::Exporter is an incredibly powerful module, but with that power comes great responsibility, er- as well as some runtime penalties. This module is a Sub::Exporter wrapper that will let your users just use Exporter if all they are doing is picking exports, but use Sub::Exporter if your users try to use Sub::Exporter's more advanced features features, like renaming exports, if they try to use them. Note that this module will export @EXPORT and @EXPORT_OK package variables for Exporter to work. Additionally, if your package uses advanced Sub::Exporter features like currying, this module will only ever use Sub::Exporter, so you might as well use it directly. WWW: http://search.cpan.org/dist/Sub-Exporter-Progressive/ Added: head/devel/p5-Sub-Exporter-Progressive/ head/devel/p5-Sub-Exporter-Progressive/Makefile (contents, props changed) head/devel/p5-Sub-Exporter-Progressive/distinfo (contents, props changed) head/devel/p5-Sub-Exporter-Progressive/pkg-descr (contents, props changed) head/devel/p5-Sub-Exporter-Progressive/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Aug 2 03:17:26 2012 (r301849) +++ head/devel/Makefile Thu Aug 2 03:18:00 2012 (r301850) @@ -2491,6 +2491,7 @@ SUBDIR += p5-Sub-Exporter SUBDIR += p5-Sub-Exporter-ForMethods SUBDIR += p5-Sub-Exporter-GlobExporter + SUBDIR += p5-Sub-Exporter-Progressive SUBDIR += p5-Sub-Identify SUBDIR += p5-Sub-Install SUBDIR += p5-Sub-Installer Added: head/devel/p5-Sub-Exporter-Progressive/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Sub-Exporter-Progressive/Makefile Thu Aug 2 03:18:00 2012 (r301850) @@ -0,0 +1,28 @@ +# New ports collection makefile for: p5-Sub-Exporter-Progressive +# Date created: 2012-08-01 +# Whom: Sunpoet Po-Chuan Hsieh +# +# $FreeBSD$ +# + +PORTNAME= Sub-Exporter-Progressive +PORTVERSION= 0.001.002 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- +DISTNAME= ${PORTNAME}-${PORTVERSION:R}${PORTVERSION:E} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Only use Sub::Exporter if you need it + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Sub-Exporter>=0:${PORTSDIR}/devel/p5-Sub-Exporter +RUN_DEPENDS:= ${BUILD_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= Sub::Exporter::Progressive.3 + +.include Added: head/devel/p5-Sub-Exporter-Progressive/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Sub-Exporter-Progressive/distinfo Thu Aug 2 03:18:00 2012 (r301850) @@ -0,0 +1,2 @@ +SHA256 (Sub-Exporter-Progressive-0.001002.tar.gz) = 071c4f13766a5dadd3ad09e5e5634fe3d5835c7cba349d0e527957c80e63500d +SIZE (Sub-Exporter-Progressive-0.001002.tar.gz) = 10664 Added: head/devel/p5-Sub-Exporter-Progressive/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Sub-Exporter-Progressive/pkg-descr Thu Aug 2 03:18:00 2012 (r301850) @@ -0,0 +1,13 @@ +Sub::Exporter is an incredibly powerful module, but with that power comes great +responsibility, er- as well as some runtime penalties. This module is a +Sub::Exporter wrapper that will let your users just use Exporter if all they are +doing is picking exports, but use Sub::Exporter if your users try to use +Sub::Exporter's more advanced features features, like renaming exports, if they +try to use them. + +Note that this module will export @EXPORT and @EXPORT_OK package variables for +Exporter to work. Additionally, if your package uses advanced Sub::Exporter +features like currying, this module will only ever use Sub::Exporter, so you +might as well use it directly. + +WWW: http://search.cpan.org/dist/Sub-Exporter-Progressive/ Added: head/devel/p5-Sub-Exporter-Progressive/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Sub-Exporter-Progressive/pkg-plist Thu Aug 2 03:18:00 2012 (r301850) @@ -0,0 +1,7 @@ +%%SITE_PERL%%/Sub/Exporter/Progressive.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Sub/Exporter/Progressive/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Sub/Exporter/Progressive +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Sub/Exporter +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Sub +@dirrmtry %%SITE_PERL%%/Sub/Exporter +@dirrmtry %%SITE_PERL%%/Sub