d14c69ffd3
Changes from 0.10: 0.12 Mon Aug 20 16:06:50 PDT 2007 - Make this a release 0.11_03 Wed Jun 20 12:12:36 PDT 2007 - Fixed a bug in backward-compatiblity code to handle multiple hooks in one add_trigger() call. (Thanks to mark addison) 0.11_02 Sun Jun 10 18:09:58 PDT 2007 - Added a test to make sure $_ is not clobbered (Thanks to mark addison) - Killed the hidden feature to add multiple hooks in one add_trigger() call because it interfers with named parameter style calls. (Thanks to clkao) 0.11_01 Mon May 28 21:03:03 PDT 2007 - Added support for abortable triggers. - Added named-parameters calling convention for add_trigger - Added new last_trigger_results method and began capturing trigger return values. - FUNCTIONALITY CHANGE: When no triggers are called for a trigger point, the return value is now '0', not undef. (Thanks to Jesse Vincent) 0.11 Thu Feb 22 19:02:09 PST 2007 - Fixed a bug due to Class::Data::Inheritable, where triggers added to the superclass after trigger is added in the child class are ignored in the child class. See t/03_inherit.t for example. (Thanks to Brad Choate, Yann Kerherve, Ben Trott and Fumiaki Yoshimatsu)
22 lines
646 B
Makefile
22 lines
646 B
Makefile
# $NetBSD: Makefile,v 1.7 2007/11/18 13:28:26 hiramatsu Exp $
|
|
#
|
|
|
|
DISTNAME= Class-Trigger-0.12
|
|
PKGNAME= p5-${DISTNAME}
|
|
SVR4_PKGNAME= p5ctr
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Class/}
|
|
|
|
MAINTAINER= hiramatu@boreas.dti.ne.jp
|
|
HOMEPAGE= http://search.cpan.org/dist/Class-Trigger/
|
|
COMMENT= Mixin to add/call inheritable triggers
|
|
|
|
DEPENDS+= p5-Class-Data-Inheritable>=0.02:../../devel/p5-Class-Data-Inheritable
|
|
DEPENDS+= p5-IO-stringy>=0.02:../../devel/p5-IO-stringy
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
PERL5_PACKLIST= auto/Class/Trigger/.packlist
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|