From owner-svn-ports-all@FreeBSD.ORG Sun Sep 16 16:09:35 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 622B31065674; Sun, 16 Sep 2012 16:09:35 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4DE2E8FC1E; Sun, 16 Sep 2012 16:09:35 +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 q8GG9ZBY025991; Sun, 16 Sep 2012 16:09:35 GMT (envelope-from lth@svn.freebsd.org) Received: (from lth@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8GG9Zfs025984; Sun, 16 Sep 2012 16:09:35 GMT (envelope-from lth@svn.freebsd.org) Message-Id: <201209161609.q8GG9Zfs025984@svn.freebsd.org> From: Lars Thegler Date: Sun, 16 Sep 2012 16:09:35 +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: r304365 - in head/devel: . p5-MooseX-AttributeShortcuts 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: Sun, 16 Sep 2012 16:09:35 -0000 Author: lth Date: Sun Sep 16 16:09:34 2012 New Revision: 304365 URL: http://svn.freebsd.org/changeset/ports/304365 Log: Add p5-MooseX-AttributeShortcuts 0.015, shorthand for common attribute options. Added: head/devel/p5-MooseX-AttributeShortcuts/ head/devel/p5-MooseX-AttributeShortcuts/Makefile (contents, props changed) head/devel/p5-MooseX-AttributeShortcuts/distinfo (contents, props changed) head/devel/p5-MooseX-AttributeShortcuts/pkg-descr (contents, props changed) head/devel/p5-MooseX-AttributeShortcuts/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Sep 16 16:02:54 2012 (r304364) +++ head/devel/Makefile Sun Sep 16 16:09:34 2012 (r304365) @@ -2173,6 +2173,7 @@ SUBDIR += p5-MooseX-Attribute-Chained SUBDIR += p5-MooseX-Attribute-ENV SUBDIR += p5-MooseX-AttributeHelpers + SUBDIR += p5-MooseX-AttributeShortcuts SUBDIR += p5-MooseX-AuthorizedMethods SUBDIR += p5-MooseX-ChainedAccessors SUBDIR += p5-MooseX-ClassAttribute Added: head/devel/p5-MooseX-AttributeShortcuts/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-MooseX-AttributeShortcuts/Makefile Sun Sep 16 16:09:34 2012 (r304365) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= MooseX-AttributeShortcuts +PORTVERSION= 0.015 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= MooseX +PKGNAMEPREFIX= p5- + +MAINTAINER= lth@FreeBSD.org +COMMENT= Shorthand for common attribute options + +BUILD_DEPENDS= p5-Moose>=0:${PORTSDIR}/devel/p5-Moose \ + p5-MooseX-Role-Parameterized>=0:${PORTSDIR}/devel/p5-MooseX-Role-Parameterized \ + p5-MooseX-Types-Common>=0:${PORTSDIR}/devel/p5-MooseX-Types-Common \ + p5-MooseX-Types>=0:${PORTSDIR}/devel/p5-MooseX-Types \ + p5-namespace-autoclean>=0:${PORTSDIR}/devel/p5-namespace-autoclean +RUN_DEPENDS:= ${BUILD_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= MooseX::AttributeShortcuts.3 + +.include Added: head/devel/p5-MooseX-AttributeShortcuts/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-MooseX-AttributeShortcuts/distinfo Sun Sep 16 16:09:34 2012 (r304365) @@ -0,0 +1,2 @@ +SHA256 (MooseX-AttributeShortcuts-0.015.tar.gz) = 304fce301bdc1857294d28740f5094f69fe7bf8baed9b6d32e712979c68aac06 +SIZE (MooseX-AttributeShortcuts-0.015.tar.gz) = 18111 Added: head/devel/p5-MooseX-AttributeShortcuts/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-MooseX-AttributeShortcuts/pkg-descr Sun Sep 16 16:09:34 2012 (r304365) @@ -0,0 +1,7 @@ +Ever find yourself repeatedly specifying writers and builders, because there's +no good shortcut to specifying them? Sometimes you want an attribute to have +a read-only public interface, but a private writer. And wouldn't it be easier +to just say "builder => 1" and have the attribute construct the canonical +"_build_$name" builder name for you? + +WWW: http://search.cpan.org/dist/MooseX-AttributeShortcuts/ Added: head/devel/p5-MooseX-AttributeShortcuts/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-MooseX-AttributeShortcuts/pkg-plist Sun Sep 16 16:09:34 2012 (r304365) @@ -0,0 +1,5 @@ +%%SITE_PERL%%/MooseX/AttributeShortcuts.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX/AttributeShortcuts/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX/AttributeShortcuts +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX +@dirrmtry %%SITE_PERL%%/MooseX