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:
0.87 Mon Sep 21 15:55:00 CET 2009
- Promote to stable release
0.86_01 Thu Sep 17 10:01:00 CET 2009
- From perl change 09330df80caf214f375fcf0c04857347e3b17c69 (Zefram):
Fix [perl #66970] Incorrect coderef in MODIFY_CODE_ATTRIBUTES
Attribute handlers being applied to a temporary CV has actually been
reported as a bug, #66970. The attached patch fixes the bug, by
changing the order in which things happen: attributes are now applied
after the temporary CV has been merged into the existing CV or has
otherwise been added to the appropriate GV.
The change breaks part of Attribute::Handlers. Part of A:H searches the
package to find the name of the sub to which a :ATTR attribute is being
applied, and the correct time at which to launch that search depends
crucially on the order in which the CV construction events occur. So
this patch also includes a change to A:H, to make it detect which way
things happen. The resulting A:H works either way, which is essential
for its dual-life nature.
- Updating package of p5 module Attribute::Handlers from 0.83 to 0.85
- Setting LICENSE to ${PERL5_LICENSE} according to META.yaml
Upstream changes:
0.84 Wed Jun 10 15:14:00 CET 2009
- Core-CPAN synchronization
0.85 Thu Jun 11 09:31:00 CET 2009
- Document findsym for the sake of mod_perl. (David Wheeler)
- Remove unused variable. (David Wheeler)
Upstream changes:
0.83 Fri Mar 13 15:14:00 CET 2009
- Re-add a TODO marker in the tests that would fail on 5.6.2.
0.82 Wed Mar 11 17:17:00 CET 2009
- Bring test code in line with core perl.
Pkgsrc changes:
o Canonicalize the HOMEPAGE url
Upstream changes:
0.80 Fri Oct 24 12:06:00 CEST 2008
- CPAN release of the Attribute::Handlers version in bleadperl.
0.79
- The version released with Perl 5.10.0
- All interpreted attributes are now passed as array references,
eventually nested.
- Don't AUTOLOAD DESTROY (Jerry D Hedden, cpan bug #1911)
- A::H is now able to report caller's file and line number
(David Feldman)
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=...").
developer is officially maintaining the package.
The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list). Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
module directory has changed (eg. "darwin-2level" vs.
"darwin-thread-multi-2level").
binary packages of perl modules need to be distinguishable between
being built against threaded perl and unthreaded perl, so bump the
PKGREVISION of all perl module packages and introduce
BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct
dependencies are registered and the binary packages are distinct.
addresses PR pkg/28619 from H. Todd Fujinaka.
- [#17940] Includes :unique and :shared in the builtin types
- From perl 5.8 { __CALLER__::foo => __PACKAGE } is missparsed,
the proper approach is to use { '__CALLER__::foo' => __PACKAGE }.
The documentation is updated to reflect this.
Reported by Dave Cross
- Updated master_sites
Changes :
- Attribute::Handlers now is core.
- Brought up to date with perl 5.8RC1 version
will be 5.8 if no more changes come in
- [#13686] This changes the behaviour of lexical attributes.
Prior to this lexical attributes were done at a compile time,
and they would loose their attribute on the next run over them.
Now perl 5.8 calls the attribute handler runtime whenever it
hits my.
- [#14448] Fixes cases with too high refcounts on lexical attributes
- [#15945] Do not warn about too late CHECK and INIT block if
A::H is pulled in using a require.