r63599 - in /branches/upstream/libfile-find-rule-vcs-perl/current: ./ inc/Module/ inc/Module/Install/ lib/File/Find/Rule/ t/ xt/

carnil at users.alioth.debian.org carnil at users.alioth.debian.org
Mon Oct 11 13:36:18 UTC 2010


Author: carnil
Date: Mon Oct 11 13:36:03 2010
New Revision: 63599

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=63599
Log:
[svn-upgrade] new version libfile-find-rule-vcs-perl (1.08)

Modified:
    branches/upstream/libfile-find-rule-vcs-perl/current/Changes
    branches/upstream/libfile-find-rule-vcs-perl/current/META.yml
    branches/upstream/libfile-find-rule-vcs-perl/current/Makefile.PL
    branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install.pm
    branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Base.pm
    branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Can.pm
    branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/DSL.pm
    branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Fetch.pm
    branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Makefile.pm
    branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Metadata.pm
    branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Win32.pm
    branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/WriteAll.pm
    branches/upstream/libfile-find-rule-vcs-perl/current/lib/File/Find/Rule/VCS.pm
    branches/upstream/libfile-find-rule-vcs-perl/current/t/01_compile.t
    branches/upstream/libfile-find-rule-vcs-perl/current/xt/meta.t
    branches/upstream/libfile-find-rule-vcs-perl/current/xt/pod.t

Modified: branches/upstream/libfile-find-rule-vcs-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-find-rule-vcs-perl/current/Changes?rev=63599&op=diff
==============================================================================
--- branches/upstream/libfile-find-rule-vcs-perl/current/Changes (original)
+++ branches/upstream/libfile-find-rule-vcs-perl/current/Changes Mon Oct 11 13:36:03 2010
@@ -1,4 +1,8 @@
 Revision history for Perl extension File::Find::Rule::VCS
+
+1.08 Wed  6 Oct 2010
+	- Upgrading to Module::Install::DSL 1.00
+	- Removing use UNIVERSAL, it does some evil stuff
 
 1.07 Mon 31 May 2010
 	- Added git support to resolve #43558: .git missing

Modified: branches/upstream/libfile-find-rule-vcs-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-find-rule-vcs-perl/current/META.yml?rev=63599&op=diff
==============================================================================
--- branches/upstream/libfile-find-rule-vcs-perl/current/META.yml (original)
+++ branches/upstream/libfile-find-rule-vcs-perl/current/META.yml Mon Oct 11 13:36:03 2010
@@ -9,7 +9,7 @@
 configure_requires:
   ExtUtils::MakeMaker: 6.42
 distribution_type: module
-generated_by: 'Module::Install version 0.98'
+generated_by: 'Module::Install version 1.00'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -29,4 +29,4 @@
   ChangeLog: http://fisheye2.atlassian.com/changelog/cpan/trunk/File-Find-Rule-VCS
   license: http://dev.perl.org/licenses/
   repository: http://svn.ali.as/cpan/trunk/File-Find-Rule-VCS
-version: 1.07
+version: 1.08

Modified: branches/upstream/libfile-find-rule-vcs-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-find-rule-vcs-perl/current/Makefile.PL?rev=63599&op=diff
==============================================================================
--- branches/upstream/libfile-find-rule-vcs-perl/current/Makefile.PL (original)
+++ branches/upstream/libfile-find-rule-vcs-perl/current/Makefile.PL Mon Oct 11 13:36:03 2010
@@ -1,4 +1,4 @@
-use inc::Module::Install::DSL 0.91;
+use inc::Module::Install::DSL 1.00;
 
 all_from      lib/File/Find/Rule/VCS.pm
 requires_from lib/File/Find/Rule/VCS.pm

Modified: branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install.pm?rev=63599&op=diff
==============================================================================
--- branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install.pm (original)
+++ branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install.pm Mon Oct 11 13:36:03 2010
@@ -22,7 +22,6 @@
 use Cwd        ();
 use File::Find ();
 use File::Path ();
-use FindBin;
 
 use vars qw{$VERSION $MAIN};
 BEGIN {
@@ -32,7 +31,7 @@
 	# This is not enforced yet, but will be some time in the next few
 	# releases once we can make sure it won't clash with custom
 	# Module::Install extensions.
-	$VERSION = '0.98';
+	$VERSION = '1.00';
 
 	# Storage for the pseudo-singleton
 	$MAIN    = undef;
@@ -231,7 +230,12 @@
 sub new {
 	my ($class, %args) = @_;
 
-	FindBin->again;
+	delete $INC{'FindBin.pm'};
+	{
+		# to suppress the redefine warning
+		local $SIG{__WARN__} = sub {};
+		require FindBin;
+	}
 
 	# ignore the prefix on extension modules built from top level.
 	my $base_path = Cwd::abs_path($FindBin::Bin);

Modified: branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Base.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Base.pm?rev=63599&op=diff
==============================================================================
--- branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Base.pm (original)
+++ branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Base.pm Mon Oct 11 13:36:03 2010
@@ -4,7 +4,7 @@
 use strict 'vars';
 use vars qw{$VERSION};
 BEGIN {
-	$VERSION = '0.98';
+	$VERSION = '1.00';
 }
 
 # Suspend handler for "redefined" warnings

Modified: branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Can.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Can.pm?rev=63599&op=diff
==============================================================================
--- branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Can.pm (original)
+++ branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Can.pm Mon Oct 11 13:36:03 2010
@@ -9,7 +9,7 @@
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '0.98';
+	$VERSION = '1.00';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }

Modified: branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/DSL.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/DSL.pm?rev=63599&op=diff
==============================================================================
--- branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/DSL.pm (original)
+++ branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/DSL.pm Mon Oct 11 13:36:03 2010
@@ -4,7 +4,7 @@
 use strict;
 use vars qw{$VERSION $ISCORE};
 BEGIN {
-	$VERSION = '0.98';
+	$VERSION = '1.00';
 	$ISCORE  = 1;
 	*inc::Module::Install::DSL::VERSION = *VERSION;
 	@inc::Module::Install::DSL::ISA     = __PACKAGE__;

Modified: branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Fetch.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Fetch.pm?rev=63599&op=diff
==============================================================================
--- branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Fetch.pm (original)
+++ branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Fetch.pm Mon Oct 11 13:36:03 2010
@@ -6,7 +6,7 @@
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '0.98';
+	$VERSION = '1.00';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }

Modified: branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Makefile.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Makefile.pm?rev=63599&op=diff
==============================================================================
--- branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Makefile.pm (original)
+++ branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Makefile.pm Mon Oct 11 13:36:03 2010
@@ -8,7 +8,7 @@
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '0.98';
+	$VERSION = '1.00';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }

Modified: branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Metadata.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Metadata.pm?rev=63599&op=diff
==============================================================================
--- branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Metadata.pm (original)
+++ branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Metadata.pm Mon Oct 11 13:36:03 2010
@@ -6,7 +6,7 @@
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '0.98';
+	$VERSION = '1.00';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }

Modified: branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Win32.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Win32.pm?rev=63599&op=diff
==============================================================================
--- branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Win32.pm (original)
+++ branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/Win32.pm Mon Oct 11 13:36:03 2010
@@ -6,7 +6,7 @@
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '0.98';
+	$VERSION = '1.00';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }

Modified: branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/WriteAll.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/WriteAll.pm?rev=63599&op=diff
==============================================================================
--- branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/WriteAll.pm (original)
+++ branches/upstream/libfile-find-rule-vcs-perl/current/inc/Module/Install/WriteAll.pm Mon Oct 11 13:36:03 2010
@@ -6,7 +6,7 @@
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '0.98';
+	$VERSION = '1.00';
 	@ISA     = qw{Module::Install::Base};
 	$ISCORE  = 1;
 }

Modified: branches/upstream/libfile-find-rule-vcs-perl/current/lib/File/Find/Rule/VCS.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-find-rule-vcs-perl/current/lib/File/Find/Rule/VCS.pm?rev=63599&op=diff
==============================================================================
--- branches/upstream/libfile-find-rule-vcs-perl/current/lib/File/Find/Rule/VCS.pm (original)
+++ branches/upstream/libfile-find-rule-vcs-perl/current/lib/File/Find/Rule/VCS.pm Mon Oct 11 13:36:03 2010
@@ -56,14 +56,13 @@
 
 use 5.00503;
 use strict;
-use UNIVERSAL;
 use Carp                  ();
 use Text::Glob       0.08 ();
 use File::Find::Rule 0.20 ();
 
 use vars qw{$VERSION @ISA @EXPORT};
 BEGIN {
-	$VERSION = '1.07';
+	$VERSION = '1.08';
 	@ISA     = 'File::Find::Rule';
 	@EXPORT  = @File::Find::Rule::EXPORT;
 }

Modified: branches/upstream/libfile-find-rule-vcs-perl/current/t/01_compile.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-find-rule-vcs-perl/current/t/01_compile.t?rev=63599&op=diff
==============================================================================
--- branches/upstream/libfile-find-rule-vcs-perl/current/t/01_compile.t (original)
+++ branches/upstream/libfile-find-rule-vcs-perl/current/t/01_compile.t Mon Oct 11 13:36:03 2010
@@ -10,8 +10,6 @@
 
 use Test::More tests => 2;
 
-# Check their perl version
-ok( $] >= 5.00503, "Your perl is new enough" );
+use_ok( 'File::Find::Rule::VCS' );
 
-# Load the modules
-use_ok( 'File::Find::Rule::VCS' );
+ok( defined &find, 'Exported the expected symbol' );

Modified: branches/upstream/libfile-find-rule-vcs-perl/current/xt/meta.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-find-rule-vcs-perl/current/xt/meta.t?rev=63599&op=diff
==============================================================================
--- branches/upstream/libfile-find-rule-vcs-perl/current/xt/meta.t (original)
+++ branches/upstream/libfile-find-rule-vcs-perl/current/xt/meta.t Mon Oct 11 13:36:03 2010
@@ -8,7 +8,7 @@
 	$^W = 1;
 }
 
-my $MODULE = 'Test::CPAN::Meta 0.12';
+my $MODULE = 'Test::CPAN::Meta 0.17';
 
 # Don't run tests for installs
 use Test::More;

Modified: branches/upstream/libfile-find-rule-vcs-perl/current/xt/pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-find-rule-vcs-perl/current/xt/pod.t?rev=63599&op=diff
==============================================================================
--- branches/upstream/libfile-find-rule-vcs-perl/current/xt/pod.t (original)
+++ branches/upstream/libfile-find-rule-vcs-perl/current/xt/pod.t Mon Oct 11 13:36:03 2010
@@ -9,8 +9,8 @@
 }
 
 my @MODULES = (
-	'Pod::Simple 3.07',
-	'Test::Pod 1.26',
+	'Pod::Simple 3.14',
+	'Test::Pod 1.44',
 );
 
 # Don't run tests for installs




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