--- libdb-file-lock-perl-0.05.orig/debian/rules +++ libdb-file-lock-perl-0.05/debian/rules @@ -0,0 +1,3 @@ +#!/usr/bin/make -f +%: + dh --with quilt $@ --- libdb-file-lock-perl-0.05.orig/debian/changelog +++ libdb-file-lock-perl-0.05/debian/changelog @@ -0,0 +1,54 @@ +libdb-file-lock-perl (0.05-3) unstable; urgency=low + + [ gregor herrmann ] + * Take over for the Debian Perl Group; Closes: #357344 -- ITA + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Changed: + Maintainer set to Debian Perl Group (was: Debian QA Group + ); added: /me to Uploaders. + * debian/watch: use dist-based URL. + * debian/control: Changed: Switched Vcs-Browser field to ViewSVN + (source stanza). + * debian/control: Added: ${misc:Depends} to Depends: field. + + [ Nathan Handler ] + * debian/watch: Update to ignore development releases. + + [ Ansgar Burchardt ] + * Refresh rules for debhelper 7. + * Move debhelper to Build-Depends. + * Bump Standards-Version to 3.8.2. + * Add myself to Uploaders. + * Convert debian/copyright to proposed machine-readable format. + + [ 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 Thu, 23 Jul 2009 03:30:57 +0200 + +libdb-file-lock-perl (0.05-2.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix FTBFS with Perl 5.10. Closes: #467734 + + -- Mark Hymers Sat, 05 Apr 2008 21:08:54 +0100 + +libdb-file-lock-perl (0.05-2) unstable; urgency=low + + * QA upload. + * Package is orphaned (#357344); set maintainer to Debian QA Group. + * Lock.pm: Fix tie argument handling. Thanks to Frank Lichtenheld + for the patch. Closes: #334451 [rt.cpan.org #18613]. + * Switch to debhelper 5. + * Conforms to Standards version 3.6.2. + + -- Matej Vela Sun, 9 Apr 2006 11:16:37 +0200 + +libdb-file-lock-perl (0.05-1) unstable; urgency=low + + * Initial Release. (closes: #271594) + + -- S. Zachariah Sprackett Mon, 13 Sep 2004 21:42:05 -0400 + --- libdb-file-lock-perl-0.05.orig/debian/watch +++ libdb-file-lock-perl-0.05/debian/watch @@ -0,0 +1,3 @@ +version=3 + +http://search.cpan.org/dist/DB_File-Lock/ .*/DB_File-Lock-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libdb-file-lock-perl-0.05.orig/debian/control +++ libdb-file-lock-perl-0.05/debian/control @@ -0,0 +1,20 @@ +Source: libdb-file-lock-perl +Section: perl +Priority: optional +Maintainer: Debian Perl Group +Uploaders: gregor herrmann , + Ansgar Burchardt +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/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdb-file-lock-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libdb-file-lock-perl/ + +Package: libdb-file-lock-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Description: wrapper adding locking for the DB_File module + When you need locking, simply use DB_File::Lock in place of DB_File and + add an extra argument onto the tie command specifying if the file should + be locked for reading or writing. --- libdb-file-lock-perl-0.05.orig/debian/copyright +++ libdb-file-lock-perl-0.05/debian/copyright @@ -0,0 +1,32 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: David Harris +Upstream-Source: http://search.cpan.org/dist/DB_File-Lock/ +Upstream-Name: DB_File-Lock + +Files: * +Copyright: © 1999-2000, David R. Harris +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: + © 2004, S. Zachariah Sprackett + © 2006, Matej Vela + © 2008, Mark Hymers + © 2009, Ansgar Burchardt +License: Artistic | GPL-1+ + +License: Artistic + This program is free software; you can redistribute it and/or modify + it under the terms of the Artistic License, which comes with Perl. + On Debian GNU/Linux systems, the complete text of the Artistic License + can be found in `/usr/share/common-licenses/Artistic' + +License: GPL-1+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 1, or (at your option) + any later version. + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' --- libdb-file-lock-perl-0.05.orig/debian/compat +++ libdb-file-lock-perl-0.05/debian/compat @@ -0,0 +1 @@ +7 --- libdb-file-lock-perl-0.05.orig/debian/README.source +++ libdb-file-lock-perl-0.05/debian/README.source @@ -0,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. --- libdb-file-lock-perl-0.05.orig/debian/patches/series +++ libdb-file-lock-perl-0.05/debian/patches/series @@ -0,0 +1 @@ +tie_argument_handling.patch --- libdb-file-lock-perl-0.05.orig/debian/patches/tie_argument_handling.patch +++ libdb-file-lock-perl-0.05/debian/patches/tie_argument_handling.patch @@ -0,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;