r40729 - in /branches/upstream/libsvn-hooks-perl/current: Changes META.yml README lib/SVN/Hooks.pm lib/SVN/Hooks/CheckJira.pm lib/SVN/Hooks/UpdateConfFile.pm

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Sat Jul 25 15:56:59 UTC 2009


Author: carnil-guest
Date: Sat Jul 25 15:56:51 2009
New Revision: 40729

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

Modified:
    branches/upstream/libsvn-hooks-perl/current/Changes
    branches/upstream/libsvn-hooks-perl/current/META.yml
    branches/upstream/libsvn-hooks-perl/current/README
    branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks.pm
    branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks/CheckJira.pm
    branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks/UpdateConfFile.pm

Modified: branches/upstream/libsvn-hooks-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-hooks-perl/current/Changes?rev=40729&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/Changes (original)
+++ branches/upstream/libsvn-hooks-perl/current/Changes Sat Jul 25 15:56:51 2009
@@ -1,4 +1,10 @@
 Revision history for SVN-Hooks. -*- text -*-
+
+0.18	2009-07-24
+
+	Corrects two bugs.
+
+	Drops the sub-minor versions.
 
 0.17    2009-04-26
 

Modified: branches/upstream/libsvn-hooks-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-hooks-perl/current/META.yml?rev=40729&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/META.yml (original)
+++ branches/upstream/libsvn-hooks-perl/current/META.yml Sat Jul 25 15:56:51 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                SVN-Hooks
-version:             0.17.54
+version:             0.18
 abstract:            A framework for implementing Subversion hooks.
 license:             ~
 author:              

Modified: branches/upstream/libsvn-hooks-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-hooks-perl/current/README?rev=40729&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/README (original)
+++ branches/upstream/libsvn-hooks-perl/current/README Sat Jul 25 15:56:51 2009
@@ -1,6 +1,6 @@
 Name:    SVN-Hooks
 What:    Framework for Subversion hooks
-Version: 0.17
+Version: 0.18
 Author:  Gustavo Chaves <gnustavo at cpan.org>
 
 SVN-Hooks is a framework for creating Subversion hooks

Modified: branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks.pm?rev=40729&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks.pm (original)
+++ branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks.pm Sat Jul 25 15:56:51 2009
@@ -15,11 +15,11 @@
 
 =head1 VERSION
 
-Version 0.17
+Version 0.18
 
 =cut
 
-our $VERSION = '0.17.' . (q$Revision: 54 $ =~ / (\d+) /)[0]; # bump from 52
+our $VERSION = '0.18';
 
 =head1 SYNOPSIS
 

Modified: branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks/CheckJira.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks/CheckJira.pm?rev=40729&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks/CheckJira.pm (original)
+++ branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks/CheckJira.pm Sat Jul 25 15:56:51 2009
@@ -216,7 +216,7 @@
 	push @{$conf->{checks}}, [$regex => $opts];
     }
     else {
-	while (my ($opt, $val) = %$opts) {
+	while (my ($opt, $val) = each %$opts) {
 	    $conf->{defaults}{$opt} = $val;
 	}
     }

Modified: branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks/UpdateConfFile.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks/UpdateConfFile.pm?rev=40729&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks/UpdateConfFile.pm (original)
+++ branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks/UpdateConfFile.pm Sat Jul 25 15:56:51 2009
@@ -199,10 +199,10 @@
 	    my $from = $conf->{from};
 	    for my $file ($svnlook->added(), $svnlook->updated()) {
 		if (! ref $from) {
-		    next if $from ne $file;
+		    next if $file ne $from;
 		}
 		else {
-		    next if $from !~ $file;
+		    next if $file !~ $from;
 		}
 
 		my $text = $svnlook->cat($file);




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