Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.
Upstream changes:
0.228 20130917
. Fix RT #88450, install into site/ for 5.12+
Thanks to haarg for the report
0.227 20130901
. Fix RT #88320, restore tests passing for 5.17.5+
Thanks to Zefram for the report and contributing the fix
0.226 20130729
. Fix RT #86890, restore tests passing for 5.18+
Thanks to Petr Pisar for the report
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package
Like last time, where this caused no complaints.
Changes from previous:
----------------------
0.225 20110308
. Applied a docpatch by Robin Barker to fix the documentation
about the warning of inheriting from yourself.
Fixes RT #66459
0.224 20101031
. Change assignment @ISA = (@ISA, 'new::class')
to use push @ISA, 'new::class'
This should make class creation faster from 5.10 onwards
and reverts a change made in 2.14. If this is critically slow for you
and you can't upgrade your version of Perl, use the old way.
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!
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
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=...").
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);
}