Changes from previous:
----------------------
0.13 Wed, 24 Aug 2010 09:33:00 +0000
* Fix issue in dist.ini which was causing links to be incorrectly generated.
* Re-package to remove BEGIN { $VERSION hackery by using a newer
Dist-Zilla.
0.12 Fri, 04 Feb 2010 10:39:00 +0000
* Bump namespace::clean dep to 0.20 to pull in the bugfix for
Package::Stash::XS 0.19
pkgsrc change: handle p5-Class-MOP now being part of p5-Moose
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.09 Tue, 15 Sep 2009 07:45:16 +0200
* Fix to avoid deprecation warnings from the latest Class::MOP, but
it still works with older versions too. (Dave Rolsky)
* Fix a documentation typo (Jonathan Yu).
of imported devel/p5-MooseX-Traits-Pluggable.
When you import a function into a Perl package, it will naturally also be
available as a method.
The namespace::autoclean pragma will remove all imported symbols at the end
of the current package's compile cycle. Functions called in the package
itself will still be bound by their name, but they won't show up as methods
on your class or instances.
This module is very similar to namespace::clean, except it will clean all
imported functions, no matter if you imported them before or after you used
the pagma. It will also not touch anything that looks like a method,
according to Class::MOP::Class::get_method_list.