pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/p5-Moose pkgsrc changes:
details: https://anonhg.NetBSD.org/pkgsrc/rev/b6e8de4ee789
branches: trunk
changeset: 395220:b6e8de4ee789
user: sno <sno%pkgsrc.org@localhost>
date: Tue Jul 07 18:43:30 2009 +0000
description:
pkgsrc changes:
- Updating package for p5 module Moose from 0.81 to 0.87
- Adjust dependencies according to META.yml
Upstream changes:
0.87 Tue Jul 7, 2009
* Moose::Meta::Method::Delegation
- Once again allow class names as well as objects for
delegation. This was changed in 0.86.
0.86 Fri Jul 3, 2009
* Moose::Meta::Class::Immutable::Trait
- Fixes to work with the latest Class::MOP.
* Moose::Meta::Method::Delegation
- Delegation now dies with a more useful error message if the
attribute's accessor returns something defined but
unblessed. (hdp)
0.85 Fri, Jun 26, 2009
* Moose::Meta::Attribute
- The warning for 'no associated methods' is now split out into
the _check_associated_methods method, so that extensions can
safely call 'after install_accessors => ...'. This fixes a
warning from MooseX::AttributeHelpers. (hdp)
0.84 Fri, Jun 26, 2009
* Moose::Role
- has now sets definition_context for attributes defined in
roles. (doy)
* Moose::Meta::Attribute
- When adding an attribute to a metaclass, if the attribute has
no associated methods, it will give a deprecation
warning. (hdp)
- Methods generated by delegation were not being added to
associated_methods. (hdp)
- Attribute accessors (reader, writer, accessor, predicate,
clearer) now warn if they overwrite an existing method. (doy)
- Attribute constructors now warn very noisily about unknown (or
mispelled) arguments
* Moose::Util::TypeConstraints
- Deprecated the totally useless Role type name, which just
checked if $object->can('does'). Note that this is _not_ the
same as a type created by calling role_type('RoleName').
* Moose::Util::TypeConstraints
* Moose::Meta::TypeConstraint::DuckType
- Reify duck type from a regular subtype into an actual class
(Sartak)
- Document this because Sartak did all my work for me
(perigrin)
* Moose::Meta::Attribute
- Allow Moose::Meta::TypeConstraint::DuckType in handles, since
it is just a list of methods (Sartak)
* Moose::Meta::Role
- The get_*_method_modifiers methods would die if the role had
no modifiers of the given type (Robert Buels).
0.83 Tue, Jun 23, 2009
* Moose::Meta::Class
- Fix _construct_instance not setting the special __MOP__ object
key in instances of anon classes. (doy)
0.82 Sun, Jun 21, 2009
* Moose::Manual::Types
- Mention MooseX::Types early to avoid users falling down the
string parsing rathole (mst)
* Moose::Manual::MooseX
- Add warnings about class-level extensions and mention considering
using plain objects instead
diffstat:
devel/p5-Moose/Makefile | 10 ++++++----
devel/p5-Moose/distinfo | 8 ++++----
2 files changed, 10 insertions(+), 8 deletions(-)
diffs (52 lines):
diff -r 5a46b0a3e0ab -r b6e8de4ee789 devel/p5-Moose/Makefile
--- a/devel/p5-Moose/Makefile Tue Jul 07 18:40:17 2009 +0000
+++ b/devel/p5-Moose/Makefile Tue Jul 07 18:43:30 2009 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.25 2009/06/15 21:16:02 sno Exp $
+# $NetBSD: Makefile,v 1.26 2009/07/07 18:43:30 sno Exp $
#
-DISTNAME= Moose-0.81
+DISTNAME= Moose-0.87
PKGNAME= p5-${DISTNAME}
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Test/}
@@ -11,14 +11,15 @@
COMMENT= Postmodern object system for Perl 5
LICENSE= ${PERL5_LICENSE}
-DEPENDS+= p5-Class-MOP>=0.85:../../devel/p5-Class-MOP
+DEPENDS+= p5-Class-MOP>=0.89:../../devel/p5-Class-MOP
DEPENDS+= p5-Data-OptList-[0-9]*:../../devel/p5-Data-OptList
DEPENDS+= p5-List-MoreUtils>=0.12:../../devel/p5-List-MoreUtils
-DEPENDS+= p5-Sub-Exporter>=0.972:../../devel/p5-Sub-Exporter
+DEPENDS+= p5-Sub-Exporter>=0.980:../../devel/p5-Sub-Exporter
DEPENDS+= p5-Sub-Name-[0-9]*:../../devel/p5-Sub-Name
DEPENDS+= p5-Task-Weaken-[0-9]*:../../devel/p5-Task-Weaken
BUILD_DEPENDS+= p5-DBM-Deep-[0-9]*:../../databases/p5-DBM-Deep
+BUILD_DEPENDS+= p5-DateTime-Calendar-Mayan-[0-9]*:../../time/p5-DateTime-Calendar-Mayan
BUILD_DEPENDS+= p5-DateTime-Format-MySQL-[0-9]*:../../time/p5-DateTime-Format-MySQL
BUILD_DEPENDS+= p5-Declare-Constraints-Simple-[0-9]*:../../devel/p5-Declare-Constraints-Simple
BUILD_DEPENDS+= p5-IO-String-[0-9]*:../../devel/p5-IO-String
@@ -31,6 +32,7 @@
BUILD_DEPENDS+= p5-Test-Output-[0-9]*:../../devel/p5-Test-Output
BUILD_DEPENDS+= p5-Test-Pod-Coverage-[0-9]*:../../devel/p5-Test-Pod-Coverage
BUILD_DEPENDS+= p5-Test-Pod-[0-9]*:../../devel/p5-Test-Pod
+BUILD_DEPENDS+= p5-Test-Simple>=0.77:../../devel/p5-Test-Simple
BUILD_DEPENDS+= p5-Test-Warn-[0-9]*:../../devel/p5-Test-Warn
BUILD_DEPENDS+= p5-URI-[0-9]*:../../www/p5-URI
BUILD_DEPENDS+= p5-libwww-[0-9]*:../../www/p5-libwww
diff -r 5a46b0a3e0ab -r b6e8de4ee789 devel/p5-Moose/distinfo
--- a/devel/p5-Moose/distinfo Tue Jul 07 18:40:17 2009 +0000
+++ b/devel/p5-Moose/distinfo Tue Jul 07 18:43:30 2009 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.23 2009/06/15 21:16:02 sno Exp $
+$NetBSD: distinfo,v 1.24 2009/07/07 18:43:30 sno Exp $
-SHA1 (Moose-0.81.tar.gz) = bcc43708ed85de58c1a38c80049d587f74449ffa
-RMD160 (Moose-0.81.tar.gz) = 6b354569df1e8a39c469133b66f9ff48ac348b66
-Size (Moose-0.81.tar.gz) = 322128 bytes
+SHA1 (Moose-0.87.tar.gz) = abf7c5a65029820df2c2cf55587d22792a8a1591
+RMD160 (Moose-0.87.tar.gz) = d8f6c30589b44e3d5cace642bd33b4657ed891a7
+Size (Moose-0.87.tar.gz) = 329309 bytes
Home |
Main Index |
Thread Index |
Old Index