89112c4b09
Changes from previous: 0.22 2011-05-09 - Fix issues where the metaclass gets reinitialized after the call to 'extends' but before 'make_immutable'. This could happen if a role used an extension which provided an application_to_class metarole, since the role application would then apply a metarole to the class, and metarole application currently causes metaclass reinitialization in Moose. (ugh.) 0.21 2011-04-29 - Allow this module to work with constructors with names other than 'new'. If you're extending a class with a constructor named something other than 'new', you should declare this when calling extends, as in: extends 'Foo' => { -constructor_name => 'create' }; This will ensure that calling 'create' will also call Moose's constructor. 0.20 2011-03-22 - fix warning when passing inline_constructor => 0 with no superclass new method (rafl). 0.19 2011-03-02 - don't die if superclass doesn't have a 'new' method 0.18 2011-02-09 - forward compat for Moose 2.0 0.17 2010-11-08 - convert to Test::Fatal, and dep on it 0.16 2010-10-05 - Make it work with Moose 1.15 (Dave Rolsky).
24 lines
733 B
Makefile
24 lines
733 B
Makefile
# $NetBSD: Makefile,v 1.8 2011/10/06 15:13:13 hiramatsu Exp $
|
|
#
|
|
|
|
DISTNAME= MooseX-NonMoose-0.22
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=MooseX/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/MooseX-NonMoose/
|
|
COMMENT= Perl 5 module to subclass non-Moose classes with Moose
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= # empty
|
|
PERL5_PACKLIST= auto/MooseX/NonMoose/.packlist
|
|
|
|
BUILD_DEPENDS+= p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception
|
|
DEPENDS+= p5-List-MoreUtils-[0-9]*:../../devel/p5-List-MoreUtils
|
|
DEPENDS+= p5-Moose>=1.08:../../devel/p5-Moose
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|