--- libmodule-corelist-perl-2.15.orig/debian/changelog +++ libmodule-corelist-perl-2.15/debian/changelog @@ -0,0 +1,127 @@ +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.15.orig/debian/compat +++ libmodule-corelist-perl-2.15/debian/compat @@ -0,0 +1 @@ +5 --- libmodule-corelist-perl-2.15.orig/debian/rules +++ libmodule-corelist-perl-2.15/debian/rules @@ -0,0 +1,60 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# If set to a true value then MakeMaker's prompt function will +# always return the default without waiting for user input. +export PERL_MM_USE_DEFAULT=1 + +PERL ?= /usr/bin/perl +PACKAGE = $(shell dh_listpackages) +TMP = $(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + touch $@ + +clean: + dh_testdir + dh_testroot + dh_clean build-stamp install-stamp + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + [ ! -d $(TMP)/usr/lib/perl5 ] || \ + rmdir --ignore-fail-on-non-empty --parents --verbose \ + $(TMP)/usr/lib/perl5 + touch $@ + +binary-arch: +# We have nothing to do here for an architecture-independent package + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs Changes + dh_perl + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- libmodule-corelist-perl-2.15.orig/debian/postrm +++ libmodule-corelist-perl-2.15/debian/postrm @@ -0,0 +1,18 @@ +#!/bin/sh -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 + --- libmodule-corelist-perl-2.15.orig/debian/control +++ libmodule-corelist-perl-2.15/debian/control @@ -0,0 +1,31 @@ +Source: libmodule-corelist-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0) +Build-Depends-Indep: perl (>= 5.8.0-7), libtest-pod-perl, libversion-perl +Maintainer: Debian Perl Group +Uploaders: Krzysztof Krzyzaniak (eloy) , + gregor herrmann , + Jaldhar H. Vyas , Niko Tyni +Standards-Version: 3.7.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/wsvn/pkg-perl/trunk/libmodule-corelist-perl/ + +Package: libmodule-corelist-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libversion-perl +Description: what modules shipped with versions of perl + Module::CoreList contains the hash of hashes + %Module::CoreList::version, this is keyed on perl version as indicated + in $]. The second level hash is module => version pairs. + . + Note, it is possible for the version of a module to be unspecified, + whereby the value is undef, so use exists $version{$foo}{$bar} if + that's what you're testing for. + . + It also contains %Module::CoreList::released hash, which has ISO + formatted versions of the release dates, as gleaned from perlhist. + . + New, in 1.96 is also the %Module::CoreList::families hash, which + clusters known perl releases by their major versions. --- libmodule-corelist-perl-2.15.orig/debian/copyright +++ libmodule-corelist-perl-2.15/debian/copyright @@ -0,0 +1,29 @@ +This is the debian package for the Module-CoreList module. +It was created by Krzysztof Krzyzaniak (eloy) . + +It was downloaded from: +http://search.cpan.org/~rgarcia/Module-CoreList-2.02/ + +The generic upstream URL is: +http://search.cpan.org/dist/Module-CoreList/ + +The upstream author is: +Original author: Richard Clamp +Currently maintained by the perl 5 porters .. + +Copyright (C) 2002-2008 Richard Clamp. All Rights Reserved. + +This program is free software, you can redistribute it and/or modify it under +the same terms as Perl itself. + +Perl is distributed under licenses: + + a) the GNU General Public License as published by the Free Software + Foundation; either version 1, or (at your option) any later + version, or + + b) the "Artistic License" which comes with Perl. + + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in /usr/share/common-licenses/GPL' and + the Artistic Licence in /usr/share/common-licenses/Artistic'. --- libmodule-corelist-perl-2.15.orig/debian/watch +++ libmodule-corelist-perl-2.15/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.15.orig/debian/preinst +++ libmodule-corelist-perl-2.15/debian/preinst @@ -0,0 +1,18 @@ +#!/bin/sh -e + +if [ "$1" = install ] || [ "$1" = upgrade ] +then + dpkg-divert --add --package libmodule-corelist-perl --rename \ + --divert /usr/bin/corelist.bundled /usr/bin/corelist + + 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 +