2010-08-21 18:37:14 by Stoned Elipot | Files touched by this commit (1724) | |
Log message:
Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.
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=..."), minus the packages updated after
the perl package update.
sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
|
2009-09-12 20:31:17 by Jens Rehsack | Files touched by this commit (2) |
Log message:
Updating devel/p5-parent from 0.221nb1 to 0.223
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-19 21:19:25 by Havard Eidnes | Files touched by this commit (1179) |
Log message:
Bump the PKGREVISION for all packages which depend directly on perl,
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-30 13:52:39 by David Brownlee | Files touched by this commit (3) | |
Log message:
Add devel/p5-parent-0.221
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);
}
|