[Python-modules-commits] r23203 - in packages/pycxx/trunk/debian (3 files)
jtaylor-guest at users.alioth.debian.org
jtaylor-guest at users.alioth.debian.org
Sat Dec 22 13:17:49 UTC 2012
Date: Saturday, December 22, 2012 @ 13:17:47
Author: jtaylor-guest
Revision: 23203
Remove symlink /usr/share/doc/python{,3}-cxx-dev before installing
Closes: #696074
thanks to Andreas Beckmann for the report and Ivo De Decker for the patch
Added:
packages/pycxx/trunk/debian/python-cxx-dev.preinst
packages/pycxx/trunk/debian/python3-cxx-dev.preinst
Modified:
packages/pycxx/trunk/debian/changelog
Modified: packages/pycxx/trunk/debian/changelog
===================================================================
--- packages/pycxx/trunk/debian/changelog 2012-12-22 13:17:34 UTC (rev 23202)
+++ packages/pycxx/trunk/debian/changelog 2012-12-22 13:17:47 UTC (rev 23203)
@@ -1,3 +1,11 @@
+pycxx (6.2.4-2) unstable; urgency=low
+
+ * Remove symlink /usr/share/doc/python{,3}-cxx-dev before installing
+ - Closes: #696074
+ - thanks to Andreas Beckmann for the report and Ivo De Decker for the patch
+
+ -- Julian Taylor <jtaylor.debian at googlemail.com> Sat, 22 Dec 2012 14:02:12 +0100
+
pycxx (6.2.4-1) unstable; urgency=low
* New upstream release
Added: packages/pycxx/trunk/debian/python-cxx-dev.preinst
===================================================================
--- packages/pycxx/trunk/debian/python-cxx-dev.preinst (rev 0)
+++ packages/pycxx/trunk/debian/python-cxx-dev.preinst 2012-12-22 13:17:47 UTC (rev 23203)
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+ install|upgrade)
+ test ! -L /usr/share/doc/python-cxx-dev || rm /usr/share/doc/python-cxx-dev
+ ;;
+
+ abort-upgrade)
+ ;;
+
+ *)
+ echo "preinst called with unknown argument \`$1'" >&2
+ exit 1
+ ;;
+esac
+
+
+#DEBHELPER#
+
Added: packages/pycxx/trunk/debian/python3-cxx-dev.preinst
===================================================================
--- packages/pycxx/trunk/debian/python3-cxx-dev.preinst (rev 0)
+++ packages/pycxx/trunk/debian/python3-cxx-dev.preinst 2012-12-22 13:17:47 UTC (rev 23203)
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+ install|upgrade)
+ test ! -L /usr/share/doc/python3-cxx-dev || rm /usr/share/doc/python3-cxx-dev
+ ;;
+
+ abort-upgrade)
+ ;;
+
+ *)
+ echo "preinst called with unknown argument \`$1'" >&2
+ exit 1
+ ;;
+esac
+
+
+#DEBHELPER#
+
More information about the Python-modules-commits
mailing list