r68556 - in /trunk/cpanminus: Changes META.yml bin/cpanm debian/ debian/changelog lib/App/cpanminus.pm

ghedo-guest at users.alioth.debian.org ghedo-guest at users.alioth.debian.org
Sun Feb 13 22:01:15 UTC 2011


Author: ghedo-guest
Date: Sun Feb 13 22:00:34 2011
New Revision: 68556

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=68556
Log:
new upstream release, update svn properties

Modified:
    trunk/cpanminus/Changes
    trunk/cpanminus/META.yml
    trunk/cpanminus/bin/cpanm
    trunk/cpanminus/debian/   (props changed)
    trunk/cpanminus/debian/changelog
    trunk/cpanminus/lib/App/cpanminus.pm

Modified: trunk/cpanminus/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/cpanminus/Changes?rev=68556&op=diff
==============================================================================
--- trunk/cpanminus/Changes (original)
+++ trunk/cpanminus/Changes Sun Feb 13 22:00:34 2011
@@ -1,4 +1,11 @@
 See http://github.com/miyagawa/cpanminus/ for the latest development.
+
+1.1008  Wed Jan 26 14:05:51 PST 2011
+   - Fixed glitches due to the deletion of Module::Metadata::Version
+
+1.1007  Tue Jan 18 09:39:05 PST 2011
+   - Fixed installation documents
+   - Added PERL_CPANM_NO_AUTOMATED_TESTING to unset AUTOMATED_TESTING to find which modules break (mst)
 
 1.1006  Thu Dec 16 11:27:29 PST 2010
    - Fixed docs to use curl instead of wget because of its cert bug

Modified: trunk/cpanminus/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/cpanminus/META.yml?rev=68556&op=diff
==============================================================================
--- trunk/cpanminus/META.yml (original)
+++ trunk/cpanminus/META.yml Sun Feb 13 22:00:34 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               App-cpanminus
-version:            1.1006
+version:            1.1008
 abstract:           Get, unpack, build and install modules from CPAN.
 author:  []
 license:            perl

Modified: trunk/cpanminus/bin/cpanm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/cpanminus/bin/cpanm?rev=68556&op=diff
==============================================================================
--- trunk/cpanminus/bin/cpanm (original)
+++ trunk/cpanminus/bin/cpanm Sun Feb 13 22:00:34 2011
@@ -18,7 +18,7 @@
 
 $fatpacked{"App/cpanminus.pm"} = <<'APP_CPANMINUS';
   package App::cpanminus;
-  our $VERSION = "1.1006";
+  our $VERSION = "1.1008";
   
   =head1 NAME
   
@@ -59,7 +59,7 @@
   Otherwise,
   
       cd ~/bin
-      curl -O http://xrl.us/cpanm
+      curl -LO http://xrl.us/cpanm
       chmod +x cpanm
       # edit shebang if you don't have /usr/bin/env
   
@@ -220,7 +220,7 @@
   use constant WIN32 => $^O eq 'MSWin32';
   use constant SUNOS => $^O eq 'solaris';
   
-  our $VERSION = "1.1006";
+  our $VERSION = "1.1008";
   $VERSION = eval $VERSION;
   
   my $quote = WIN32 ? q/"/ : q/'/;
@@ -873,7 +873,10 @@
   sub test {
       my($self, $cmd, $distname) = @_;
       return 1 if $self->{notest};
-      local $ENV{AUTOMATED_TESTING} = 1;
+  
+      # http://www.nntp.perl.org/group/perl.perl5.porters/2009/10/msg152656.html
+      local $ENV{AUTOMATED_TESTING} = 1
+          unless $self->env('NO_AUTOMATED_TESTING');
   
       return 1 if $self->run_timeout($cmd, $self->{test_timeout});
       if ($self->{force}) {
@@ -1148,6 +1151,7 @@
       my($self, $mod, $want_ver) = @_;
   
       require Module::Metadata;
+      require Module::Metadata::Version; # Module::Metadata might be loaded from user's $PERL5LIB missing ::Version
       my $meta = Module::Metadata->new_from_module($mod, inc => $self->{search_inc})
           or return 0, undef;
   
@@ -5658,7 +5662,8 @@
 
 unshift @INC, sub {
   if (my $fat = $fatpacked{$_[1]}) {
-    open my $fh, '<', \$fat;
+    open my $fh, '<', \$fat
+      or die "FatPacker error loading $_[1] (could be a perl installation issue?)";
     return $fh;
   }
   return

Propchange: trunk/cpanminus/debian/
------------------------------------------------------------------------------
--- svn-bp:tagsUrl (original)
+++ svn-bp:tagsUrl Sun Feb 13 22:00:34 2011
@@ -1,1 +1,1 @@
-svn+ssh://svn.debian.org/svn/pkg-perl/tags/libapp-cpanminus-perl
+svn+ssh://svn.debian.org/svn/pkg-perl/tags/cpanminus

Propchange: trunk/cpanminus/debian/
------------------------------------------------------------------------------
--- svn-bp:trunkUrl (original)
+++ svn-bp:trunkUrl Sun Feb 13 22:00:34 2011
@@ -1,1 +1,1 @@
-svn+ssh://svn.debian.org/svn/pkg-perl/trunk/libapp-cpanminus-perl
+svn+ssh://svn.debian.org/svn/pkg-perl/trunk/cpanminus

Propchange: trunk/cpanminus/debian/
------------------------------------------------------------------------------
--- svn-bp:upsCurrentUrl (original)
+++ svn-bp:upsCurrentUrl Sun Feb 13 22:00:34 2011
@@ -1,1 +1,1 @@
-svn+ssh://svn.debian.org/svn/pkg-perl/branches/upstream/libapp-cpanminus-perl/current
+svn+ssh://svn.debian.org/svn/pkg-perl/branches/upstream/cpanminus/current

Propchange: trunk/cpanminus/debian/
------------------------------------------------------------------------------
--- svn-bp:upsTagUrl (original)
+++ svn-bp:upsTagUrl Sun Feb 13 22:00:34 2011
@@ -1,1 +1,1 @@
-svn+ssh://svn.debian.org/svn/pkg-perl/branches/upstream/libapp-cpanminus-perl
+svn+ssh://svn.debian.org/svn/pkg-perl/branches/upstream/cpanminus

Modified: trunk/cpanminus/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/cpanminus/debian/changelog?rev=68556&op=diff
==============================================================================
--- trunk/cpanminus/debian/changelog (original)
+++ trunk/cpanminus/debian/changelog Sun Feb 13 22:00:34 2011
@@ -1,5 +1,5 @@
-cpanminus (1.1006-1) unstable; urgency=low
+cpanminus (1.1008-1) UNRELEASED; urgency=low
 
   * Initial Release. (Closes: #579147)
 
- -- Alessandro Ghedini <al3xbio at gmail.com>  Mon, 20 Dec 2010 12:23:56 +0100
+ -- Alessandro Ghedini <al3xbio at gmail.com>  Sun, 13 Feb 2011 22:58:36 +0100

Modified: trunk/cpanminus/lib/App/cpanminus.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/cpanminus/lib/App/cpanminus.pm?rev=68556&op=diff
==============================================================================
--- trunk/cpanminus/lib/App/cpanminus.pm (original)
+++ trunk/cpanminus/lib/App/cpanminus.pm Sun Feb 13 22:00:34 2011
@@ -1,5 +1,5 @@
 package App::cpanminus;
-our $VERSION = "1.1006";
+our $VERSION = "1.1008";
 
 =head1 NAME
 
@@ -40,7 +40,7 @@
 Otherwise,
 
     cd ~/bin
-    curl -O http://xrl.us/cpanm
+    curl -LO http://xrl.us/cpanm
     chmod +x cpanm
     # edit shebang if you don't have /usr/bin/env
 




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