r32213 - in /branches/upstream/libsvn-look-perl/current: META.yml Makefile.PL lib/SVN/Look.pm

angelabad-guest at users.alioth.debian.org angelabad-guest at users.alioth.debian.org
Fri Mar 20 14:57:55 UTC 2009


Author: angelabad-guest
Date: Fri Mar 20 14:57:51 2009
New Revision: 32213

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=32213
Log:
[svn-upgrade] Integrating new upstream version, libsvn-look-perl (0.14.12)

Modified:
    branches/upstream/libsvn-look-perl/current/META.yml
    branches/upstream/libsvn-look-perl/current/Makefile.PL
    branches/upstream/libsvn-look-perl/current/lib/SVN/Look.pm

Modified: branches/upstream/libsvn-look-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-look-perl/current/META.yml?rev=32213&op=diff
==============================================================================
--- branches/upstream/libsvn-look-perl/current/META.yml (original)
+++ branches/upstream/libsvn-look-perl/current/META.yml Fri Mar 20 14:57:51 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                SVN-Look
-version:             0.14.10
+version:             0.14.12
 abstract:            A caching wrapper aroung the svnlook command.
 license:             ~
 author:              

Modified: branches/upstream/libsvn-look-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-look-perl/current/Makefile.PL?rev=32213&op=diff
==============================================================================
--- branches/upstream/libsvn-look-perl/current/Makefile.PL (original)
+++ branches/upstream/libsvn-look-perl/current/Makefile.PL Fri Mar 20 14:57:51 2009
@@ -12,10 +12,10 @@
     catfile('bin'),
 ) {
     my $f = catfile($d, 'svnlook');
-    if (-x $f) {
-	$svnlook = $f;
-	last;
-    }
+    next unless -x $f;
+    next unless system("$f help >/dev/null 2>/dev/null") == 0;
+    $svnlook = $f;
+    last;
 }
 die "Aborting because I couldn't find the 'svnlook' executable.\n"
     unless $svnlook;

Modified: branches/upstream/libsvn-look-perl/current/lib/SVN/Look.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-look-perl/current/lib/SVN/Look.pm?rev=32213&op=diff
==============================================================================
--- branches/upstream/libsvn-look-perl/current/lib/SVN/Look.pm (original)
+++ branches/upstream/libsvn-look-perl/current/lib/SVN/Look.pm Fri Mar 20 14:57:51 2009
@@ -14,7 +14,7 @@
 
 =cut
 
-our $VERSION = '0.14.' . substr(q$Revision: 10 $, 10); # bump from 5
+our $VERSION = '0.14.' . substr(q$Revision: 12 $, 10); # bump from 10
 
 =head1 SYNOPSIS
 




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