r40574 - in /trunk/libdb-file-lock-perl: Lock.pm debian/README.source debian/changelog debian/control debian/patches/ debian/patches/series debian/patches/tie_argument_handling.patch debian/rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Thu Jul 23 12:32:09 UTC 2009


Author: gregoa
Date: Thu Jul 23 12:31:58 2009
New Revision: 40574

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=40574
Log:
Split out changes to Lock.pm into a quilt patch, add quilt framework.

Added:
    trunk/libdb-file-lock-perl/debian/README.source
    trunk/libdb-file-lock-perl/debian/patches/
    trunk/libdb-file-lock-perl/debian/patches/series
    trunk/libdb-file-lock-perl/debian/patches/tie_argument_handling.patch
Modified:
    trunk/libdb-file-lock-perl/Lock.pm
    trunk/libdb-file-lock-perl/debian/changelog
    trunk/libdb-file-lock-perl/debian/control
    trunk/libdb-file-lock-perl/debian/rules

Modified: trunk/libdb-file-lock-perl/Lock.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdb-file-lock-perl/Lock.pm?rev=40574&op=diff
==============================================================================
--- trunk/libdb-file-lock-perl/Lock.pm (original)
+++ trunk/libdb-file-lock-perl/Lock.pm Thu Jul 23 12:31:58 2009
@@ -117,8 +117,8 @@
 	}
 
 	my $self = $tie_type eq "TIEHASH"
-		? $package->SUPER::TIEHASH(@dbfile_data)
-		: $package->SUPER::TIEARRAY(@dbfile_data);
+		? $package->SUPER::TIEHASH(@_)
+		: $package->SUPER::TIEARRAY(@_);
 	if ( not $self ) {
 		close $lockfile_fh;
 		return $self;

Added: trunk/libdb-file-lock-perl/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdb-file-lock-perl/debian/README.source?rev=40574&op=file
==============================================================================
--- trunk/libdb-file-lock-perl/debian/README.source (added)
+++ trunk/libdb-file-lock-perl/debian/README.source Thu Jul 23 12:31:58 2009
@@ -1,0 +1,5 @@
+This package uses quilt to manage all modifications to the upstream
+source.  Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+
+See /usr/share/doc/quilt/README.source for a detailed explanation.

Modified: trunk/libdb-file-lock-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdb-file-lock-perl/debian/changelog?rev=40574&op=diff
==============================================================================
--- trunk/libdb-file-lock-perl/debian/changelog (original)
+++ trunk/libdb-file-lock-perl/debian/changelog Thu Jul 23 12:31:58 2009
@@ -24,6 +24,7 @@
 
   [ gregor herrmann ]
   * debian/control: mention module name in long description.
+  * Split out changes to Lock.pm into a quilt patch, add quilt framework.
 
  -- Ansgar Burchardt <ansgar at 43-1.org>  Thu, 23 Jul 2009 03:30:57 +0200
 

Modified: trunk/libdb-file-lock-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdb-file-lock-perl/debian/control?rev=40574&op=diff
==============================================================================
--- trunk/libdb-file-lock-perl/debian/control (original)
+++ trunk/libdb-file-lock-perl/debian/control Thu Jul 23 12:31:58 2009
@@ -4,7 +4,7 @@
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: gregor herrmann <gregoa at debian.org>,
  Ansgar Burchardt <ansgar at 43-1.org>
-Build-Depends: debhelper (>= 7)
+Build-Depends: debhelper (>= 7.0.8), quilt (>= 0.46-7)
 Build-Depends-Indep: perl (>= 5.6.0-16)
 Standards-Version: 3.8.2
 Homepage: http://search.cpan.org/dist/DB_File-Lock/

Added: trunk/libdb-file-lock-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdb-file-lock-perl/debian/patches/series?rev=40574&op=file
==============================================================================
--- trunk/libdb-file-lock-perl/debian/patches/series (added)
+++ trunk/libdb-file-lock-perl/debian/patches/series Thu Jul 23 12:31:58 2009
@@ -1,0 +1,1 @@
+tie_argument_handling.patch

Added: trunk/libdb-file-lock-perl/debian/patches/tie_argument_handling.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdb-file-lock-perl/debian/patches/tie_argument_handling.patch?rev=40574&op=file
==============================================================================
--- trunk/libdb-file-lock-perl/debian/patches/tie_argument_handling.patch (added)
+++ trunk/libdb-file-lock-perl/debian/patches/tie_argument_handling.patch Thu Jul 23 12:31:58 2009
@@ -1,0 +1,16 @@
+Fix tie argument handling.  Thanks to Frank Lichtenheld for the patch.
+Closes: #334451 [rt.cpan.org #18613].
+
+--- a/Lock.pm
++++ b/Lock.pm
+@@ -117,8 +117,8 @@
+ 	}
+ 
+ 	my $self = $tie_type eq "TIEHASH"
+-		? $package->SUPER::TIEHASH(@_)
+-		: $package->SUPER::TIEARRAY(@_);
++		? $package->SUPER::TIEHASH(@dbfile_data)
++		: $package->SUPER::TIEARRAY(@dbfile_data);
+ 	if ( not $self ) {
+ 		close $lockfile_fh;
+ 		return $self;

Modified: trunk/libdb-file-lock-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdb-file-lock-perl/debian/rules?rev=40574&op=diff
==============================================================================
--- trunk/libdb-file-lock-perl/debian/rules (original)
+++ trunk/libdb-file-lock-perl/debian/rules Thu Jul 23 12:31:58 2009
@@ -1,3 +1,3 @@
 #!/usr/bin/make -f
 %:
-	dh $@
+	dh --with quilt $@




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