r13274 - in /branches/upstream/libdata-types-perl/current: Build.PL Changes META.yml Makefile.PL README lib/Data/Types.pm

rmayorga-guest at users.alioth.debian.org rmayorga-guest at users.alioth.debian.org
Wed Jan 23 04:07:01 UTC 2008


Author: rmayorga-guest
Date: Wed Jan 23 04:06:59 2008
New Revision: 13274

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

Modified:
    branches/upstream/libdata-types-perl/current/Build.PL
    branches/upstream/libdata-types-perl/current/Changes
    branches/upstream/libdata-types-perl/current/META.yml
    branches/upstream/libdata-types-perl/current/Makefile.PL
    branches/upstream/libdata-types-perl/current/README
    branches/upstream/libdata-types-perl/current/lib/Data/Types.pm

Modified: branches/upstream/libdata-types-perl/current/Build.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libdata-types-perl/current/Build.PL?rev=13274&op=diff
==============================================================================
--- branches/upstream/libdata-types-perl/current/Build.PL (original)
+++ branches/upstream/libdata-types-perl/current/Build.PL Wed Jan 23 04:06:59 2008
@@ -1,8 +1,14 @@
 use Module::Build;
 
-my $build = Module::Build->new
-  ( module_name        => 'Data::Types',
+my $build = Module::Build->new(
+    module_name        => 'Data::Types',
     license            => 'perl',
     create_makefile_pl => 'passthrough',
-  );
+    configure_requires => {
+        'Module::Build' => '0.2701',
+    },
+    build_requires     => {
+        'Test::Simple'  => '0.17'
+    },
+);
 $build->create_build_script;

Modified: branches/upstream/libdata-types-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libdata-types-perl/current/Changes?rev=13274&op=diff
==============================================================================
--- branches/upstream/libdata-types-perl/current/Changes (original)
+++ branches/upstream/libdata-types-perl/current/Changes Wed Jan 23 04:06:59 2008
@@ -1,4 +1,11 @@
 Revision history for Perl extension Data::Types.
+
+0.07  2008-01-22T18:27:22
+       - Added Module::Build to the "configure_requires" parameter in
+         Build.PL. This should help prevent failures on systems that don't
+         already have Module::Build installed and run Makefile.PL. Reported by
+         Slaven Rezic.
+       - Added Test::Simple to the "build_requires" parameter in Build.PL.
 
 0.06  2006-05-23T00:45:44
         - Added POD tests.

Modified: branches/upstream/libdata-types-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libdata-types-perl/current/META.yml?rev=13274&op=diff
==============================================================================
--- branches/upstream/libdata-types-perl/current/META.yml (original)
+++ branches/upstream/libdata-types-perl/current/META.yml Wed Jan 23 04:06:59 2008
@@ -1,17 +1,21 @@
 ---
 name: Data-Types
-version: 0.06
+version: 0.07
 author:
   - 'David Wheeler <david at kineticode.com>'
 abstract: Validate and convert data types.
 license: perl
 resources:
   license: http://dev.perl.org/licenses/
+configure_requires:
+  Module::Build: 0.2701
+build_requires:
+  Test::Simple: 0.17
 provides:
   Data::Types:
     file: lib/Data/Types.pm
-    version: 0.06
-generated_by: Module::Build version 0.2801
+    version: 0.07
+generated_by: Module::Build version 0.280801
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.2.html
   version: 1.2

Modified: branches/upstream/libdata-types-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libdata-types-perl/current/Makefile.PL?rev=13274&op=diff
==============================================================================
--- branches/upstream/libdata-types-perl/current/Makefile.PL (original)
+++ branches/upstream/libdata-types-perl/current/Makefile.PL Wed Jan 23 04:06:59 2008
@@ -1,4 +1,4 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.03
+# Note: this file was auto-generated by Module::Build::Compat version 0.2808_01
     
     unless (eval "use Module::Build::Compat 0.02; 1" ) {
       print "This module requires Module::Build to install itself.\n";

Modified: branches/upstream/libdata-types-perl/current/README
URL: http://svn.debian.org/wsvn/branches/upstream/libdata-types-perl/current/README?rev=13274&op=diff
==============================================================================
--- branches/upstream/libdata-types-perl/current/README (original)
+++ branches/upstream/libdata-types-perl/current/README Wed Jan 23 04:06:59 2008
@@ -1,4 +1,4 @@
-Data/Types version 0.06
+Data/Types version 0.07
 =======================
 
 This module exports a number of functions that are useful for validating and

Modified: branches/upstream/libdata-types-perl/current/lib/Data/Types.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libdata-types-perl/current/lib/Data/Types.pm?rev=13274&op=diff
==============================================================================
--- branches/upstream/libdata-types-perl/current/lib/Data/Types.pm (original)
+++ branches/upstream/libdata-types-perl/current/lib/Data/Types.pm Wed Jan 23 04:06:59 2008
@@ -4,7 +4,7 @@
 require Exporter;
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 
-$VERSION = '0.06';
+$VERSION = '0.07';
 
 @ISA = qw(Exporter);
 




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