r31529 - in /trunk/libsvn-look-perl: META.yml debian/changelog 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 6 10:02:58 UTC 2009


Author: angelabad-guest
Date: Fri Mar  6 10:02:55 2009
New Revision: 31529

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

Modified:
    trunk/libsvn-look-perl/META.yml
    trunk/libsvn-look-perl/debian/changelog
    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=31529&op=diff
==============================================================================
--- trunk/libsvn-look-perl/META.yml (original)
+++ trunk/libsvn-look-perl/META.yml Fri Mar  6 10:02:55 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                SVN-Look
-version:             0.14.7
+version:             0.14.9
 abstract:            A caching wrapper aroung the svnlook command.
 license:             ~
 author:              

Modified: trunk/libsvn-look-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/debian/changelog?rev=31529&op=diff
==============================================================================
--- trunk/libsvn-look-perl/debian/changelog (original)
+++ trunk/libsvn-look-perl/debian/changelog Fri Mar  6 10:02:55 2009
@@ -1,3 +1,9 @@
+libsvn-look-perl (0.14.9-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Angel Abad (Ikusnet SLL) <angel at grupoikusnet.com>  Fri, 06 Mar 2009 10:55:09 +0100
+
 libsvn-look-perl (0.14.7-1) unstable; urgency=low
 
   [ Angel Abad (Ikusnet SLL) ]

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=31529&op=diff
==============================================================================
--- trunk/libsvn-look-perl/debian/patches/remove_authortest_pbuilder (original)
+++ trunk/libsvn-look-perl/debian/patches/remove_authortest_pbuilder Fri Mar  6 10:02:55 2009
@@ -1,8 +1,10 @@
 Author: Angel Abad
 Description: Remove author test because it fails in pbuilder
 
---- a/t/01-commands.t
-+++ b/t/01-commands.t
+Index: libsvn-look-perl/t/01-commands.t
+===================================================================
+--- libsvn-look-perl.orig/t/01-commands.t	2009-03-02 10:29:53.000000000 +0100
++++ libsvn-look-perl/t/01-commands.t	2009-03-06 10:58:51.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=31529&op=diff
==============================================================================
--- trunk/libsvn-look-perl/lib/SVN/Look.pm (original)
+++ trunk/libsvn-look-perl/lib/SVN/Look.pm Fri Mar  6 10:02:55 2009
@@ -14,7 +14,7 @@
 
 =cut
 
-our $VERSION = '0.14.' . substr(q$Revision: 7 $, 10); # bump from 5
+our $VERSION = '0.14.' . substr(q$Revision: 9 $, 10); # bump from 5
 
 =head1 SYNOPSIS
 
@@ -108,7 +108,8 @@
 
 sub _svnlook {
     my ($self, $cmd, @args) = @_;
-    open my $fd, '-|', $SVNLOOK, $cmd, $self->{repo}, @{$self->{what}}, @args
+    my $fd;
+    open $fd, '-|', $SVNLOOK, $cmd, $self->{repo}, @{$self->{what}}, @args
 	or die "Can't exec svnlook $cmd: $!\n";
     if (wantarray) {
 	my @lines = <$fd>;




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