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.
Add missing BUILD_DEPENDS
Upstream changes:
1.07 Thu Jan 19 2012
- synchronised the autoseeding mechanism with that of Math::Random::MT
1.08 Mon May 28 2012
- synchronised the autoseeding mechanism with that of Math::Random::MT that
is more elegant and portable
1.09 Mon Jun 4 2012
- added the irand() function to draw random integers, as in Math::Random::MT
1.10 Mon Aug 6 2012
- made set_seed() return the seed, as does Math::Random::MT
- migrated test suite to Test::More and Test::Number::Delta
1.11
- Improvement of unit tests
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!
pkgsrc changes:
- Adding license definition
Upstream changes:
1.06 Fri Sep 4 2009
- added ability to automatically and rapidly generate different seeds and
return it to allow the generation of identical random number series
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=...").
Pure Perl implementation of the Mersenne Twister algorithm as
implemented in C/XS in Math::Random::MT. The output is identical
to the C/XS version. The Mersenne Twister is a 32 bit pseudorandom
number generator developed by Makoto Matsumoto and Takuji Nishimura.
The algorithm is characterised by a very uniform distribution but
is not cryptographically secure. What this means in real terms is
that it is fine for modeling but no good for crypto.