summaryrefslogtreecommitdiff
path: root/devel/p5-parent
AgeCommit message (Collapse)AuthorFilesLines
2009-09-12Updating devel/p5-parent from 0.221nb1 to 0.223sno2-7/+7
pkgsrc changes: - Adding license definition Upstream changes: 0.223 20090901 . No functional changes, no need to upgrade + Fix Makefile.PL so that (re)installing parent under 5.10.1+ installs into perl/ instead of site/, patched by J.D.Hedden fixes RT #49328 0.222 20090828 . No functional changes, no need to upgrade + Documentation fix suggested by Clinton Gormley + Test fix for Perl compiled without PMC support, spotted and fixed by Nicholas Clark + Distribution changes to placate Module::Release
2008-10-19Bump the PKGREVISION for all packages which depend directly on perl,he1-1/+2
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=...").
2008-05-30Add devel/p5-parent-0.221abs3-0/+34
Allows you to both load one or more modules, while setting up inheritance from those modules at the same time. Mostly similar in effect to: package Baz; BEGIN { require Foo; require Bar; push @ISA, qw(Foo Bar); }