[SCM] Debian packaging of libmoosex-types-perl branch, master, updated. upstream/0.28-67-gd9c6206

Alessandro Ghedini al3xbio at gmail.com
Mon Aug 22 12:46:07 UTC 2011


The following commit has been merged in the master branch:
commit c6a787545af6633b05a93a77cb667dc406579c7a
Author: Alessandro Ghedini <al3xbio at gmail.com>
Date:   Mon Aug 22 12:12:16 2011 +0200

    Imported Upstream version 0.29

diff --git a/Changes b/Changes
index af129ae..84b940e 100644
--- a/Changes
+++ b/Changes
@@ -1,7 +1,10 @@
 Revision history for MooseX-Types
 
-0.28    2011-08-02
+0.29    2011-08-20
+        - Require namespace::clean 0.19. Tests fail with 0.18. Reported by
+          Ruslan Zakirov. RT #67923.
 
+0.28    2011-08-02
         - Fixed git and bug tracking info in META.{yml,json}. Reported by
           Petter Rabbitson. (Dave Rolsky)
 
@@ -9,7 +12,6 @@ Revision history for MooseX-Types
         - A better fix for type constraint changes in Moose 2.0100. (doy)
 
 0.26    2011-06-05
-
         - Small changes for forward compatibility with Moose 2.0100, when it
           is released. (Dave Rolsky)
         - Some small doc cleanup and improvements. (Dave Rolsky)
diff --git a/META.json b/META.json
index ee51f79..e0d6710 100644
--- a/META.json
+++ b/META.json
@@ -4,7 +4,7 @@
       "Robert \"phaylon\" Sedlacek <rs at 474.at>"
    ],
    "dynamic_config" : 0,
-   "generated_by" : "Dist::Zilla version 4.200012, CPAN::Meta::Converter version 2.110930",
+   "generated_by" : "Dist::Zilla version 4.300000, CPAN::Meta::Converter version 2.110930",
    "license" : [
       "perl_5"
    ],
@@ -36,7 +36,7 @@
             "Scalar::Util" : "1.19",
             "Sub::Install" : "0.924",
             "Sub::Name" : 0,
-            "namespace::clean" : "0.08",
+            "namespace::clean" : "0.19",
             "perl" : "v5.8.0"
          }
       }
@@ -53,6 +53,6 @@
          "web" : "http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo/MooseX-Types.git;a=summary"
       }
    },
-   "version" : "0.28"
+   "version" : "0.29"
 }
 
diff --git a/META.yml b/META.yml
index 9cc7e0d..d671bdb 100644
--- a/META.yml
+++ b/META.yml
@@ -11,7 +11,7 @@ build_requires:
 configure_requires:
   ExtUtils::MakeMaker: 6.30
 dynamic_config: 0
-generated_by: 'Dist::Zilla version 4.200012, CPAN::Meta::Converter version 2.110930'
+generated_by: 'Dist::Zilla version 4.300000, CPAN::Meta::Converter version 2.110930'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -24,9 +24,9 @@ requires:
   Scalar::Util: 1.19
   Sub::Install: 0.924
   Sub::Name: 0
-  namespace::clean: 0.08
+  namespace::clean: 0.19
   perl: v5.8.0
 resources:
   bugtracker: http://rt.cpan.org/NoAuth/Bugs.html?Dist=MooseX-Types
   repository: git://git.moose.perl.org/MooseX-Types.git
-version: 0.28
+version: 0.29
diff --git a/Makefile.PL b/Makefile.PL
index 4222895..541f447 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -9,34 +9,34 @@ use ExtUtils::MakeMaker 6.30;
 
 
 my %WriteMakefileArgs = (
-  'ABSTRACT' => 'Organise your Moose types in libraries',
-  'AUTHOR' => 'Robert "phaylon" Sedlacek <rs at 474.at>',
-  'BUILD_REQUIRES' => {
-    'FindBin' => '0',
-    'Test::Fatal' => '0',
-    'Test::Moose' => '0',
-    'Test::More' => '0.88',
-    'Test::Requires' => '0'
+  "ABSTRACT" => "Organise your Moose types in libraries",
+  "AUTHOR" => "Robert \"phaylon\" Sedlacek <rs\@474.at>",
+  "BUILD_REQUIRES" => {
+    "FindBin" => 0,
+    "Test::Fatal" => 0,
+    "Test::Moose" => 0,
+    "Test::More" => "0.88",
+    "Test::Requires" => 0
   },
-  'CONFIGURE_REQUIRES' => {
-    'ExtUtils::MakeMaker' => '6.30'
+  "CONFIGURE_REQUIRES" => {
+    "ExtUtils::MakeMaker" => "6.30"
   },
-  'DISTNAME' => 'MooseX-Types',
-  'EXE_FILES' => [],
-  'LICENSE' => 'perl',
-  'NAME' => 'MooseX::Types',
-  'PREREQ_PM' => {
-    'Carp' => '0',
-    'Carp::Clan' => '6.00',
-    'Moose' => '1.06',
-    'Scalar::Util' => '1.19',
-    'Sub::Install' => '0.924',
-    'Sub::Name' => '0',
-    'namespace::clean' => '0.08'
+  "DISTNAME" => "MooseX-Types",
+  "EXE_FILES" => [],
+  "LICENSE" => "perl",
+  "NAME" => "MooseX::Types",
+  "PREREQ_PM" => {
+    "Carp" => 0,
+    "Carp::Clan" => "6.00",
+    "Moose" => "1.06",
+    "Scalar::Util" => "1.19",
+    "Sub::Install" => "0.924",
+    "Sub::Name" => 0,
+    "namespace::clean" => "0.19"
   },
-  'VERSION' => '0.28',
-  'test' => {
-    'TESTS' => 't/*.t t/regressions/*.t'
+  "VERSION" => "0.29",
+  "test" => {
+    "TESTS" => "t/*.t t/regressions/*.t"
   }
 );
 
diff --git a/README b/README
index d91fcbf..54b0d74 100644
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
 
 
 This archive contains the distribution MooseX-Types,
-version 0.28:
+version 0.29:
 
   Organise your Moose types in libraries
 
diff --git a/dist.ini b/dist.ini
index 9bb091d..3b9b4ea 100644
--- a/dist.ini
+++ b/dist.ini
@@ -3,7 +3,7 @@ author  = Robert "phaylon" Sedlacek <rs at 474.at>
 license = Perl_5
 copyright_holder = Robert "phaylon" Sedlacek
 
-version = 0.28
+version = 0.29
 
 [NextRelease]
 format = %-7v %{yyyy-MM-dd}d
@@ -42,7 +42,7 @@ Moose            = 1.06
 Scalar::Util     = 1.19
 Sub::Install     = 0.924
 Sub::Name        = 0
-namespace::clean = 0.08
+namespace::clean = 0.19
 perl             = v5.8.0
 
 [@Git]
diff --git a/lib/MooseX/Types.pm b/lib/MooseX/Types.pm
index b345299..6d19eb7 100644
--- a/lib/MooseX/Types.pm
+++ b/lib/MooseX/Types.pm
@@ -1,6 +1,6 @@
 package MooseX::Types;
-BEGIN {
-  $MooseX::Types::VERSION = '0.28';
+{
+  $MooseX::Types::VERSION = '0.29';
 }
 use Moose;
 
@@ -176,7 +176,7 @@ MooseX::Types - Organise your Moose types in libraries
 
 =head1 VERSION
 
-version 0.28
+version 0.29
 
 =head1 SYNOPSIS
 
diff --git a/lib/MooseX/Types/Base.pm b/lib/MooseX/Types/Base.pm
index b117e3d..9ce23cd 100644
--- a/lib/MooseX/Types/Base.pm
+++ b/lib/MooseX/Types/Base.pm
@@ -1,6 +1,6 @@
 package MooseX::Types::Base;
-BEGIN {
-  $MooseX::Types::Base::VERSION = '0.28';
+{
+  $MooseX::Types::Base::VERSION = '0.29';
 }
 use Moose;
 
@@ -209,7 +209,7 @@ MooseX::Types::Base - Type library base class
 
 =head1 VERSION
 
-version 0.28
+version 0.29
 
 =head1 DESCRIPTION
 
diff --git a/lib/MooseX/Types/CheckedUtilExports.pm b/lib/MooseX/Types/CheckedUtilExports.pm
index 813ca4b..07aaaf1 100644
--- a/lib/MooseX/Types/CheckedUtilExports.pm
+++ b/lib/MooseX/Types/CheckedUtilExports.pm
@@ -1,6 +1,6 @@
 package MooseX::Types::CheckedUtilExports;
-BEGIN {
-  $MooseX::Types::CheckedUtilExports::VERSION = '0.28';
+{
+  $MooseX::Types::CheckedUtilExports::VERSION = '0.29';
 }
 
 #ABSTRACT: Wrap L<Moose::Util::TypeConstraints> to be safer for L<MooseX::Types>
@@ -70,7 +70,7 @@ MooseX::Types::CheckedUtilExports - Wrap L<Moose::Util::TypeConstraints> to be s
 
 =head1 VERSION
 
-version 0.28
+version 0.29
 
 =head1 DESCRIPTION
 
diff --git a/lib/MooseX/Types/Combine.pm b/lib/MooseX/Types/Combine.pm
index 21be8c4..6f48daa 100644
--- a/lib/MooseX/Types/Combine.pm
+++ b/lib/MooseX/Types/Combine.pm
@@ -1,6 +1,6 @@
 package MooseX::Types::Combine;
-BEGIN {
-  $MooseX::Types::Combine::VERSION = '0.28';
+{
+  $MooseX::Types::Combine::VERSION = '0.29';
 }
 
 # ABSTRACT: Combine type libraries for exporting
@@ -88,7 +88,7 @@ MooseX::Types::Combine - Combine type libraries for exporting
 
 =head1 VERSION
 
-version 0.28
+version 0.29
 
 =head1 SYNOPSIS
 
diff --git a/lib/MooseX/Types/Moose.pm b/lib/MooseX/Types/Moose.pm
index f6da243..bb9f759 100644
--- a/lib/MooseX/Types/Moose.pm
+++ b/lib/MooseX/Types/Moose.pm
@@ -1,6 +1,6 @@
 package MooseX::Types::Moose;
-BEGIN {
-  $MooseX::Types::Moose::VERSION = '0.28';
+{
+  $MooseX::Types::Moose::VERSION = '0.29';
 }
 
 # ABSTRACT: Type exports that match the types shipped with L<Moose>
@@ -35,22 +35,22 @@ MooseX::Types::Moose - Type exports that match the types shipped with L<Moose>
 
 =head1 VERSION
 
-version 0.28
+version 0.29
 
 =head1 SYNOPSIS
 
   package Foo;
   use Moose;
-  use MooseX::Types::Moose qw( Int Str );
+  use MooseX::Types::Moose qw( ArrayRef Int Str );
   use Carp qw( croak );
 
   has 'name',
     is  => 'rw',
     isa => Str;
 
-  has 'id',
+  has 'ids',
     is  => 'rw',
-    isa => Int;
+    isa => ArrayRef[Int];
 
   sub add {
       my ($self, $x, $y) = @_;
diff --git a/lib/MooseX/Types/TypeDecorator.pm b/lib/MooseX/Types/TypeDecorator.pm
index 5a5ef21..79c41ee 100644
--- a/lib/MooseX/Types/TypeDecorator.pm
+++ b/lib/MooseX/Types/TypeDecorator.pm
@@ -1,6 +1,6 @@
 package MooseX::Types::TypeDecorator;
-BEGIN {
-  $MooseX::Types::TypeDecorator::VERSION = '0.28';
+{
+  $MooseX::Types::TypeDecorator::VERSION = '0.29';
 }
 
 #ABSTRACT: Wraps Moose::Meta::TypeConstraint objects with added features
@@ -172,7 +172,7 @@ MooseX::Types::TypeDecorator - Wraps Moose::Meta::TypeConstraint objects with ad
 
 =head1 VERSION
 
-version 0.28
+version 0.29
 
 =head1 DESCRIPTION
 
diff --git a/lib/MooseX/Types/UndefinedType.pm b/lib/MooseX/Types/UndefinedType.pm
index 974f80f..d0c2bd3 100644
--- a/lib/MooseX/Types/UndefinedType.pm
+++ b/lib/MooseX/Types/UndefinedType.pm
@@ -1,6 +1,6 @@
 package MooseX::Types::UndefinedType;
-BEGIN {
-  $MooseX::Types::UndefinedType::VERSION = '0.28';
+{
+  $MooseX::Types::UndefinedType::VERSION = '0.29';
 }
 
 use warnings;
diff --git a/lib/MooseX/Types/Util.pm b/lib/MooseX/Types/Util.pm
index 6323f8d..f2bb72b 100644
--- a/lib/MooseX/Types/Util.pm
+++ b/lib/MooseX/Types/Util.pm
@@ -1,6 +1,6 @@
 package MooseX::Types::Util;
-BEGIN {
-  $MooseX::Types::Util::VERSION = '0.28';
+{
+  $MooseX::Types::Util::VERSION = '0.29';
 }
 
 #ABSTRACT: Common utility functions for the distribution
@@ -53,7 +53,7 @@ MooseX::Types::Util - Common utility functions for the distribution
 
 =head1 VERSION
 
-version 0.28
+version 0.29
 
 =head1 DESCRIPTION
 
diff --git a/lib/MooseX/Types/Wrapper.pm b/lib/MooseX/Types/Wrapper.pm
index eeb2149..e3548c7 100644
--- a/lib/MooseX/Types/Wrapper.pm
+++ b/lib/MooseX/Types/Wrapper.pm
@@ -1,6 +1,6 @@
 package MooseX::Types::Wrapper;
-BEGIN {
-  $MooseX::Types::Wrapper::VERSION = '0.28';
+{
+  $MooseX::Types::Wrapper::VERSION = '0.29';
 }
 
 #ABSTRACT: Wrap exports from a library
@@ -48,7 +48,7 @@ MooseX::Types::Wrapper - Wrap exports from a library
 
 =head1 VERSION
 
-version 0.28
+version 0.29
 
 =head1 DESCRIPTION
 

-- 
Debian packaging of libmoosex-types-perl



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