diff options
author | Alexandre Fayolle <alexandre.fayolle@logilab.fr> | 2006-09-21 21:40:39 +0200 |
---|---|---|
committer | Alexandre Fayolle <alexandre.fayolle@logilab.fr> | 2006-09-21 21:40:39 +0200 |
commit | f8cd4e5d40dc1133da06836e2999ea1e760185c5 (patch) | |
tree | b14abd1549e96aa91f767c6e972017d420b817f1 | |
parent | d2f29935e7601247b1a73eec79f262a77805f20e (diff) | |
download | logilab-common-f8cd4e5d40dc1133da06836e2999ea1e760185c5.tar.gz |
new debian release fixing upgrade from stable
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/python-logilab-common.preinst | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index ed92e45..ce07603 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +logilab-common (0.19.0-3) unstable; urgency=medium + + * Remove leftover files from package in Stable (closes: #388322) + * Urgency set to medium because it closes an RC bug + + -- Alexandre Fayolle <afayolle@debian.org> Thu, 21 Sep 2006 16:27:08 +0200 + logilab-common (0.19.0-2) unstable; urgency=low * Uploaded to Debian diff --git a/debian/python-logilab-common.preinst b/debian/python-logilab-common.preinst index 4ba08cf..3db35ef 100644 --- a/debian/python-logilab-common.preinst +++ b/debian/python-logilab-common.preinst @@ -3,6 +3,11 @@ set -e +if [ $1 = upgrade ] ; then + if [ $2 = 0.9.3-1 ] ; then + rm -f /usr/lib/python*/site-packages/logilab/__init__.py* + fi +fi #DEBHELPER# exit 0 |