r17246 - in /branches/upstream/libarray-compare-perl/current: Build.PL Changes META.yml Makefile.PL lib/Array/Compare.pm

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Wed Mar 12 18:00:29 UTC 2008


Author: dmn
Date: Wed Mar 12 18:00:28 2008
New Revision: 17246

URL: http://svn.debian.org/wsvn/?sc=1&rev=17246
Log:
[svn-upgrade] Integrating new upstream version, libarray-compare-perl (1.15)

Modified:
    branches/upstream/libarray-compare-perl/current/Build.PL
    branches/upstream/libarray-compare-perl/current/Changes
    branches/upstream/libarray-compare-perl/current/META.yml
    branches/upstream/libarray-compare-perl/current/Makefile.PL
    branches/upstream/libarray-compare-perl/current/lib/Array/Compare.pm

Modified: branches/upstream/libarray-compare-perl/current/Build.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libarray-compare-perl/current/Build.PL?rev=17246&op=diff
==============================================================================
--- branches/upstream/libarray-compare-perl/current/Build.PL (original)
+++ branches/upstream/libarray-compare-perl/current/Build.PL Wed Mar 12 18:00:28 2008
@@ -1,10 +1,17 @@
 use Module::Build;
-my $build = new Module::Build(module_name => 'Array::Compare',
-			      license => 'perl',
-			      requires => {
-					   perl           => '5.6.0',
-					  },
-                              create_makefile_pl => 'traditional',
-			     );
+my $build = Module::Build->new(
+	module_name => 'Array::Compare',
+	license => 'perl',
+	requires => {
+		perl                => '5.6.0',
+		Carp                => 0,
+	},
+	build_recommends => {
+		Test::Pod           => 0,
+		Test::Pod::Coverage => 0,
+	},
+        create_makefile_pl => 'traditional',
+);
+
 $build->create_build_script;
 

Modified: branches/upstream/libarray-compare-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libarray-compare-perl/current/Changes?rev=17246&op=diff
==============================================================================
--- branches/upstream/libarray-compare-perl/current/Changes (original)
+++ branches/upstream/libarray-compare-perl/current/Changes Wed Mar 12 18:00:28 2008
@@ -1,3 +1,18 @@
+2008-03-06  dave
+
+	* [r28] lib/Array/Compare.pm: Increment version number
+	* [r27] Build.PL: Fix prerequisites
+	* [r26] lib/Array/Compare.pm: Require Perl 5.6 so we can use
+	  warnings and our.
+
+2007-04-04  dave
+
+	* [r25] Build.PL: Another attempt at removing the execute bit
+
+2007-04-02  dave
+
+	* [r24] Build.PL: Made Build.PL non-executable
+
 2007-04-01  dave
 
 	* [r23] README.xml: Updated copyright dates
@@ -64,5 +79,5 @@
 
 2001-12-09  
 
-	* [r1] branches, tags, .: New repository initialized by cvs2svn.
+	* [r1] .: New repository initialized by cvs2svn.
 

Modified: branches/upstream/libarray-compare-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libarray-compare-perl/current/META.yml?rev=17246&op=diff
==============================================================================
--- branches/upstream/libarray-compare-perl/current/META.yml (original)
+++ branches/upstream/libarray-compare-perl/current/META.yml Wed Mar 12 18:00:28 2008
@@ -1,19 +1,20 @@
 ---
 name: Array-Compare
-version: 1.14
+version: 1.15
 author:
-  - Dave Cross <dave at mag-sol.com>
+  - 'Dave Cross <dave at mag-sol.com>'
 abstract: Perl extension for comparing arrays.
 license: perl
 resources:
   license: http://dev.perl.org/licenses/
 requires:
+  Carp: 0
   perl: 5.6.0
 provides:
   Array::Compare:
     file: lib/Array/Compare.pm
-    version: 1.14
-generated_by: Module::Build version 0.2805
+    version: 1.15
+generated_by: Module::Build version 0.2808
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.2.html
   version: 1.2

Modified: branches/upstream/libarray-compare-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libarray-compare-perl/current/Makefile.PL?rev=17246&op=diff
==============================================================================
--- branches/upstream/libarray-compare-perl/current/Makefile.PL (original)
+++ branches/upstream/libarray-compare-perl/current/Makefile.PL Wed Mar 12 18:00:28 2008
@@ -4,7 +4,9 @@
 (
           'NAME' => 'Array::Compare',
           'VERSION_FROM' => 'lib/Array/Compare.pm',
-          'PREREQ_PM' => {},
+          'PREREQ_PM' => {
+                           'Carp' => '0'
+                         },
           'INSTALLDIRS' => 'site',
           'EXE_FILES' => [],
           'PL_FILES' => {}

Modified: branches/upstream/libarray-compare-perl/current/lib/Array/Compare.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libarray-compare-perl/current/lib/Array/Compare.pm?rev=17246&op=diff
==============================================================================
--- branches/upstream/libarray-compare-perl/current/lib/Array/Compare.pm (original)
+++ branches/upstream/libarray-compare-perl/current/lib/Array/Compare.pm Wed Mar 12 18:00:28 2008
@@ -1,5 +1,5 @@
 #
-# $Id: Compare.pm 22 2007-04-01 15:03:22Z dave $
+# $Id: Compare.pm 28 2008-03-06 22:04:59Z dave $
 #
 
 =head1 NAME
@@ -178,12 +178,14 @@
 
 package Array::Compare;
 
+require 5.006_000;
 use strict;
-use vars qw($VERSION $AUTOLOAD);
+use warnings;
+our ($VERSION, $AUTOLOAD);
 
 use Carp;
 
-$VERSION = 1.14;
+$VERSION = 1.15;
 
 my %_defaults = (Sep => '^G',
 		 WhiteSpace => 1,




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