r44913 - in /branches/upstream/libb-perlreq-perl/current: Changes META.yml README lib/B/PerlReq.pm lib/PerlReq/Utils.pm rpm-build-perl.spec

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Sep 27 15:25:28 UTC 2009


Author: jawnsy-guest
Date: Sun Sep 27 15:24:52 2009
New Revision: 44913

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=44913
Log:
[svn-upgrade] Integrating new upstream version, libb-perlreq-perl (0.71)

Modified:
    branches/upstream/libb-perlreq-perl/current/Changes
    branches/upstream/libb-perlreq-perl/current/META.yml
    branches/upstream/libb-perlreq-perl/current/README
    branches/upstream/libb-perlreq-perl/current/lib/B/PerlReq.pm
    branches/upstream/libb-perlreq-perl/current/lib/PerlReq/Utils.pm
    branches/upstream/libb-perlreq-perl/current/rpm-build-perl.spec

Modified: branches/upstream/libb-perlreq-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libb-perlreq-perl/current/Changes?rev=44913&op=diff
==============================================================================
--- branches/upstream/libb-perlreq-perl/current/Changes (original)
+++ branches/upstream/libb-perlreq-perl/current/Changes Sun Sep 27 15:24:52 2009
@@ -1,3 +1,6 @@
+* Sun Sep 27 2009 Alexey Tourbin <at at altlinux> 0.71-alt1
+- PerlReq/Utils.pm: fixed RPM_PERL_LIB_PATH for whitespaces (ALT#21701)
+
 * Mon May 11 2009 Alexey Tourbin <at at altlinux> 0.70-alt1
 - B/Walker.pm: new module, implements optree traversal
 - B/Clobbers.pm: new experimental module, for checking global variables

Modified: branches/upstream/libb-perlreq-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libb-perlreq-perl/current/META.yml?rev=44913&op=diff
==============================================================================
--- branches/upstream/libb-perlreq-perl/current/META.yml (original)
+++ branches/upstream/libb-perlreq-perl/current/META.yml Sun Sep 27 15:24:52 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               rpm-build-perl
-version:            0.70
+version:            0.71
 abstract:           Calculate dependencies for Perl sources
 author:
     - Alexey Tourbin <at at altlinux.org>

Modified: branches/upstream/libb-perlreq-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libb-perlreq-perl/current/README?rev=44913&op=diff
==============================================================================
--- branches/upstream/libb-perlreq-perl/current/README (original)
+++ branches/upstream/libb-perlreq-perl/current/README Sun Sep 27 15:24:52 2009
@@ -1,4 +1,4 @@
-rpm-build-perl version 0.70
+rpm-build-perl version 0.71
 
 B::PerlReq - Perl compiler backend to extract Perl dependencies
 perl.req - list requirements for Perl scripts and libraries

Modified: branches/upstream/libb-perlreq-perl/current/lib/B/PerlReq.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libb-perlreq-perl/current/lib/B/PerlReq.pm?rev=44913&op=diff
==============================================================================
--- branches/upstream/libb-perlreq-perl/current/lib/B/PerlReq.pm (original)
+++ branches/upstream/libb-perlreq-perl/current/lib/B/PerlReq.pm Sun Sep 27 15:24:52 2009
@@ -12,7 +12,7 @@
 #	and micro hacks.
 
 package B::PerlReq;
-our $VERSION = '0.70';
+our $VERSION = '0.71';
 
 use 5.006;
 use strict;

Modified: branches/upstream/libb-perlreq-perl/current/lib/PerlReq/Utils.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libb-perlreq-perl/current/lib/PerlReq/Utils.pm?rev=44913&op=diff
==============================================================================
--- branches/upstream/libb-perlreq-perl/current/lib/PerlReq/Utils.pm (original)
+++ branches/upstream/libb-perlreq-perl/current/lib/PerlReq/Utils.pm Sun Sep 27 15:24:52 2009
@@ -183,7 +183,7 @@
 	return @inc if @inc;
 	my $root = $ENV{RPM_BUILD_ROOT}; $root &&= rel2abs($root);
 	unshift @inc, map rel2abs($_), grep $_ ne ".", @INC;
-	unshift @inc, map rel2abs($_), $ENV{RPM_PERL_LIB_PATH} =~ /([^:]+)/g;
+	unshift @inc, map rel2abs($_), $ENV{RPM_PERL_LIB_PATH} =~ /([^:\s]+)/g;
 	unshift @inc, map "$root$_", @inc if $root;
 	return @inc = grep -d, @inc;
 }

Modified: branches/upstream/libb-perlreq-perl/current/rpm-build-perl.spec
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libb-perlreq-perl/current/rpm-build-perl.spec?rev=44913&op=diff
==============================================================================
--- branches/upstream/libb-perlreq-perl/current/rpm-build-perl.spec (original)
+++ branches/upstream/libb-perlreq-perl/current/rpm-build-perl.spec Sun Sep 27 15:24:52 2009
@@ -1,5 +1,5 @@
 Name: rpm-build-perl
-Version: 0.70
+Version: 0.71
 Release: alt1
 
 Summary: RPM helper scripts to calculate Perl dependencies
@@ -54,6 +54,9 @@
 %config /etc/rpm/macros.d/perl5.env
 
 %changelog
+* Sun Sep 27 2009 Alexey Tourbin <at at altlinux.ru> 0.71-alt1
+- PerlReq/Utils.pm: fixed RPM_PERL_LIB_PATH for whitespaces (ALT#21701)
+
 * Mon May 11 2009 Alexey Tourbin <at at altlinux.ru> 0.70-alt1
 - B/Walker.pm: new module, implements optree traversal
 - B/Clobbers.pm: new experimental module, for checking global variables




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