r44301 - in /trunk/libmoosex-method-signatures-perl: Changes META.yml Makefile.PL README debian/changelog lib/MooseX/Method/Signatures.pm t/errors.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat Sep 19 14:57:01 UTC 2009


Author: jawnsy-guest
Date: Sat Sep 19 14:56:47 2009
New Revision: 44301

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=44301
Log:
This version has no changes that affect Debian
IGNORE-VERSION: 0.26-1
* New upstream release

Modified:
    trunk/libmoosex-method-signatures-perl/Changes
    trunk/libmoosex-method-signatures-perl/META.yml
    trunk/libmoosex-method-signatures-perl/Makefile.PL
    trunk/libmoosex-method-signatures-perl/README
    trunk/libmoosex-method-signatures-perl/debian/changelog
    trunk/libmoosex-method-signatures-perl/lib/MooseX/Method/Signatures.pm
    trunk/libmoosex-method-signatures-perl/t/errors.t

Modified: trunk/libmoosex-method-signatures-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoosex-method-signatures-perl/Changes?rev=44301&op=diff
==============================================================================
--- trunk/libmoosex-method-signatures-perl/Changes (original)
+++ trunk/libmoosex-method-signatures-perl/Changes Sat Sep 19 14:56:47 2009
@@ -1,4 +1,11 @@
 Version history for MooseX::Method::Signatures
+
+0.26  Tue, 08 Sep 2009 19:14:01 +0100
+  * Rebuilt dist to include missing files
+
+0.25  Mon, 07 Sep 2009 22:003:03 +0100
+  * Remove scary ALPHA disclaimer from POD
+  * Depend on Test::More 0.88 for done_testing
 
 0.24  Mon, 31 Aug 2009 19:04:14 +0200
   * Rename the meta method's clone method to reify. clone already had a special

Modified: trunk/libmoosex-method-signatures-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoosex-method-signatures-perl/META.yml?rev=44301&op=diff
==============================================================================
--- trunk/libmoosex-method-signatures-perl/META.yml (original)
+++ trunk/libmoosex-method-signatures-perl/META.yml Sat Sep 19 14:56:47 2009
@@ -5,10 +5,11 @@
 build_requires:
   ExtUtils::MakeMaker: 6.42
   Test::Exception: 0
+  Test::More: 0.88
 configure_requires:
   ExtUtils::MakeMaker: 6.42
 distribution_type: module
-generated_by: 'Module::Install version 0.91'
+generated_by: 'Module::Install version 0.910'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -40,4 +41,4 @@
   bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-Method-Signatures
   license: http://dev.perl.org/licenses/
   repository: git://github.com/rafl/moosex-method-signatures.git
-version: 0.24
+version: 0.26

Modified: trunk/libmoosex-method-signatures-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoosex-method-signatures-perl/Makefile.PL?rev=44301&op=diff
==============================================================================
--- trunk/libmoosex-method-signatures-perl/Makefile.PL (original)
+++ trunk/libmoosex-method-signatures-perl/Makefile.PL Sat Sep 19 14:56:47 2009
@@ -23,6 +23,7 @@
 requires 'Text::Balanced';
 
 test_requires 'Test::Exception';
+test_requires 'Test::More' => 0.88;
 
 repository 'git://github.com/rafl/moosex-method-signatures.git';
 bugtracker 'http://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-Method-Signatures';

Modified: trunk/libmoosex-method-signatures-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoosex-method-signatures-perl/README?rev=44301&op=diff
==============================================================================
--- trunk/libmoosex-method-signatures-perl/README (original)
+++ trunk/libmoosex-method-signatures-perl/README Sat Sep 19 14:56:47 2009
@@ -39,9 +39,6 @@
 
         $foo->greet;                                    # Will fail.
 
-DISCLAIMER
-    This is ALPHA SOFTWARE. Use at your own risk. Features may change.
-
 DESCRIPTION
     Provides a proper method keyword, like "sub" but specifically for making
     methods and validating their arguments against Moose type constraints.
@@ -106,6 +103,10 @@
         #      to be even and greater than 10
 
 BUGS, CAVEATS AND NOTES
+    This module is as stable now, but this is not to say that it is entirely
+    bug free. If you notice any odd behaviour (messages not being as good as
+    they could for example) then please raise a bug.
+
   Fancy signatures
     Parse::Method::Signatures is used to parse the signatures. However, some
     signatures that can be parsed by it aren't supported by this module
@@ -228,6 +229,8 @@
     role.
 
 SEE ALSO
+    MooseX::Declare
+
     Method::Signatures::Simple
 
     Method::Signatures

Modified: trunk/libmoosex-method-signatures-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoosex-method-signatures-perl/debian/changelog?rev=44301&op=diff
==============================================================================
--- trunk/libmoosex-method-signatures-perl/debian/changelog (original)
+++ trunk/libmoosex-method-signatures-perl/debian/changelog Sat Sep 19 14:56:47 2009
@@ -1,3 +1,12 @@
+libmoosex-method-signatures-perl (0.26-1) UNRELEASED; urgency=low
+
+  This version has no changes that affect Debian
+  IGNORE-VERSION: 0.26-1
+
+  * New upstream release
+
+ -- Jonathan Yu <jawnsy at cpan.org>  Sat, 19 Sep 2009 06:07:57 -0400
+
 libmoosex-method-signatures-perl (0.24-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/libmoosex-method-signatures-perl/lib/MooseX/Method/Signatures.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoosex-method-signatures-perl/lib/MooseX/Method/Signatures.pm?rev=44301&op=diff
==============================================================================
--- trunk/libmoosex-method-signatures-perl/lib/MooseX/Method/Signatures.pm (original)
+++ trunk/libmoosex-method-signatures-perl/lib/MooseX/Method/Signatures.pm Sat Sep 19 14:56:47 2009
@@ -19,7 +19,7 @@
 
 use namespace::autoclean;
 
-our $VERSION = '0.24';
+our $VERSION = '0.26';
 
 has package => (
     is            => 'ro',
@@ -347,10 +347,6 @@
 
     $foo->greet;                                    # Will fail.
 
-=head1 DISCLAIMER
-
-This is B<ALPHA SOFTWARE>. Use at your own risk. Features may change.
-
 =head1 DESCRIPTION
 
 Provides a proper method keyword, like "sub" but specifically for making methods
@@ -427,6 +423,10 @@
     #      to be even and greater than 10
 
 =head1 BUGS, CAVEATS AND NOTES
+
+This module is as stable now, but this is not to say that it is entirely bug
+free. If you notice any odd behaviour (messages not being as good as they could
+for example) then please raise a bug.
 
 =head2 Fancy signatures
 
@@ -561,6 +561,8 @@
 
 =head1 SEE ALSO
 
+L<MooseX::Declare>
+
 L<Method::Signatures::Simple>
 
 L<Method::Signatures>

Modified: trunk/libmoosex-method-signatures-perl/t/errors.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmoosex-method-signatures-perl/t/errors.t?rev=44301&op=diff
==============================================================================
--- trunk/libmoosex-method-signatures-perl/t/errors.t (original)
+++ trunk/libmoosex-method-signatures-perl/t/errors.t Sat Sep 19 14:56:47 2009
@@ -1,6 +1,6 @@
 use strict;
 use warnings;
-use Test::More tests => 6;
+use Test::More;
 use Test::Exception;
 
 use FindBin;
@@ -13,13 +13,6 @@
      "Sane error message for syntax error");
 
 
-eval "use InvalidCase02;";
-ok($@, "Got an error");
-like($@, 
-     qr/'SomeRandomTCThatDoesntExist' could not be parsed to a type constraint .*? at .*?\bInvalidCase02.pm line 5$/m,
-     "Sane error message for invalid TC");
-
-
 {
   my $warnings = "";
   local $SIG{__WARN__} = sub { $warnings .= $_[0] };
@@ -29,3 +22,5 @@
   like($warnings, qr/^Method meth1 redefined on package main at .*?\bRedefined.pm line 9$/,
        "Redefined method warning");
 }
+
+done_testing;




More information about the Pkg-perl-cvs-commits mailing list