Issues found with existing distfiles:
distfiles/eclipse-sourceBuild-srcIncluded-3.0.1.zip
distfiles/fortran-utils-1.1.tar.gz
distfiles/ivykis-0.39.tar.gz
distfiles/enum-1.11.tar.gz
distfiles/pvs-3.2-libraries.tgz
distfiles/pvs-3.2-linux.tgz
distfiles/pvs-3.2-solaris.tgz
distfiles/pvs-3.2-system.tgz
No changes made to these distinfo files.
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
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.
5.74 Fri Oct 25 19:08 2013
- Makefile.PL: Set installdirs to "site" on Perl >= 5.12
5.73 Tue Oct 16 16:45 2012
- AutoLoader::autoload_sub
Same as actually autoloading a function, but doesn't
execute it. Cf. documentation for details.
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.
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!
Upstream changes:
5.67 Tue Sep 12 16:50 2008
- Added a test case for the bug that was fixed in 5.66_01,
courtesy of Christoph Lamprecht.
5.66_01 Tue Sep 2 14:40 2008
- Fix determination of the autosplit.ix in ugly edge cases.
Explanation:
If the module file isn't called $Foo.pm, but
something random, then the static substitution which
tries to determine the location of autosplit.ix fails.
Up until now, the substitution would fail, so AutoLoader
evaluated the module code again instead of falling back
searching the autosplit.ix in @INC. The code was there
but not triggered in some circumstances.
For an example error in a PAR context, run
pp --clean -e 'use Storable; retrieve("foo")'
and then ./a.out and which it explode.
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=...").
The AutoLoader module works with the AutoSplit module and the
__END__ token to defer the loading of some subroutines until they
are used rather than loading them all at once.
To use AutoLoader, the author of a module has to place the definitions
of subroutines to be autoloaded after an __END__ token. (See
perldata.) The AutoSplit module can then be run manually to extract
the definitions into individual files auto/funcname.al.