From owner-svn-ports-head@FreeBSD.ORG Wed Nov 27 00:00:55 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BC392652; Wed, 27 Nov 2013 00:00:55 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AB1312870; Wed, 27 Nov 2013 00:00:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAR00tDZ000538; Wed, 27 Nov 2013 00:00:55 GMT (envelope-from matthew@svn.freebsd.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAR00sYn000526; Wed, 27 Nov 2013 00:00:54 GMT (envelope-from matthew@svn.freebsd.org) Message-Id: <201311270000.rAR00sYn000526@svn.freebsd.org> From: Matthew Seaman Date: Wed, 27 Nov 2013 00:00:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r334982 - in head/devel: . p5-Role-Basic 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.16 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: Wed, 27 Nov 2013 00:00:55 -0000 Author: matthew Date: Wed Nov 27 00:00:54 2013 New Revision: 334982 URL: http://svnweb.freebsd.org/changeset/ports/334982 Log: Sometimes you want roles. You're not sure about Moose, Mouse, Moo and what was that damned Squirrel thing anyway? Then there's Class::Trait, but it has a funky syntax and the maintainer's deprecated it in favor of Moose::Role and you really don't care that it handles overloading, instance application or has a workaround for the SUPER:: bug. You think a meta-object protocol sounds nifty, but you don't understand it. Maybe you're not sure you want the syntactic sugar for object declaration. Maybe you've convinced your colleagues that roles are a good idea but they're leery of dragging in Moose (your author has had this happen more than once and heard of others making the same complaint). Sometimes you just want good old-fashioned roles which let you separate class responsibility from code reuse. WWW: http://search.cpan.org/dist/Role-Basic/ Added: head/devel/p5-Role-Basic/ head/devel/p5-Role-Basic/Makefile (contents, props changed) head/devel/p5-Role-Basic/distinfo (contents, props changed) head/devel/p5-Role-Basic/pkg-descr (contents, props changed) head/devel/p5-Role-Basic/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Nov 26 23:56:58 2013 (r334981) +++ head/devel/Makefile Wed Nov 27 00:00:54 2013 (r334982) @@ -2596,6 +2596,7 @@ SUBDIR += p5-ResourcePool SUBDIR += p5-Resources SUBDIR += p5-Return-Value + SUBDIR += p5-Role-Basic SUBDIR += p5-Role-HasMessage SUBDIR += p5-Role-Identifiable SUBDIR += p5-Role-Tiny Added: head/devel/p5-Role-Basic/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Role-Basic/Makefile Wed Nov 27 00:00:54 2013 (r334982) @@ -0,0 +1,21 @@ +# Created by: Matthew Seaman +# $FreeBSD$ + +PORTNAME= Role-Basic +PORTVERSION= 0.13 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:OVID + +MAINTAINER= matthew@FreeBSD.org +COMMENT= Just roles. Nothing else + +PKGNAMEPREFIX= p5- + +USES= perl5 +USE_PERL5= configure + +regression-test: build + @cd ${WRKSRC} && ${MAKE} test + +.include Added: head/devel/p5-Role-Basic/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Role-Basic/distinfo Wed Nov 27 00:00:54 2013 (r334982) @@ -0,0 +1,2 @@ +SHA256 (Role-Basic-0.13.tar.gz) = 38a0959ef9f193ff76e72c325a9e9211bc4868689bd0e2b005778f53f8b6f36a +SIZE (Role-Basic-0.13.tar.gz) = 39625 Added: head/devel/p5-Role-Basic/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Role-Basic/pkg-descr Wed Nov 27 00:00:54 2013 (r334982) @@ -0,0 +1,14 @@ +Sometimes you want roles. You're not sure about Moose, Mouse, Moo and +what was that damned Squirrel thing anyway? Then there's Class::Trait, +but it has a funky syntax and the maintainer's deprecated it in favor +of Moose::Role and you really don't care that it handles overloading, +instance application or has a workaround for the SUPER:: bug. You +think a meta-object protocol sounds nifty, but you don't understand +it. Maybe you're not sure you want the syntactic sugar for object +declaration. Maybe you've convinced your colleagues that roles are a +good idea but they're leery of dragging in Moose (your author has had +this happen more than once and heard of others making the same +complaint). Sometimes you just want good old-fashioned roles which let +you separate class responsibility from code reuse. + +WWW: http://search.cpan.org/dist/Role-Basic/ Added: head/devel/p5-Role-Basic/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Role-Basic/pkg-plist Wed Nov 27 00:00:54 2013 (r334982) @@ -0,0 +1,9 @@ +%%PERL5_MAN3%%/Role::Basic.3.gz +%%PERL5_MAN3%%/Role::Basic::Philosophy.3.gz +%%SITE_PERL%%/Role/Basic.pm +%%SITE_PERL%%/Role/Basic/Philosophy.pod +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Role/Basic/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Role/Basic +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Role +@dirrmtry %%SITE_PERL%%/Role/Basic +@dirrmtry %%SITE_PERL%%/Role