summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOndřej Nový <onovy@debian.org>2019-08-09 08:20:27 +0200
committerOndřej Nový <onovy@debian.org>2019-08-09 08:20:27 +0200
commit8e7732146c06f50d7c2a50325d9351c26d3edbc6 (patch)
treececab266125aa021bbc2eb74eab1f4a1c215963e
parent387ff61cf4a9f6957b9c9acae19b9f7d1b282905 (diff)
Sync with archive
-rw-r--r--debian/changelog7
-rw-r--r--debian/python-wheezy.template.prerm9
-rw-r--r--debian/python3-wheezy.template.prerm9
3 files changed, 25 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index adff848..31d7809 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+python-wheezy.template (0.1.167-1.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Add prerm scripts to clean up the alternative. (Closes: #842077)
+
+ -- Andreas Beckmann <anbe@debian.org> Wed, 18 Jan 2017 17:00:54 +0100
+
python-wheezy.template (0.1.167-1) unstable; urgency=medium
* Initial release.
diff --git a/debian/python-wheezy.template.prerm b/debian/python-wheezy.template.prerm
new file mode 100644
index 0000000..4d92e1f
--- /dev/null
+++ b/debian/python-wheezy.template.prerm
@@ -0,0 +1,9 @@
+#!/bin/sh
+set -e
+
+if [ "$1" = "remove" ]
+then
+ update-alternatives --remove wheezy.template /usr/bin/wheezy.template-python2
+fi
+
+#DEBHELPER#
diff --git a/debian/python3-wheezy.template.prerm b/debian/python3-wheezy.template.prerm
new file mode 100644
index 0000000..94590e1
--- /dev/null
+++ b/debian/python3-wheezy.template.prerm
@@ -0,0 +1,9 @@
+#!/bin/sh
+set -e
+
+if [ "$1" = "remove" ]
+then
+ update-alternatives --remove wheezy.template /usr/bin/wheezy.template-python3
+fi
+
+#DEBHELPER#