r37140 - in /branches/upstream/libtest-prereq-perl/current: Changes META.yml lib/Build.pm lib/Prereq.pm

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Mon Jun 1 09:20:14 UTC 2009


Author: ryan52-guest
Date: Mon Jun  1 09:20:09 2009
New Revision: 37140

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=37140
Log:
[svn-upgrade] Integrating new upstream version, libtest-prereq-perl (1.037)

Modified:
    branches/upstream/libtest-prereq-perl/current/Changes
    branches/upstream/libtest-prereq-perl/current/META.yml
    branches/upstream/libtest-prereq-perl/current/lib/Build.pm
    branches/upstream/libtest-prereq-perl/current/lib/Prereq.pm

Modified: branches/upstream/libtest-prereq-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-prereq-perl/current/Changes?rev=37140&op=diff
==============================================================================
--- branches/upstream/libtest-prereq-perl/current/Changes (original)
+++ branches/upstream/libtest-prereq-perl/current/Changes Mon Jun  1 09:20:09 2009
@@ -1,8 +1,8 @@
 # $Id$
 
-1.36 - Mon Jan 19 16:48:16 2009
-	* RT #42539: Fixed problem recognizing modules included in
-	the dist (Brian Phillips)
+1.37 - Mon Jun  1 00:20:54 2009
+	* Fix #46335: qualify calls to find() so Module::Install
+	doesn't intercept them.
 
 1.035 - Sat Aug  2 23:24:14 2008
 	* Cleaning up the Makefile a bit. No need to upgrade.

Modified: branches/upstream/libtest-prereq-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-prereq-perl/current/META.yml?rev=37140&op=diff
==============================================================================
--- branches/upstream/libtest-prereq-perl/current/META.yml (original)
+++ branches/upstream/libtest-prereq-perl/current/META.yml Mon Jun  1 09:20:09 2009
@@ -1,12 +1,14 @@
 --- #YAML:1.0
 name:               Test-Prereq
-version:            1.036
+version:            1.037
 abstract:           check if Makefile.PL has the right pre-requisites
 author:
     - brian d foy <bdfoy at cpan.org>
 license:            perl
 distribution_type:  module
 configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
     ExtUtils::MakeMaker:  0
 requires:
     Module::Build:        0
@@ -19,7 +21,7 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.48
+generated_by:       ExtUtils::MakeMaker version 6.50
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4

Modified: branches/upstream/libtest-prereq-perl/current/lib/Build.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-prereq-perl/current/lib/Build.pm?rev=37140&op=diff
==============================================================================
--- branches/upstream/libtest-prereq-perl/current/lib/Build.pm (original)
+++ branches/upstream/libtest-prereq-perl/current/lib/Build.pm Mon Jun  1 09:20:09 2009
@@ -19,7 +19,7 @@
 
 =cut
 
-$VERSION = '1.036';
+$VERSION = '1.037';
 
 use Module::Build;
 use Test::Builder;

Modified: branches/upstream/libtest-prereq-perl/current/lib/Prereq.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-prereq-perl/current/lib/Prereq.pm?rev=37140&op=diff
==============================================================================
--- branches/upstream/libtest-prereq-perl/current/lib/Prereq.pm (original)
+++ branches/upstream/libtest-prereq-perl/current/lib/Prereq.pm Mon Jun  1 09:20:09 2009
@@ -89,7 +89,7 @@
 use vars qw($VERSION $EXCLUDE_CPANPLUS @EXPORT @prereqs);
 
 
-$VERSION = '1.036';
+$VERSION = '1.037';
 
 @EXPORT = qw( prereq_ok );
 
@@ -360,11 +360,11 @@
 
 	my( @libs, @t, @scripts );
 	
-	find( sub { push @libs,    $File::Find::name if m/\.pm$/ }, 'blib/lib' )
+	File::Find::find( sub { push @libs,    $File::Find::name if m/\.pm$/ }, 'blib/lib' )
 		if -e 'blib/lib';
-	find( sub { push @t,       $File::Find::name if m/\.t$/  }, 't' )
+	File::Find::find( sub { push @t,       $File::Find::name if m/\.t$/  }, 't' )
 		if -e 't';
-	find( sub { push @scripts, $File::Find::name if -f $_    }, 'blib/script' )
+	File::Find::find( sub { push @scripts, $File::Find::name if -f $_    }, 'blib/script' )
 		if -e 'blib/script';
 	
 	my @found = ();
@@ -384,7 +384,7 @@
 
 	my @found = ();
 	
-	find( sub { push @found, $File::Find::name if m/\.p(l|m)$/ }, 't' );
+	File::Find::find( sub { push @found, $File::Find::name if m/\.p(l|m)$/ }, 't' );
 
 	my @files =
 		map {
@@ -410,7 +410,7 @@
 
 	my @found = ();
 	
-	find( sub { push @found, $File::Find::name if m/\.pm$/ }, $_[0] );
+	File::Find::find( sub { push @found, $File::Find::name if m/\.pm$/ }, $_[0] );
 		
 	my @files =
 		map {




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