r43967 - in /branches/upstream/libmoosex-types-perl/current: Changes META.yml README lib/MooseX/Types.pm lib/MooseX/Types/CheckedUtilExports.pm

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Sat Sep 12 07:54:05 UTC 2009


Author: carnil-guest
Date: Sat Sep 12 07:53:59 2009
New Revision: 43967

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=43967
Log:
[svn-upgrade] Integrating new upstream version, libmoosex-types-perl (0.20)

Modified:
    branches/upstream/libmoosex-types-perl/current/Changes
    branches/upstream/libmoosex-types-perl/current/META.yml
    branches/upstream/libmoosex-types-perl/current/README
    branches/upstream/libmoosex-types-perl/current/lib/MooseX/Types.pm
    branches/upstream/libmoosex-types-perl/current/lib/MooseX/Types/CheckedUtilExports.pm

Modified: branches/upstream/libmoosex-types-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmoosex-types-perl/current/Changes?rev=43967&op=diff
==============================================================================
--- branches/upstream/libmoosex-types-perl/current/Changes (original)
+++ branches/upstream/libmoosex-types-perl/current/Changes Sat Sep 12 07:53:59 2009
@@ -1,4 +1,7 @@
 Revision history for MooseX-Types
+
+0.20    Thu Sep 10 22:34:48 EDT 2009
+        - fix "empty export" warning (doy).
 
 0.19    Sun Aug 23 15:03:02 EDT 2009
         - un-fix coercions on parameterized types, since it broke

Modified: branches/upstream/libmoosex-types-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmoosex-types-perl/current/META.yml?rev=43967&op=diff
==============================================================================
--- branches/upstream/libmoosex-types-perl/current/META.yml (original)
+++ branches/upstream/libmoosex-types-perl/current/META.yml Sat Sep 12 07:53:59 2009
@@ -24,7 +24,7 @@
 provides:
   MooseX::Types:
     file: lib/MooseX/Types.pm
-    version: 0.19
+    version: 0.20
   MooseX::Types::Base:
     file: lib/MooseX/Types/Base.pm
   MooseX::Types::CheckedUtilExports:
@@ -52,4 +52,4 @@
   perl: 5.8.0
 resources:
   license: http://dev.perl.org/licenses/
-version: 0.19
+version: 0.20

Modified: branches/upstream/libmoosex-types-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmoosex-types-perl/current/README?rev=43967&op=diff
==============================================================================
--- branches/upstream/libmoosex-types-perl/current/README (original)
+++ branches/upstream/libmoosex-types-perl/current/README Sat Sep 12 07:53:59 2009
@@ -380,7 +380,7 @@
     hdp: Hans Dieter Pearcey <hdp at cpan.org>
 
 COPYRIGHT & LICENSE
-    Copyright (c) 2007-2009 Robert Sedlacek
+    Copyright (c) 2007-2009 Robert Sedlacek <rs at 474.at>
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as perl itself.

Modified: branches/upstream/libmoosex-types-perl/current/lib/MooseX/Types.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmoosex-types-perl/current/lib/MooseX/Types.pm?rev=43967&op=diff
==============================================================================
--- branches/upstream/libmoosex-types-perl/current/lib/MooseX/Types.pm (original)
+++ branches/upstream/libmoosex-types-perl/current/lib/MooseX/Types.pm Sat Sep 12 07:53:59 2009
@@ -20,7 +20,7 @@
 use namespace::clean -except => [qw( meta )];
 
 use 5.008;
-our $VERSION = '0.19';
+our $VERSION = '0.20';
 my $UndefMsg = q{Action for type '%s' not yet defined in library '%s'};
 
 =head1 SYNOPSIS
@@ -599,7 +599,7 @@
 
 =head1 COPYRIGHT & LICENSE
 
-Copyright (c) 2007-2009 Robert Sedlacek
+Copyright (c) 2007-2009 Robert Sedlacek <rs at 474.at>
 
 This program is free software; you can redistribute it and/or modify
 it under the same terms as perl itself.

Modified: branches/upstream/libmoosex-types-perl/current/lib/MooseX/Types/CheckedUtilExports.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmoosex-types-perl/current/lib/MooseX/Types/CheckedUtilExports.pm?rev=43967&op=diff
==============================================================================
--- branches/upstream/libmoosex-types-perl/current/lib/MooseX/Types/CheckedUtilExports.pm (original)
+++ branches/upstream/libmoosex-types-perl/current/lib/MooseX/Types/CheckedUtilExports.pm Sat Sep 12 07:53:59 2009
@@ -45,10 +45,6 @@
 
 =cut
 
-Moose::Exporter->setup_import_methods(
-    with_caller => [ @exports, 'class_type', 'role_type' ]
-);
-
 for my $export (@exports) {
     no strict 'refs';
 
@@ -66,6 +62,10 @@
         goto &{"Moose::Util::TypeConstraints::$export"};
     }
 }
+
+Moose::Exporter->setup_import_methods(
+    with_caller => [ @exports, 'class_type', 'role_type' ]
+);
 
 sub class_type {
     my $caller = shift;




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