--- libsort-versions-perl-1.5.orig/debian/rules +++ libsort-versions-perl-1.5/debian/rules @@ -0,0 +1,3 @@ +#!/usr/bin/make -f +%: + dh $@ --- libsort-versions-perl-1.5.orig/debian/changelog +++ libsort-versions-perl-1.5/debian/changelog @@ -0,0 +1,102 @@ +libsort-versions-perl (1.5-4) unstable; urgency=low + + [ gregor herrmann ] + * Take over for the Debian Perl Group with maintainer's permission + (http://lists.debian.org/debian-perl/2008/06/msg00039.html) + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Removed: + Homepage pseudo-field (Description). Changed: Maintainer set to + Debian Perl Group + (was: Florian Ragwitz ); Florian Ragwitz + moved 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. + + [ Ryan Niebur ] + * Remove Florian Ragwitz from Uploaders + * Close ITA (Closes: #523147) + + [ Nathan Handler ] + * debian/watch: Update to ignore development releases. + + [ Ansgar Burchardt ] + * Refresh rules for debhelper 7. + * Do no longer install README (part of POD documentation). + * Add myself to Uploaders. + * Convert debian/copyright to proposed machine-readable format. + * Bump Standards-Version to 3.8.2. + + -- Ansgar Burchardt Tue, 21 Jul 2009 11:59:14 +0200 + +libsort-versions-perl (1.5-3) unstable; urgency=low + + * New maintainer (Closes: #344456). + * Moved all build-dep-indep packages to build-dep if they are needed in the + clean target. + * Removed build-dependency to libtest-simple-perl. It's a core module. + + -- Florian Ragwitz Fri, 10 Feb 2006 20:42:03 +0100 + +libsort-versions-perl (1.5-2) unstable; urgency=low + + * New maintainer. (Closes: #331098: RFA: libsort-versions-perl -- Perl + module for sorting of revision (and similar) numbers) + * debian/control: add upstream Homepage to long description + * debian/copyright: extend note about previous and current maintainer + * Minor adjustments to follow latest Perl Policy + * Standards-Version 3.6.2, no changes required + + -- Florian Ernst Fri, 7 Oct 2005 16:11:09 +0200 + +libsort-versions-perl (1.5-1) unstable; urgency=low + + * New upstream release. + * Updated debian/copyright to match information in upstream README. + * Bumped standards version to 3.5.9. + * Now run regression tests on build. + - Added 'make test' to debian/rules + - Added libtest-simple-perl to build dependencies in debian/control + + -- Kenneth J. Pronovici Tue, 26 Aug 2003 10:37:01 -0500 + +libsort-versions-perl (1.4-6) unstable; urgency=low + + * Changed maintainer address from @ieee.org to @debian.org. + * Removed DH_COMPAT settting from debian/rules. + * Added debian/compat file to replace DH_COMPAT setting. + + -- Kenneth J. Pronovici Sun, 30 Mar 2003 13:11:28 -0600 + +libsort-versions-perl (1.4-5) unstable; urgency=low + + * Added debian/watch to look for new package versions as they come out. + + -- Kenneth J. Pronovici Mon, 30 Dec 2002 15:11:19 -0600 + +libsort-versions-perl (1.4-4) unstable; urgency=low + + * Changed debian/copyright to reference /usr/share/common-licenses. + Corrected formatting in debian/control (max 2 spaces indent). + + -- Kenneth J. Pronovici Sun, 3 Nov 2002 16:19:04 -0600 + +libsort-versions-perl (1.4-3) unstable; urgency=low + + * Fix previous release which trashed CVS keyword expansions. + + -- Kenneth J. Pronovici Thu, 31 Oct 2002 16:12:33 -0600 + +libsort-versions-perl (1.4-2) unstable; urgency=low + + * Minor packaging clean-ups. + + -- Kenneth J. Pronovici Tue, 29 Oct 2002 10:17:55 -0600 + +libsort-versions-perl (1.4-1) unstable; urgency=low + + * Initial Release. + + -- Kenneth J. Pronovici Sun, 6 Oct 2002 14:34:28 -0500 + --- libsort-versions-perl-1.5.orig/debian/watch +++ libsort-versions-perl-1.5/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Sort-Versions/ .*/Sort-Versions-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libsort-versions-perl-1.5.orig/debian/control +++ libsort-versions-perl-1.5/debian/control @@ -0,0 +1,37 @@ +Source: libsort-versions-perl +Maintainer: Debian Perl Group +Uploaders: Ansgar Burchardt +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.6.0-16) +Standards-Version: 3.8.2 +Homepage: http://search.cpan.org/dist/Sort-Versions/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libsort-versions-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libsort-versions-perl/ + +Package: libsort-versions-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Description: Perl module for sorting of revision (and similar) numbers + The Sort::Versions module allows easy sorting (via comparisons) of mixed text + and numeric strings, similar to the complex "version numbers" that many + revision control packages and shared library systems use. For an explanation + of the algorithm, it's easiest to look at these examples: + . + 1.1 < 1.2 + 1.1a < 1.2 + 1.1 < 1.1.1 + 1.1 < 1.1a + 1.1.a < 1.1a + 1 < a + a < b + 1 < 2 + . + (special handling for leading zeros) + 0002 < 1 + 1.06 < 1.5 + . + (a hyphen binds looser than a period) + 1-1 < 1-2 + 1-2 < 1.2 --- libsort-versions-perl-1.5.orig/debian/copyright +++ libsort-versions-perl-1.5/debian/copyright @@ -0,0 +1,33 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Ed Avis +Upstream-Source: http://search.cpan.org/dist/Sort-Versions/ +Upstream-Name: Sort-Versions + +Files: * +Copyright: © 1996-2003, Kenneth J. Albanowski, Ed Avis, and Matt Johnson +License-Alias: Perl +License: Artistic | GPL-1+ +X-Comment: Years of copyright taken from `Versions.pm' and `Changes' + +Files: debian/* +Copyright: + © 2002-2003, Kenneth J. Pronovici + © 2005, Florian Ernst + © 2006, Florian Ragwitz + © 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' --- libsort-versions-perl-1.5.orig/debian/compat +++ libsort-versions-perl-1.5/debian/compat @@ -0,0 +1 @@ +7