Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: pu
Please allow an update of bgoffice in stable to fix #589851. The bug is fixed in squeeze (3.0-11); minimalistic debdiff follows: diff -u bgoffice-3.0/debian/changelog bgoffice-3.0/debian/changelog --- bgoffice-3.0/debian/changelog +++ bgoffice-3.0/debian/changelog @@ -1,3 +1,14 @@ +bgoffice (3.0-9+lenny1) stable; urgency=low + + * QA upload. + * debian/aspell-bg.postrm: Delete; harmful during upgrades or package + reinstallation (Closes: #589851). + * debian/aspell-bg.postinst: Recover from the old erroneous postrm and + touch bg{,-en}.rws and bg.compat if the files do not exist. + * debian/rules (install): Create an empty var/lib/aspell/bg-en.rws. + + -- Yavor Doganov <ya...@gnu.org> Wed, 11 Aug 2010 15:09:13 +0300 + bgoffice (3.0-9) unstable; urgency=low * QA upload. diff -u bgoffice-3.0/debian/aspell-bg.postinst bgoffice-3.0/debian/aspell-bg.postinst --- bgoffice-3.0/debian/aspell-bg.postinst +++ bgoffice-3.0/debian/aspell-bg.postinst @@ -9,6 +9,12 @@ bulgarian-aspell-dictionary $DIR/bg-w_english.multi 60 update-alternatives --install $DIR/bg.multi \ bulgarian-aspell-dictionary $DIR/bg-wo_english.multi 40 + # Touch the files deleted by old postrm (#589851). + # FIXME: Remove this snippet post-squeeze. + DIRV="/var/lib/aspell" + for f in $DIRV/bg.rws $DIRV/bg-en.rws $DIRV/bg.compat; do + [ -f $f ] || touch $f; + done ;; abort-upgrade|abort-remove|abort-deconfigure) reverted: --- bgoffice-3.0/debian/aspell-bg.postrm +++ bgoffice-3.0.orig/debian/aspell-bg.postrm @@ -1,21 +0,0 @@ -#!/bin/sh - -set -e - -case "$1" in - purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) - DIR=/var/lib/aspell - rm -f $DIR/bg.compat $DIR/bg-en.rws $DIR/bg.rws - ;; - -*) - echo "postrm called with unknown argument '$1'" >&2 - exit 1 - ;; -esac - - -#DEBHELPER# - -exit 0 - diff -u bgoffice-3.0/debian/rules bgoffice-3.0/debian/rules --- bgoffice-3.0/debian/rules +++ bgoffice-3.0/debian/rules @@ -102,6 +102,9 @@ # $WORDLIST is the wordlist filename minus the .*wl.gz extension) install -d debian/aspell-bg/var/lib/aspell/ >debian/aspell-bg/var/lib/aspell/bg.rws +# Make sure dpkg knows about bg-en.rws too, otherwise the file is not +# deleted upon remove/purge. + >debian/aspell-bg/var/lib/aspell/bg-en.rws # Add a symlink /usr/lib/aspell/$WORDLIST.rws -> /var/lib/aspell/$WORDLIST.rws install -d debian/aspell-bg/usr/lib/aspell/ ln -s /var/lib/aspell/bg.rws debian/aspell-bg/usr/lib/aspell/bg.rws -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org