Date: Fri, 15 Nov 2013 13:48:39 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333864 - in head/devel: . p5-Class-Mixin Message-ID: <201311151348.rAFDmdGI027164@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Fri Nov 15 13:48:38 2013 New Revision: 333864 URL: http://svnweb.freebsd.org/changeset/ports/333864 Log: Add p5-Class-Mixin 1.00, API for aliasing methods to/from other classes. PR: ports/180293 Submitted by: Anes Mukhametov <anes@anes.su> Added: head/devel/p5-Class-Mixin/ head/devel/p5-Class-Mixin/Makefile (contents, props changed) head/devel/p5-Class-Mixin/distinfo (contents, props changed) head/devel/p5-Class-Mixin/pkg-descr (contents, props changed) head/devel/p5-Class-Mixin/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Nov 15 13:01:11 2013 (r333863) +++ head/devel/Makefile Fri Nov 15 13:48:38 2013 (r333864) @@ -1578,6 +1578,7 @@ SUBDIR += p5-Class-MethodMaker SUBDIR += p5-Class-MethodMapper SUBDIR += p5-Class-Mix + SUBDIR += p5-Class-Mixin SUBDIR += p5-Class-MixinFactory SUBDIR += p5-Class-Multimethods SUBDIR += p5-Class-Multimethods-Pure Added: head/devel/p5-Class-Mixin/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Class-Mixin/Makefile Fri Nov 15 13:48:38 2013 (r333864) @@ -0,0 +1,16 @@ +# Created by: Anes Mukhametov <anes@anes.su> +# $FreeBSD$ + +PORTNAME= Class-Mixin +PORTVERSION= 1.00 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= anes@anes.su +COMMENT= API for aliasing methods to/from other classes + +USES= perl5 +USE_PERL5= configure + +.include <bsd.port.mk> Added: head/devel/p5-Class-Mixin/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Class-Mixin/distinfo Fri Nov 15 13:48:38 2013 (r333864) @@ -0,0 +1,2 @@ +SHA256 (Class-Mixin-1.00.tar.gz) = 52a6babb5397a3ffa1c49a66e7eaba939169bc056e91df7da681716514d185df +SIZE (Class-Mixin-1.00.tar.gz) = 5549 Added: head/devel/p5-Class-Mixin/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Class-Mixin/pkg-descr Fri Nov 15 13:48:38 2013 (r333864) @@ -0,0 +1,8 @@ +Class::Mixin provides a way to mix methods from one class into another, +such that the target class can use both its methods as well as those of +the source class. +The primary advantage is that the behavior of a class can be modified +to effectively be another class without changing any of the calling +code -- just requires using the new class that mixes into the original. + +WWW: http://search.cpan.org/dist/Class-Mixin/ Added: head/devel/p5-Class-Mixin/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Class-Mixin/pkg-plist Fri Nov 15 13:48:38 2013 (r333864) @@ -0,0 +1,6 @@ +%%SITE_PERL%%/Class/Mixin.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Class/Mixin/.packlist +%%PERL5_MAN3%%/Class::Mixin.3.gz +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Class/Mixin +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Class +@dirrmtry %%SITE_PERL%%/Class
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311151348.rAFDmdGI027164>