r17872 - in /trunk/libmodule-corelist-perl/debian: changelog control postrm preinst

ntyni at users.alioth.debian.org ntyni at users.alioth.debian.org
Wed Mar 19 10:11:16 UTC 2008


Author: ntyni
Date: Wed Mar 19 10:11:16 2008
New Revision: 17872

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=17872
Log:
* 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.

Added:
    trunk/libmodule-corelist-perl/debian/postrm
    trunk/libmodule-corelist-perl/debian/preinst
Modified:
    trunk/libmodule-corelist-perl/debian/changelog
    trunk/libmodule-corelist-perl/debian/control

Modified: trunk/libmodule-corelist-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-corelist-perl/debian/changelog?rev=17872&op=diff
==============================================================================
--- trunk/libmodule-corelist-perl/debian/changelog (original)
+++ trunk/libmodule-corelist-perl/debian/changelog Wed Mar 19 10:11:16 2008
@@ -1,3 +1,12 @@
+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 <ntyni at debian.org>  Wed, 19 Mar 2008 11:49:52 +0200
+
 libmodule-corelist-perl (2.14-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/libmodule-corelist-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-corelist-perl/debian/control?rev=17872&op=diff
==============================================================================
--- trunk/libmodule-corelist-perl/debian/control (original)
+++ trunk/libmodule-corelist-perl/debian/control Wed Mar 19 10:11:16 2008
@@ -4,7 +4,9 @@
 Build-Depends: debhelper (>= 5.0.0)
 Build-Depends-Indep: perl (>= 5.8.0-7), libtest-pod-perl, libversion-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>, gregor herrmann <gregor+debian at comodo.priv.at>, Jaldhar H. Vyas <jaldhar at debian.org>
+Uploaders: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>,
+ gregor herrmann <gregor+debian at comodo.priv.at>,
+ Jaldhar H. Vyas <jaldhar at debian.org>, Niko Tyni <ntyni at debian.org>
 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/

Added: trunk/libmodule-corelist-perl/debian/postrm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-corelist-perl/debian/postrm?rev=17872&op=file
==============================================================================
--- trunk/libmodule-corelist-perl/debian/postrm (added)
+++ trunk/libmodule-corelist-perl/debian/postrm Wed Mar 19 10:11:16 2008
@@ -1,0 +1,15 @@
+#!/bin/sh -e
+
+if [ "$1" = remove ]
+then
+    dpkg-divert --remove --package libmodule-corelist-perl --rename \
+        --divert /usr/bin/corelist.bundled /usr/bin/corelist
+fi
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0
+

Added: trunk/libmodule-corelist-perl/debian/preinst
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-corelist-perl/debian/preinst?rev=17872&op=file
==============================================================================
--- trunk/libmodule-corelist-perl/debian/preinst (added)
+++ trunk/libmodule-corelist-perl/debian/preinst Wed Mar 19 10:11:16 2008
@@ -1,0 +1,15 @@
+#!/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
+fi
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0
+




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