pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/p5-Class-Method-Modifiers Import p5-Class-Method...
details: https://anonhg.NetBSD.org/pkgsrc/rev/0eb133a39205
branches: trunk
changeset: 544942:0eb133a39205
user: he <he%pkgsrc.org@localhost>
date: Tue Jul 22 23:18:55 2008 +0000
description:
Import p5-Class-Method-Modifiers version 1.01.
This package provides Moose-like method modifiers.
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.
diffstat:
devel/p5-Class-Method-Modifiers/DESCR | 14 ++++++++++++++
devel/p5-Class-Method-Modifiers/Makefile | 19 +++++++++++++++++++
devel/p5-Class-Method-Modifiers/distinfo | 5 +++++
3 files changed, 38 insertions(+), 0 deletions(-)
diffs (50 lines):
diff -r 6b6f340a77ad -r 0eb133a39205 devel/p5-Class-Method-Modifiers/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/p5-Class-Method-Modifiers/DESCR Tue Jul 22 23:18:55 2008 +0000
@@ -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.
diff -r 6b6f340a77ad -r 0eb133a39205 devel/p5-Class-Method-Modifiers/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/p5-Class-Method-Modifiers/Makefile Tue Jul 22 23:18:55 2008 +0000
@@ -0,0 +1,19 @@
+# $NetBSD: Makefile,v 1.1.1.1 2008/07/22 23:18:55 he Exp $
+
+DISTNAME= Class-Method-Modifiers-1.01
+PKGNAME= p5-${DISTNAME}
+CATEGORIES= devel perl5
+MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Class/}
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= http://search.cpan.org/dist/Class-Method-Modifiers/
+COMMENT= Perl module providing Moose-like method modifiers
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+DEPENDS+= p5-MRO-Compat>=0:../../devel/p5-MRO-Compat
+
+PERL5_PACKLIST= auto/Class/Method/Modifiers/.packlist
+
+.include "../../lang/perl5/module.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 6b6f340a77ad -r 0eb133a39205 devel/p5-Class-Method-Modifiers/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/p5-Class-Method-Modifiers/distinfo Tue Jul 22 23:18:55 2008 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2008/07/22 23:18:55 he Exp $
+
+SHA1 (Class-Method-Modifiers-1.01.tar.gz) = 7321642cf8df0b8d35bf517d9d4af0824a2036d8
+RMD160 (Class-Method-Modifiers-1.01.tar.gz) = 9ced290ea0b66e5aabcc497a8c0963a323a913a3
+Size (Class-Method-Modifiers-1.01.tar.gz) = 23163 bytes
Home |
Main Index |
Thread Index |
Old Index