Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
Method modifiers are a powerful feature from the CLOS (Common Lisp
Object System) world.
In its most basic form, a method modifier is just a method that
calls $self->SUPER::foo(@_). I for one have trouble remembering
that exact invocation, so my classes seldom re-dispatch to their
base classes. Very bad!
Class::Method::Modifiers provides three modifiers: before, around,
and after. before and after are run just before and after the method
they modify, but can not really affect that original method. around
is run in place of the original method, with a hook to easily call
that original method. See the MODIFIERS section for more details
on how the particular modifiers work.

View File

@@ -0,0 +1,20 @@
# $NetBSD: Makefile,v 1.13 2013/05/31 12:40:09 wiz Exp $
DISTNAME= Class-Method-Modifiers-2.00
PKGNAME= p5-${DISTNAME}
PKGREVISION= 1
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Class/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://search.cpan.org/dist/Class-Method-Modifiers/
COMMENT= Perl module providing Moose-like method modifiers
LICENSE= ${PERL5_LICENSE}
BUILD_DEPENDS+= p5-Test-Fatal-[0-9]*:../../devel/p5-Test-Fatal
PERL5_PACKLIST= auto/Class/Method/Modifiers/.packlist
PERL5_MODULE_TYPE= Module::Install::Bundled
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,5 @@
$NetBSD: distinfo,v 1.8 2013/01/26 19:44:43 rhaen Exp $
SHA1 (Class-Method-Modifiers-2.00.tar.gz) = 46353782c48b81f79cd41ac761a098d7859951df
RMD160 (Class-Method-Modifiers-2.00.tar.gz) = 20b63339a439d8fb8c37a189cd5449f4202dd838
Size (Class-Method-Modifiers-2.00.tar.gz) = 31351 bytes