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

gwolf at users.alioth.debian.org gwolf at users.alioth.debian.org
Tue Jul 1 21:15:35 UTC 2008


Author: gwolf
Date: Tue Jul  1 21:15:35 2008
New Revision: 22645

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

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/pkg-perl/branches/upstream/libarray-compare-perl/current/Build.PL?rev=22645&op=diff
==============================================================================
--- branches/upstream/libarray-compare-perl/current/Build.PL (original)
+++ branches/upstream/libarray-compare-perl/current/Build.PL Tue Jul  1 21:15:35 2008
@@ -1,5 +1,6 @@
 use Module::Build;
 my $build = Module::Build->new(
+        dist_version => '1.16',
 	module_name => 'Array::Compare',
 	license => 'perl',
 	requires => {

Modified: branches/upstream/libarray-compare-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libarray-compare-perl/current/Changes?rev=22645&op=diff
==============================================================================
--- branches/upstream/libarray-compare-perl/current/Changes (original)
+++ branches/upstream/libarray-compare-perl/current/Changes Tue Jul  1 21:15:35 2008
@@ -1,18 +1,3 @@
-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
@@ -79,5 +64,5 @@
 
 2001-12-09  
 
-	* [r1] .: New repository initialized by cvs2svn.
+	* [r1] branches, tags, .: New repository initialized by cvs2svn.
 

Modified: branches/upstream/libarray-compare-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libarray-compare-perl/current/META.yml?rev=22645&op=diff
==============================================================================
--- branches/upstream/libarray-compare-perl/current/META.yml (original)
+++ branches/upstream/libarray-compare-perl/current/META.yml Tue Jul  1 21:15:35 2008
@@ -1,6 +1,6 @@
 ---
 name: Array-Compare
-version: 1.15
+version: 1.16
 author:
   - 'Dave Cross <dave at mag-sol.com>'
 abstract: Perl extension for comparing arrays.
@@ -14,7 +14,7 @@
   Array::Compare:
     file: lib/Array/Compare.pm
     version: 1.15
-generated_by: Module::Build version 0.2808
+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/libarray-compare-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libarray-compare-perl/current/Makefile.PL?rev=22645&op=diff
==============================================================================
--- branches/upstream/libarray-compare-perl/current/Makefile.PL (original)
+++ branches/upstream/libarray-compare-perl/current/Makefile.PL Tue Jul  1 21:15:35 2008
@@ -1,14 +1,15 @@
-# 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
+require 5.6.0;
 use ExtUtils::MakeMaker;
 WriteMakefile
 (
+          'PL_FILES' => {},
+          'INSTALLDIRS' => 'site',
           'NAME' => 'Array::Compare',
+          'EXE_FILES' => [],
           'VERSION_FROM' => 'lib/Array/Compare.pm',
           'PREREQ_PM' => {
-                           'Carp' => '0'
-                         },
-          'INSTALLDIRS' => 'site',
-          'EXE_FILES' => [],
-          'PL_FILES' => {}
+                           'Carp' => 0
+                         }
         )
 ;

Modified: branches/upstream/libarray-compare-perl/current/lib/Array/Compare.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libarray-compare-perl/current/lib/Array/Compare.pm?rev=22645&op=diff
==============================================================================
--- branches/upstream/libarray-compare-perl/current/lib/Array/Compare.pm (original)
+++ branches/upstream/libarray-compare-perl/current/lib/Array/Compare.pm Tue Jul  1 21:15:35 2008
@@ -1,5 +1,5 @@
 #
-# $Id: Compare.pm 28 2008-03-06 22:04:59Z dave $
+# $Id: Compare.pm 30 2008-06-29 14:04:29Z dave $
 #
 
 =head1 NAME
@@ -495,7 +495,7 @@
 
 perl(1).
 
-=head1 COPYRIGHT
+=head1 COPYRIGHT AND LICENSE
 
 Copyright (C) 2000-2005, Magnum Solutions Ltd.  All Rights Reserved.
 
@@ -503,51 +503,3 @@
 under the same terms as Perl itself. 
 
 =cut
-
-#
-# $Log$
-# Revision 1.13  2005/09/21 09:23:40  dave
-# Documentation fix
-#
-# Revision 1.12  2005/03/01 09:05:33  dave
-# Changes to pass Pod::Coverage tests (and, hence, increase kwalitee)
-#
-# Revision 1.11  2004/10/23 08:11:32  dave
-# Improved test coverage
-#
-# Revision 1.10  2004/10/22 20:32:48  dave
-# Improved docs for full comparison
-#
-# Revision 1.9  2003/09/19 09:37:40  dave
-# Bring CVS version into line with old file
-#
-# Revision 1.1  2003/09/19 09:34:43  dave
-# Bit of an overhaul
-#
-# Revision 1.7  2002/03/29 17:45:09  dave
-# Test version
-#
-# Revision 1.6  2002/01/09 11:41:52  dave
-# Small cleanups
-#
-# Revision 1.5  2001/12/09 19:31:47  dave
-# Cleanup.
-#
-# Revision 1.4  2001/06/04 20:47:01  dave
-# RCS Import
-#
-# Revision 1.3  2001/02/26 13:34:41  dave
-# Added case insensitivity.
-#
-# Revision 1.2  2000/06/04 17:43:14  dave
-# Renamed 'manifest' and 'readme' to 'MANIFEST' and 'README'.
-# Added header info.
-#
-# Revision 1.1.1.1  2000/06/04 17:40:19  dave
-# CVS import
-#
-# Revision 0.2  00/05/13  14:23:48  14:23:48  dave (Dave Cross)
-# Added 'perm' method.
-# Revision 0.1  00/04/25  13:33:55  13:33:55  dave (Dave Cross)
-# Initial version.
-#




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