r69032 - in /branches/upstream/libcpan-inject-perl/current: Changes MANIFEST META.yml README lib/CPAN/Inject.pm script/cpaninject t/data/ t/data/Config-Tiny-2.09.tar.gz

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat Feb 19 01:43:55 UTC 2011


Author: jawnsy-guest
Date: Sat Feb 19 01:43:46 2011
New Revision: 69032

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=69032
Log:
[svn-upgrade] new version libcpan-inject-perl (1.13)

Added:
    branches/upstream/libcpan-inject-perl/current/t/data/
    branches/upstream/libcpan-inject-perl/current/t/data/Config-Tiny-2.09.tar.gz   (with props)
Modified:
    branches/upstream/libcpan-inject-perl/current/Changes
    branches/upstream/libcpan-inject-perl/current/MANIFEST
    branches/upstream/libcpan-inject-perl/current/META.yml
    branches/upstream/libcpan-inject-perl/current/README
    branches/upstream/libcpan-inject-perl/current/lib/CPAN/Inject.pm
    branches/upstream/libcpan-inject-perl/current/script/cpaninject

Modified: branches/upstream/libcpan-inject-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcpan-inject-perl/current/Changes?rev=69032&op=diff
==============================================================================
--- branches/upstream/libcpan-inject-perl/current/Changes (original)
+++ branches/upstream/libcpan-inject-perl/current/Changes Sat Feb 19 01:43:46 2011
@@ -1,4 +1,10 @@
 Revision history for Perl extension CPAN-Inject
+
+1.13 Wed 5 Jan 2011
+	- Bumped minimum version of Perl to 5.006 (ADAMK)
+	- Test pass with a non-existant ~/.cpan (BOGDAN)
+	- Tests tweaked for better failure into (SZABGAB)
+	- Fixing missing tarball in distribution (ADAMK)
 
 1.12 Sat 18 Dec 2010
 	- Moving to a production version

Modified: branches/upstream/libcpan-inject-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcpan-inject-perl/current/MANIFEST?rev=69032&op=diff
==============================================================================
--- branches/upstream/libcpan-inject-perl/current/MANIFEST (original)
+++ branches/upstream/libcpan-inject-perl/current/MANIFEST Sat Feb 19 01:43:46 2011
@@ -17,6 +17,7 @@
 script/cpaninject
 t/01_compile.t
 t/02_main.t
+t/data/Config-Tiny-2.09.tar.gz
 xt/meta.t
 xt/pmv.t
 xt/pod.t

Modified: branches/upstream/libcpan-inject-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcpan-inject-perl/current/META.yml?rev=69032&op=diff
==============================================================================
--- branches/upstream/libcpan-inject-perl/current/META.yml (original)
+++ branches/upstream/libcpan-inject-perl/current/META.yml Sat Feb 19 01:43:46 2011
@@ -31,9 +31,9 @@
   File::chmod: 0.30
   File::stat: 1.00
   Params::Util: 0.21
-  perl: 5.005
+  perl: 5.6.0
 resources:
   ChangeLog: http://fisheye2.atlassian.com/changelog/cpan/trunk/CPAN-Inject
   license: http://dev.perl.org/licenses/
   repository: http://svn.ali.as/cpan/trunk/CPAN-Inject
-version: 1.12
+version: 1.13

Modified: branches/upstream/libcpan-inject-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcpan-inject-perl/current/README?rev=69032&op=diff
==============================================================================
--- branches/upstream/libcpan-inject-perl/current/README (original)
+++ branches/upstream/libcpan-inject-perl/current/README Sat Feb 19 01:43:46 2011
@@ -192,7 +192,7 @@
     CPAN::Mini::Inject
 
 COPYRIGHT
-    Copyright 2006 - 2010 Adam Kennedy.
+    Copyright 2006 - 2011 Adam Kennedy.
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as Perl itself.

Modified: branches/upstream/libcpan-inject-perl/current/lib/CPAN/Inject.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcpan-inject-perl/current/lib/CPAN/Inject.pm?rev=69032&op=diff
==============================================================================
--- branches/upstream/libcpan-inject-perl/current/lib/CPAN/Inject.pm (original)
+++ branches/upstream/libcpan-inject-perl/current/lib/CPAN/Inject.pm Sat Feb 19 01:43:46 2011
@@ -49,9 +49,9 @@
 
 =cut
 
-use 5.005;
+use 5.006;
 use strict;
-use Params::Util    '_STRING';
+use Params::Util    ();
 use File::stat      ();
 use File::chmod     ();
 use File::Spec      ();
@@ -63,7 +63,7 @@
 use vars qw{$VERSION $CHECK_OWNER};
 
 BEGIN {
-	$VERSION = '1.12';
+	$VERSION = '1.13';
 
 	# Attempt to determine whether or not we are capable
 	# of finding the owner of a directory.
@@ -136,7 +136,7 @@
 
 	# Check where we are going to write to
 	my $sources = $self->sources;
-	unless ( _STRING($sources) ) {
+	unless ( Params::Util::_STRING($sources) ) {
 		Carp::croak("Did not probide a sources param, or not a string");
 	}
 	unless ( -d $sources ) {
@@ -473,7 +473,7 @@
 # Support Functions
 
 sub _AUTHOR {
-	( _STRING( $_[0] ) and $_[0] =~ /^[A-Z]{3,}$/ ) ? $_[0] : undef;
+	( Params::Util::_STRING( $_[0] ) and $_[0] =~ /^[A-Z]{3,}$/ ) ? $_[0] : undef;
 }
 
 1;
@@ -518,7 +518,7 @@
 
 =head1 COPYRIGHT
 
-Copyright 2006 - 2010 Adam Kennedy.
+Copyright 2006 - 2011 Adam Kennedy.
 
 This program is free software; you can redistribute
 it and/or modify it under the same terms as Perl itself.

Modified: branches/upstream/libcpan-inject-perl/current/script/cpaninject
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcpan-inject-perl/current/script/cpaninject?rev=69032&op=diff
==============================================================================
--- branches/upstream/libcpan-inject-perl/current/script/cpaninject (original)
+++ branches/upstream/libcpan-inject-perl/current/script/cpaninject Sat Feb 19 01:43:46 2011
@@ -41,13 +41,14 @@
 
 package cpaninject;
 
+use 5.006;
 use strict;
-use Params::Util '_STRING';
+use Params::Util ();
 use CPAN::Inject;
 
 use vars qw{$VERSION};
 BEGIN {
-	$VERSION = '1.12';
+	$VERSION = '1.13';
 }
 
 
@@ -62,7 +63,7 @@
 }
 
 # Get the file name
-my $file = _STRING(shift @ARGV);
+my $file = Params::Util::_STRING(shift @ARGV);
 unless ( $file ) {
 	error("Did not provide a file name");
 }
@@ -126,7 +127,7 @@
 
 =head1 COPYRIGHT
 
-Copyright 2006 - 2010 Adam Kennedy.
+Copyright 2006 - 2011 Adam Kennedy.
 
 This program is free software; you can redistribute
 it and/or modify it under the same terms as Perl itself.

Added: branches/upstream/libcpan-inject-perl/current/t/data/Config-Tiny-2.09.tar.gz
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcpan-inject-perl/current/t/data/Config-Tiny-2.09.tar.gz?rev=69032&op=file
==============================================================================
Binary file - no diff available.

Propchange: branches/upstream/libcpan-inject-perl/current/t/data/Config-Tiny-2.09.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream




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