Thu Feb 26 22:26:31 2009 UTC ()
Update from version 0.70 to version 0.72.

Upstream changes:
0.72 Mon, February 23, 2009
    * Moose::Object
    * Moose::Meta::Method::Constructor
      - A mutable class accepted Foo->new(undef) without complaint,
        while an immutable class would blow up with an unhelpful
        error. Now, in both cases we throw a helpful error
        instead. Reported by doy.

0.71_01 Sun, February 22, 2009
    * Moose::Cookbook
      - Hopefully fixed some POD errors in a few recipes that caused
        them to display weird on search.cpan.org.

    * Moose::Util::TypeConstraints
      - Calling type or subtype without the sugar helpers (as, where,
        message) is now deprecated.
      - The subtype function tried hard to guess what you meant, but
        often got it wrong. For example:

         my $subtype = subtype as 'ArrayRef[Object]';

        This caused an error in the past, but now works as you'd
        expect.

    * Everywhere
      - Make sure Moose.pm is loaded before calling
        Moose->throw_error. This wasn't normally an issue, but could
        bite you in weird cases.

0.71 Thu, February 19, 2009
    * Moose::Cookbook::Basics::Recipe11
      - A new recipe which demonstrates the use of BUILDARGS and
        BUILD. (Dave Rolsky)

    * Moose::Cookbook::Roles::Recipe3
      - A new recipe, applying a role to an object instance. (Dave
        Rolsky)

    * Moose::Exporter
      - Allow overriding specific keywords from "also" packages. (doy)

    * Tests
      - Replace hardcoded cookbook tests with Test::Inline POD
        to ensure they don't get out of sync. (Dave Rolsky)

    * Moose::Cookbook
      - Working on the above turned up a number of little bugs in the
        recipe code. (Dave Rolsky)

    * Moose::Util::TypeConstraints::Optimized
      - Just use Class::MOP for the optimized ClassName check. (Dave
        Rolsky)


(seb)
diff -r1.16 -r1.17 pkgsrc/devel/p5-Moose/Makefile
diff -r1.14 -r1.15 pkgsrc/devel/p5-Moose/distinfo

cvs diff -r1.16 -r1.17 pkgsrc/devel/p5-Moose/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/p5-Moose/Makefile 2009/02/15 08:39:37 1.16
+++ pkgsrc/devel/p5-Moose/Makefile 2009/02/26 22:26:31 1.17
@@ -1,26 +1,26 @@ @@ -1,26 +1,26 @@
1# $NetBSD: Makefile,v 1.16 2009/02/15 08:39:37 seb Exp $ 1# $NetBSD: Makefile,v 1.17 2009/02/26 22:26:31 seb Exp $
2# 2#
3 3
4DISTNAME= Moose-0.70 4DISTNAME= Moose-0.72
5PKGNAME= p5-${DISTNAME} 5PKGNAME= p5-${DISTNAME}
6CATEGORIES= devel perl5 6CATEGORIES= devel perl5
7MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Test/} 7MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Test/}
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://moose.perl.org/ 10HOMEPAGE= http://moose.perl.org/
11COMMENT= Postmodern object system for Perl 5 11COMMENT= Postmodern object system for Perl 5
12 12
13DEPENDS+= p5-Class-MOP>=0.77:../../devel/p5-Class-MOP 13DEPENDS+= p5-Class-MOP>=0.78:../../devel/p5-Class-MOP
14DEPENDS+= p5-List-MoreUtils>=0.12:../../devel/p5-List-MoreUtils 14DEPENDS+= p5-List-MoreUtils>=0.12:../../devel/p5-List-MoreUtils
15DEPENDS+= p5-Sub-Exporter>=0.972:../../devel/p5-Sub-Exporter 15DEPENDS+= p5-Sub-Exporter>=0.972:../../devel/p5-Sub-Exporter
16DEPENDS+= p5-Task-Weaken-[0-9]*:../../devel/p5-Task-Weaken 16DEPENDS+= p5-Task-Weaken-[0-9]*:../../devel/p5-Task-Weaken
17 17
18BUILD_DEPENDS+= p5-DBM-Deep-[0-9]*:../../databases/p5-DBM-Deep 18BUILD_DEPENDS+= p5-DBM-Deep-[0-9]*:../../databases/p5-DBM-Deep
19BUILD_DEPENDS+= p5-DateTime-Format-MySQL-[0-9]*:../../time/p5-DateTime-Format-MySQL 19BUILD_DEPENDS+= p5-DateTime-Format-MySQL-[0-9]*:../../time/p5-DateTime-Format-MySQL
20BUILD_DEPENDS+= p5-Declare-Constraints-Simple-[0-9]*:../../devel/p5-Declare-Constraints-Simple 20BUILD_DEPENDS+= p5-Declare-Constraints-Simple-[0-9]*:../../devel/p5-Declare-Constraints-Simple
21BUILD_DEPENDS+= p5-IO-String-[0-9]*:../../devel/p5-IO-String 21BUILD_DEPENDS+= p5-IO-String-[0-9]*:../../devel/p5-IO-String
22BUILD_DEPENDS+= p5-Locale-US-[0-9]*:../../misc/p5-Locale-US 22BUILD_DEPENDS+= p5-Locale-US-[0-9]*:../../misc/p5-Locale-US
23BUILD_DEPENDS+= p5-Module-Refresh-[0-9]*:../../devel/p5-Module-Refresh 23BUILD_DEPENDS+= p5-Module-Refresh-[0-9]*:../../devel/p5-Module-Refresh
24BUILD_DEPENDS+= p5-Params-Coerce-[0-9]*:../../devel/p5-Params-Coerce 24BUILD_DEPENDS+= p5-Params-Coerce-[0-9]*:../../devel/p5-Params-Coerce
25BUILD_DEPENDS+= p5-Regexp-Common-[0-9]*:../../textproc/p5-Regexp-Common 25BUILD_DEPENDS+= p5-Regexp-Common-[0-9]*:../../textproc/p5-Regexp-Common
26BUILD_DEPENDS+= p5-Test-Deep-[0-9]*:../../devel/p5-Test-Deep 26BUILD_DEPENDS+= p5-Test-Deep-[0-9]*:../../devel/p5-Test-Deep

cvs diff -r1.14 -r1.15 pkgsrc/devel/p5-Moose/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/p5-Moose/distinfo 2009/02/15 08:39:37 1.14
+++ pkgsrc/devel/p5-Moose/distinfo 2009/02/26 22:26:31 1.15
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.14 2009/02/15 08:39:37 seb Exp $ 1$NetBSD: distinfo,v 1.15 2009/02/26 22:26:31 seb Exp $
2 2
3SHA1 (Moose-0.70.tar.gz) = cde65f669ab1ff210985de4267eaf143aa5d4803 3SHA1 (Moose-0.72.tar.gz) = d0a756bb45c981e01e5e0df417a9399336732882
4RMD160 (Moose-0.70.tar.gz) = 18cbd073345e47f8133005038599d3a872a55b89 4RMD160 (Moose-0.72.tar.gz) = 365e852294e8a9bd0f4c665307911bd8e3dbc552
5Size (Moose-0.70.tar.gz) = 284263 bytes 5Size (Moose-0.72.tar.gz) = 295230 bytes