Wed Jul 18 08:04:49 2012 UTC ()
Updating package for Perl 5 module Moo in devel/p5-Moo from 0.009012 to
0.091014.

pkgsrc changes:
- add newly introduced dependencies

upstream changes:
0.091014 - 2012-07-16
  - load overload.pm explicitly for overload::StrVal

0.091013 - 2012-07-15
  - useful and detailed errors for coerce in attrib generation

0.091012 - 2012-07-15
  - useful and detailed errors for default checker in attrib generation
  - throw an error when trying to extend a role

0.091011 - 2012-06-27
  - re-add #web-simple as development IRC
  - don't assume Scalar::Util is imported into the current package

0.091010 - 2012-06-26
  - isa checks on builders
  - additional quote_sub docs
  - remove multi-populate code to fix exists/defined new() bug
  - document move to #moose and include repository metadata
  - no Moo and no Moo::Role
  - squelch used only once warnings for $Moo::HandleMoose::MOUSE
  - MooClass->meta
  - subconstructor handling for Moose classes

0.091009 - 2012-06-20
  - squelch redefine warnings in the coderef installation code

0.091008 - 2012-06-19
  - bump Role::Tiny dependency to get working modifiers under composition
  - handle "has '+foo'" for attrs from superclass or consumed role
  - document override -> around translation
  - use D::GD if installed rather than re-adding it as a requirement

0.091007 - 2012-05-17
  - remove stray reference to Devel::GlobalDestruction

0.091006 - 2012-05-16
  - drop a couple of dependencies by minor releases we don't strictly need

0.091005 - 2012-05-14
  - temporary switch to an inlined in_global_destruction to avoid needing
    to fatpack Sub::Exporter for features we don't use
  - re-order is documentation to give readonly styles more prominence
  - a weakened value should still be returned on set (fixes lazy + weak_ref)
  - add an explicit return to all exported subs so people don't accidentally
    rely on the return value

0.091004 - 2012-05-07
  - also inhale from Mouse
  - clarify how isa and coerce interact
  - support isa and coerce together for Moose
  - guard _accessor_maker_for calls in Moo::Role in case Moo isn't loaded
  - reset handlemoose state on mutation in case somebody reified the
    metaclass too early

0.091003 - 2012-05-06
  - improve attribute option documentation
  - update the incompatibilities section since we're less incompatible now
  - fix coderef naming to avoid confusing autoclean

0.091002 - 2012-05-05
  - exclude union roles and same-role-as-self from metaclass inflation
  - inhale Moose roles before checking for composition conflicts
  - enable Moo::sification if only Moo::Role is loaded and not Moo
  - preserve attribute ordering
  - factor out accessor generation code a bit more to enable extension

0.091001 - 2012-05-02
  - bump Role::Tiny dependency to require de-strictures-ed version
  - fix test failure where Class::XSAccessor is not available

0.091000 - 2012-04-27
  - document MX::AttributeShortcuts 009+ support
  - documentation for the metaclass inflation code
  - better error message for broken BUILDARGS
  - provide 'no Moo::sification' to forcibly disable metaclass inflation
  - switch to Devel::GlobalDestruction to correctly disarm the
    Moo::sification trigger under threads
  - make extends after has work
  - name subs if Sub::Name is available for better stracktraces
  - undefer all subs before creating a concrete Moose metaclass
  - fix bug in _load_module where global vars could cause mis-detection
    of the module already being loaded

0.009_017 - 2012-04-16
  - mangle constructor meta-method on inflation so make_immutable works
  - fix possible infinite loop caused by subconstructor code

0.009_016 - 2012-04-12
  - don't accidentally load Moo::HandleMoose during global destruction
  - better docs for trigger (and initializer's absence)

0.009_015 - 2012-04-11
  - Complete support for MooseX::AttributeShortcuts 0.009
  - Allow Moo classes to compose Moose roles
  - Introduce Moo::HandleMoose, which should allow Moo classes and roles
    to be treated as Moose classes/roles. Supported so far:
    - Some level of attributes and methods for both classes and roles
    - Required methods in roles
    - Method modifiers in roles (they're already applied in classes)
    - Type constraints


(sno)
diff -r1.1.1.1 -r1.2 pkgsrc/devel/p5-Moo/Makefile
diff -r1.1.1.1 -r1.2 pkgsrc/devel/p5-Moo/distinfo

cvs diff -r1.1.1.1 -r1.2 pkgsrc/devel/p5-Moo/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/p5-Moo/Makefile 2011/11/21 14:35:51 1.1.1.1
+++ pkgsrc/devel/p5-Moo/Makefile 2012/07/18 08:04:49 1.2
@@ -1,21 +1,23 @@ @@ -1,21 +1,23 @@
1# $NetBSD: Makefile,v 1.1.1.1 2011/11/21 14:35:51 hiramatsu Exp $ 1# $NetBSD: Makefile,v 1.2 2012/07/18 08:04:49 sno Exp $
2 2
3DISTNAME= Moo-0.009012 3DISTNAME= Moo-0.091014
4PKGNAME= p5-${DISTNAME} 4PKGNAME= p5-${DISTNAME}
5CATEGORIES= devel perl5 5CATEGORIES= devel perl5
6MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../../authors/id/M/MS/MSTROUT/} 6MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../../authors/id/M/MS/MSTROUT/}
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= http://search.cpan.org/dist/Moo/ 9HOMEPAGE= http://search.cpan.org/dist/Moo/
10COMMENT= Minimalist Object Orientation (with Moose compatiblity) 10COMMENT= Minimalist Object Orientation (with Moose compatiblity)
11LICENSE= ${PERL5_LICENSE} 11LICENSE= ${PERL5_LICENSE}
12 12
13DEPENDS+= p5-Class-Method-Modifiers>=1.05:../../devel/p5-Class-Method-Modifiers 13DEPENDS+= p5-Class-Method-Modifiers>=1.05:../../devel/p5-Class-Method-Modifiers
 14DEPENDS+= p5-Module-Runtime>=0.012:../../devel/p5-Module-Runtime
 15DEPENDS+= p5-Role-Tiny>=1.001003:../../devel/p5-Role-Tiny
14DEPENDS+= p5-strictures>=1.001001:../../devel/p5-strictures 16DEPENDS+= p5-strictures>=1.001001:../../devel/p5-strictures
15 17
16PKG_DESTDIR_SUPPORT= user-destdir 18PKG_DESTDIR_SUPPORT= user-destdir
17 19
18PERL5_PACKLIST= auto/Moo/.packlist 20PERL5_PACKLIST= auto/Moo/.packlist
19 21
20.include "../../lang/perl5/module.mk" 22.include "../../lang/perl5/module.mk"
21.include "../../mk/bsd.pkg.mk" 23.include "../../mk/bsd.pkg.mk"

cvs diff -r1.1.1.1 -r1.2 pkgsrc/devel/p5-Moo/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/p5-Moo/distinfo 2011/11/21 14:35:51 1.1.1.1
+++ pkgsrc/devel/p5-Moo/distinfo 2012/07/18 08:04:49 1.2
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.1.1.1 2011/11/21 14:35:51 hiramatsu Exp $ 1$NetBSD: distinfo,v 1.2 2012/07/18 08:04:49 sno Exp $
2 2
3SHA1 (Moo-0.009012.tar.gz) = 7277d89247612214b6ede5b2b2dbaabb2322dbb5 3SHA1 (Moo-0.091014.tar.gz) = faaa662aad164518ab930e10b1404c155cc42cd8
4RMD160 (Moo-0.009012.tar.gz) = 36f17255be20160bd0f82e63d2a6e876f79da4c7 4RMD160 (Moo-0.091014.tar.gz) = 98e3507f0f3207c561737fd83784d0e8b9f36a25
5Size (Moo-0.009012.tar.gz) = 34068 bytes 5Size (Moo-0.091014.tar.gz) = 50135 bytes