r32219 - in /trunk/libsvn-look-perl: META.yml Makefile.PL debian/changelog debian/control debian/patches/remove_authortest_pbuilder lib/SVN/Look.pm

angelabad-guest at users.alioth.debian.org angelabad-guest at users.alioth.debian.org
Fri Mar 20 15:13:43 UTC 2009


Author: angelabad-guest
Date: Fri Mar 20 15:13:39 2009
New Revision: 32219

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=32219
Log:
New upstream release 0.14.12

Modified:
    trunk/libsvn-look-perl/META.yml
    trunk/libsvn-look-perl/Makefile.PL
    trunk/libsvn-look-perl/debian/changelog
    trunk/libsvn-look-perl/debian/control
    trunk/libsvn-look-perl/debian/patches/remove_authortest_pbuilder
    trunk/libsvn-look-perl/lib/SVN/Look.pm

Modified: trunk/libsvn-look-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/META.yml?rev=32219&op=diff
==============================================================================
--- trunk/libsvn-look-perl/META.yml (original)
+++ trunk/libsvn-look-perl/META.yml Fri Mar 20 15:13:39 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: trunk/libsvn-look-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/Makefile.PL?rev=32219&op=diff
==============================================================================
--- trunk/libsvn-look-perl/Makefile.PL (original)
+++ trunk/libsvn-look-perl/Makefile.PL Fri Mar 20 15:13:39 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: trunk/libsvn-look-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/debian/changelog?rev=32219&op=diff
==============================================================================
--- trunk/libsvn-look-perl/debian/changelog (original)
+++ trunk/libsvn-look-perl/debian/changelog Fri Mar 20 15:13:39 2009
@@ -1,3 +1,10 @@
+libsvn-look-perl (0.14.12-1) unstable; urgency=low
+
+  * New upstream release
+  * Set Standards-Version to 3.8.1 (no changes).
+
+ -- Angel Abad (Ikusnet SLL) <angel at grupoikusnet.com>  Fri, 20 Mar 2009 16:08:00 +0100
+
 libsvn-look-perl (0.14.10-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/libsvn-look-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/debian/control?rev=32219&op=diff
==============================================================================
--- trunk/libsvn-look-perl/debian/control (original)
+++ trunk/libsvn-look-perl/debian/control Fri Mar 20 15:13:39 2009
@@ -7,7 +7,7 @@
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Angel Abad (Ikusnet SLL) <angel at grupoikusnet.com>, 
  Antonio Radici <antonio at dyne.org>
-Standards-Version: 3.8.0
+Standards-Version: 3.8.1
 Homepage: http://search.cpan.org/dist/SVN-Look/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libsvn-look-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libsvn-look-perl/

Modified: trunk/libsvn-look-perl/debian/patches/remove_authortest_pbuilder
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/debian/patches/remove_authortest_pbuilder?rev=32219&op=diff
==============================================================================
--- trunk/libsvn-look-perl/debian/patches/remove_authortest_pbuilder (original)
+++ trunk/libsvn-look-perl/debian/patches/remove_authortest_pbuilder Fri Mar 20 15:13:39 2009
@@ -3,8 +3,8 @@
 
 Index: libsvn-look-perl/t/01-commands.t
 ===================================================================
---- libsvn-look-perl.orig/t/01-commands.t	2009-03-03 00:17:22.000000000 +0100
-+++ libsvn-look-perl/t/01-commands.t	2009-03-08 15:11:35.000000000 +0100
+--- libsvn-look-perl.orig/t/01-commands.t	2009-03-08 15:11:43.000000000 +0100
++++ libsvn-look-perl/t/01-commands.t	2009-03-20 15:59:33.000000000 +0100
 @@ -7,7 +7,7 @@
  require "test-functions.pl";
  

Modified: trunk/libsvn-look-perl/lib/SVN/Look.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/lib/SVN/Look.pm?rev=32219&op=diff
==============================================================================
--- trunk/libsvn-look-perl/lib/SVN/Look.pm (original)
+++ trunk/libsvn-look-perl/lib/SVN/Look.pm Fri Mar 20 15:13:39 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