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!
- Updating package for p5 module Class::Method::Modifiers from 1.01
to 1.04
- Setting license to ${PERL5_LICENSE} and adjust dependencies
according to META.yml
Upstream changes:
1.04 Mon Jun 15 11:33:31 2009
We need parens around confess if we're going to delay-load
Carp, affects only 5.10 (reported by David Raab)
1.03 Sun Jun 14 14:44:25 2009
Modernize the dist
Fix possible test failures
Only load Carp if we have to
1.02 Sun May 31 23:33:42 2009
Fix for void context (reported by tokuhirom)
Lift dependency on on MRO::Compat
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=...").
This package provides Moose-like method modifiers.
Method modifiers are a powerful feature from the CLOS (Common Lisp
Object System) world.
In its most basic form, a method modifier is just a method that
calls $self->SUPER::foo(@_). I for one have trouble remembering
that exact invocation, so my classes seldom re-dispatch to their
base classes. Very bad!
Class::Method::Modifiers provides three modifiers: before, around,
and after. before and after are run just before and after the method
they modify, but can not really affect that original method. around
is run in place of the original method, with a hook to easily call
that original method. See the MODIFIERS section for more details
on how the particular modifiers work.