--- libmodule-corelist-perl-2.25.orig/debian/control +++ libmodule-corelist-perl-2.25/debian/control @@ -0,0 +1,31 @@ +Source: libmodule-corelist-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.10) | libversion-perl, libtest-pod-perl +Maintainer: Debian Perl Group +Uploaders: Krzysztof Krzyzaniak (eloy) , + gregor herrmann , Jonathan Yu , + Jaldhar H. Vyas , Niko Tyni , + Damyan Ivanov +Standards-Version: 3.8.3 +Homepage: http://search.cpan.org/dist/Module-CoreList/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libmodule-corelist-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libmodule-corelist-perl/ + +Package: libmodule-corelist-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, + perl (>= 5.10) | libversion-perl +Description: module to determine modules shipped with perl + Module::CoreList is a Perl module that can provide various information about + the versions of Perl modules that shipped with perl interpreter releases. + . + It contains a hash of hashes which is keyed on the perl interpreter version, + as indicated in $]. The second level hash has pairs of modules and as well as + their versions. It's possible that the version of a module is unspecified, in + which case it will be undef. + . + Other features include a hash providing ISO formatted versions of the release + dates, as gleaned from perlhist, and a hash that clusters known perl releases + by their major versions. --- libmodule-corelist-perl-2.25.orig/debian/copyright +++ libmodule-corelist-perl-2.25/debian/copyright @@ -0,0 +1,33 @@ +Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=59 +Maintainer: Rafaƫl Garcia-Suarez +Source: http://search.cpan.org/dist/Module-CoreList/ +Name: Module-CoreList + +Files: * +Copyright: 2002-2009, Richard Clamp +License: Artistic or GPL-1+ + +Files: debian/* +Copyright: 2009-2010, Jonathan Yu + 2008-2009, Damyan Ivanov + 2008, Niko Tyni + 2006-2009, gregor herrmann + 2005-2007, Krzysztof Krzyzaniak (eloy) +License: Artistic or 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' + --- libmodule-corelist-perl-2.25.orig/debian/watch +++ libmodule-corelist-perl-2.25/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Module-CoreList/ .*/Module-CoreList-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libmodule-corelist-perl-2.25.orig/debian/libmodule-corelist-perl.preinst +++ libmodule-corelist-perl-2.25/debian/libmodule-corelist-perl.preinst @@ -0,0 +1,23 @@ +#!/bin/sh + +set -e + +if [ "$1" = install ] || [ "$1" = upgrade ] +then + dpkg-divert --add --package libmodule-corelist-perl --rename \ + --divert /usr/bin/corelist.bundled /usr/bin/corelist + + # this diversion is needed even if we don't actually ship corelist.1.gz, + # because otherwise it takes precedence over corelist.1p.gz (which we do + # ship) + dpkg-divert --add --package libmodule-corelist-perl --rename \ + --divert /usr/share/man/man1/corelist.bundled.1.gz /usr/share/man/man1/corelist.1.gz +fi + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + --- libmodule-corelist-perl-2.25.orig/debian/libmodule-corelist-perl.lintian-overrides +++ libmodule-corelist-perl-2.25/debian/libmodule-corelist-perl.lintian-overrides @@ -0,0 +1,3 @@ +# we divert corelist.1.gz because corelist.1p.gz that we ship is of lower +# priority to man-db +libmodule-corelist-perl: unused-override diversion-for-unknown-file usr/share/man/man1/corelist.1.gz preinst:12 --- libmodule-corelist-perl-2.25.orig/debian/compat +++ libmodule-corelist-perl-2.25/debian/compat @@ -0,0 +1 @@ +7 --- libmodule-corelist-perl-2.25.orig/debian/changelog +++ libmodule-corelist-perl-2.25/debian/changelog @@ -0,0 +1,221 @@ +libmodule-corelist-perl (2.25-1) unstable; urgency=low + + * New upstream release + * Update copyright to new DEP5 format + + -- Jonathan Yu Sat, 23 Jan 2010 23:44:24 -0500 + +libmodule-corelist-perl (2.24-1) unstable; urgency=low + + * New upstream release + + -- Jonathan Yu Mon, 21 Dec 2009 11:43:04 -0500 + +libmodule-corelist-perl (2.22-1) unstable; urgency=low + + [ Jonathan Yu ] + * New upstream release + + [ gregor herrmann ] + * debian/control: Changed: (build-)depend on perl instead of perl- + modules. + + -- Jonathan Yu Thu, 22 Oct 2009 09:38:04 -0400 + +libmodule-corelist-perl (2.20-1) unstable; urgency=low + + * New upstream release + + Update for 5.11.1 + * Add myself to Uploaders and Copyright + * Rewrote control description + * Now use the package-specific names for lintian-overrides, postrm + and preinst + * Refreshed copyright information for Debian contributors + * Add `set -e' to preinst and postrm scripts + + -- Jonathan Yu Sat, 03 Oct 2009 11:55:49 -0400 + +libmodule-corelist-perl (2.18-2) unstable; urgency=low + + * revert the removal of corelist.1.gz diversion + - add an override about diversion-for-unknown-file lintian error + - thanks to Niko Tyni + + -- Damyan Ivanov Tue, 25 Aug 2009 10:20:19 +0300 + +libmodule-corelist-perl (2.18-1) unstable; urgency=low + + [ Nathan Handler ] + * debian/watch: Update to ignore development releases. + + [ Damyan Ivanov ] + * New upstream release + - updated for perl 5.10.1 + - Closes: #542673 -- newer upstream release bundled with Perl 5.10.1 + * debian/rules: a three-liner + * collapse perl dependencies + from perl (>= 5.8.0), perl-modules (>= 5.10) | libversion-perl + to perl (>= 5.10) | libversion-perl + * Standards-Version: 3.8.3 (no changes needed) + * remove unnecessary diversion of corelist.1.gz + + -- Damyan Ivanov Mon, 24 Aug 2009 17:30:31 +0300 + +libmodule-corelist-perl (2.17-1) unstable; urgency=low + + * New upstream release. + * Remove patch fix_missing-EU-Miniperl.patch, upstream has included + ExtUtils::Miniperl in the list of modules; remove quilt framework and + debian/README.source. + * debian/control: change my email address. + * Set debhelper compatibility level to 7; adapt + debian/{control,compat,rules}. + * debian/copyright: switch to new format and update years of copyright. + * debian/control: add perl-modules (>= 5.10) as alternative (build) + dependency to libversion-perl. + + -- gregor herrmann Tue, 20 Jan 2009 21:16:07 +0100 + +libmodule-corelist-perl (2.15-3) unstable; urgency=low + + [ gregor herrmann ] + * debian/control: Changed: Switched Vcs-Browser field to ViewSVN + (source stanza). + + [ Damyan Ivanov ] + * add fix_missing-EU-Miniperl.patch, adding ExtUtils::Miniperl to the list + of core Perl modules. (Closes: #508876) + + include quilt in the build process + * add myself to Uploaders + * Bump Standards-Version to 3.8.0 + + add README.source because of quilt usage + + -- Damyan Ivanov Tue, 16 Dec 2008 14:42:38 +0200 + +libmodule-corelist-perl (2.15-2) unstable; urgency=low + + * debian/{preinst,postrm}: add a diversion for corelist.1.gz, so + that our version of the manual page overrides the older one from + the perl package. (Closes: #474529) + + -- Niko Tyni Thu, 07 Aug 2008 13:58:20 +0300 + +libmodule-corelist-perl (2.15-1) unstable; urgency=low + + * New upstream release. + * debian/rules: minor update without functional changes. + + -- gregor herrmann Wed, 02 Apr 2008 22:00:57 +0200 + +libmodule-corelist-perl (2.14-2) unstable; urgency=low + + * debian/{preinst,postrm}: add a diversion for /usr/bin/corelist, + to override the older one in the perl package starting with 5.10.0-1. + (Closes: #471516) + * Add myself to Uploaders. + + -- Niko Tyni Wed, 19 Mar 2008 11:49:52 +0200 + +libmodule-corelist-perl (2.14-1) unstable; urgency=low + + * New upstream release. + * debian/copyright: update years of copyright. + + -- gregor herrmann Tue, 18 Mar 2008 04:29:32 +0100 + +libmodule-corelist-perl (2.13-2) unstable; urgency=low + + * debian/rules: delete /usr/lib/perl5 only if it exists (closes: #467803). + + -- gregor herrmann Thu, 06 Mar 2008 22:49:43 +0100 + +libmodule-corelist-perl (2.13-1) unstable; urgency=low + + * New upstream release. + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Removed: XS- + Vcs-Svn fields. + * Set Standards-Version to 3.7.3 (no changes needed). + * debian/copyright: add generic upstream URL and adapt years of copyright. + * debian/watch: use dist-based URL. + * debian/rules: + - remove OPTIMIZE (this is an arch:all package) + - move tests to build target + - call dh_clean before make realclean + - let install-stamp target depend on build-stamp + - remove commented out/unneeded dh_* calls + - don't install README (which is an outdated version of the POD/manpage) + + -- gregor herrmann Wed, 26 Dec 2007 17:59:26 +0100 + +libmodule-corelist-perl (2.12-1) unstable; urgency=low + + * New upstream release + + -- Krzysztof Krzyzaniak (eloy) Thu, 12 Jul 2007 16:08:22 +0200 + +libmodule-corelist-perl (2.11-1) unstable; urgency=low + + * New upstream release. + + -- gregor herrmann Sat, 19 May 2007 00:35:26 +0200 + +libmodule-corelist-perl (2.10-1) unstable; urgency=low + + * New upstream release + + -- Krzysztof Krzyzaniak (eloy) Thu, 10 May 2007 17:02:10 +0200 + +libmodule-corelist-perl (2.09-1) unstable; urgency=low + + * New upstream release. + + -- gregor herrmann Sun, 8 Oct 2006 18:15:52 +0200 + +libmodule-corelist-perl (2.08-2) unstable; urgency=low + + * debian/control: Added libversion-perl to Dependency (closes: #390834) + + -- Krzysztof Krzyzaniak (eloy) Mon, 11 Sep 2006 12:29:02 +0200 + +libmodule-corelist-perl (2.08-1) unstable; urgency=low + + * New upstream release. + * Add libtest-pod-perl and libversion-perl to build dependencies. + + -- gregor herrmann Sat, 9 Sep 2006 21:29:34 +0200 + +libmodule-corelist-perl (2.07-1) unstable; urgency=low + + * New upstream release + + -- Krzysztof Krzyzaniak (eloy) Wed, 30 Aug 2006 11:32:21 +0200 + +libmodule-corelist-perl (2.06-1) unstable; urgency=low + + * New upstream release + * debian/control: + + Standards-Version: increased to 3.7.2.1 + + -- Krzysztof Krzyzaniak (eloy) Wed, 2 Aug 2006 16:38:13 +0200 + +libmodule-corelist-perl (2.05-1) unstable; urgency=low + + * New upstream release, close ITP bug (closes: #342907) + * debian/control: + - Standards-Version: increased to 3.7.2 without changes + * debian/compat: increased to 5 + + -- Krzysztof Krzyzaniak (eloy) Tue, 20 Jun 2006 11:38:52 +0200 + +libmodule-corelist-perl (2.04-1) unstable; urgency=low + + * New upstream release + + -- Krzysztof Krzyzaniak (eloy) Tue, 14 Feb 2006 09:42:13 +0100 + +libmodule-corelist-perl (2.02-1) unstable; urgency=low + + * Initial Release. + + -- Krzysztof Krzyzaniak (eloy) Sun, 11 Dec 2005 17:24:55 +0100 --- libmodule-corelist-perl-2.25.orig/debian/rules +++ libmodule-corelist-perl-2.25/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ --- libmodule-corelist-perl-2.25.orig/debian/libmodule-corelist-perl.postrm +++ libmodule-corelist-perl-2.25/debian/libmodule-corelist-perl.postrm @@ -0,0 +1,20 @@ +#!/bin/sh + +set -e + +if [ "$1" = remove ] +then + dpkg-divert --remove --package libmodule-corelist-perl --rename \ + --divert /usr/bin/corelist.bundled /usr/bin/corelist + + dpkg-divert --remove --package libmodule-corelist-perl --rename \ + --divert /usr/share/man/man1/corelist.bundled.1.gz /usr/share/man/man1/corelist.1.gz +fi + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 +