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.
Upstream changes:
0.19 2012-01-17
- The 0.17 release broke compatibility with pre-2.0 versions of Moose.
0.18 2012-01-10
- A small internal tweak which prevents the MooseX::ClassCompositor tests from
failing.
0.17 2012-01-04
- Added a small optimization for an immutable constructor when used with Moose
2.00+. The list of valid attributes is only generated once, rather than each
time the constructor is run. Reported by Chip Salzenberg. RT #73664.
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.
Changes from previous:
0.16 2011-04-22
- Don't wrap BUILDALL, since this breaks if the object doesn't inherit from
Moose::Object (doy).
0.15 2011-04-13
- The fix in 0.14 only worked with Moose 2.0, causing failures with earlier
versions.
0.14 2011-04-13
- Using extends caused strictness to be lost. Fixed by Karen Etheridge.
0.13 2011-02-22
- This release provides forward compatibility with Moose 1.99+. It will still
work with Moose 1.23 as well. Most of the work was done by Jesse Luehrs.
0.12 2010-10-29
- Switched tests to use Test::Fatal instead of Test::Exception.
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:
- adjust dependencies
- adjust license
- (re)set PERL5_MODULE_TYPE to MakeMaker
Upstream changes:
0.10 2010-07-16
- Ignore __INSTANCE__ when passed to the constructor. Patch by Jesse
Luehrs. RT #59236.
- All init args are quoted in the inlined constructor.
0.09 2010-07-14
- Use modern Moose APIs, to avoid warnings with the next Moose release.
- Updating package for p5 module MooseX::StrictConstructor to 0.08
- Set license to artistic-2.0
Upstream changes:
0.08 2009-04-07
- Make this module work with Moose 0.73_01+.
Simply loading this module makes your constructors "strict". If
your constructor is called with an attribute init argument that
your class does not declare, then it calls "Carp::confess()". This
is a great way to catch small typos.