Bug#398297: bug 398297: apt-move: doesn't move, doesn't delete
The bug is also in apt-move 4.2.27-2 (from Ubuntu 12.04 repo). The solution by Robert works like a charm. Thanks Robert! smime.p7s Description: S/MIME Cryptographic Signature
Processed: Re: xfonts-100dpi: fonts not available until X restarted
Processing commands for cont...@bugs.debian.org: > severity 673170 wishlist Bug #673170 {Done: Julien Cristau } [xfonts-utils] xfonts-100dpi: fonts not available until X restarted Severity set to 'wishlist' from 'normal' > reassign 673170 xfs 1:1.0.8-7 Bug #673170 {Done: Julien Cristau } [xfonts-utils] xfonts-100dpi: fonts not available until X restarted Bug reassigned from package 'xfonts-utils' to 'xfs'. No longer marked as found in versions xfonts-utils/1:7.7~1. Ignoring request to alter fixed versions of bug #673170 to the same values previously set Bug #673170 {Done: Julien Cristau } [xfs] xfonts-100dpi: fonts not available until X restarted Marked as found in versions xfs/1:1.0.8-7. > tags 673170 + upstream Bug #673170 {Done: Julien Cristau } [xfs] xfonts-100dpi: fonts not available until X restarted Added tag(s) upstream. > quit Stopping processing here. Please contact me if you need assistance. -- 673170: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=673170 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.13377983748102.transcr...@bugs.debian.org
Processed: Re: xfonts-100dpi: fonts not available until X restarted
Processing commands for cont...@bugs.debian.org: > reopen 673170 Bug #673170 {Done: Julien Cristau } [xfs] xfonts-100dpi: fonts not available until X restarted Bug reopened Ignoring request to alter fixed versions of bug #673170 to the same values previously set > End of message, stopping processing here. Please contact me if you need assistance. -- 673170: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=673170 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.133779889910516.transcr...@bugs.debian.org
Bug#674218: makedev: please drop obsolete preinst script
Package: makedev Version: 2.3.1-91.1 Severity: wishlist Tags: patch User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu quantal ubuntu-patch Hi Bdale, A bug was recently reported in Ubuntu about a debootstrap failure, that ultimately turned out to be related to the recent change to makedev's preinst now being set -e. https://bugs.launchpad.net/ubuntu/quantal/+source/makedev/+bug/1001460 To make a long story short, makedev's preinst was running commands which, while they are meant to be totally safe, are unnecessary on any recent Debian or Ubuntu system and turned out not to be safe in Ubuntu for the specific case of debootstrapping. Since nothing in this preinst is needed on on upgrades from any recent release (one of the upgrade fix-ups only applies to upgrades from lenny - oldstable - and the other only applies to upgrades from something pre-etch), I would suggest dropping the preinst entirely as in the attached patch. It's unlikely that the specific bug that hit Ubuntu here will ever affect Debian, but IMHO the fewer preinsts we have in the base system, the better. Thanks for considering, -- Steve Langasek Give me a lever long enough and a Free OS Debian Developer to set it on, and I can move the world. Ubuntu Developerhttp://www.debian.org/ slanga...@ubuntu.com vor...@debian.org === modified file 'debian/changelog' === removed file 'debian/preinst' --- debian/preinst 2012-03-21 10:50:08 + +++ debian/preinst 1970-01-01 00:00:00 + @@ -1,34 +0,0 @@ -#!/bin/sh -e - -# Remove a no-longer used conffile -rm_conffile() { -PKGNAME="$1" -CONFFILE="$2" -if [ -e "$CONFFILE" ]; then -md5sum="`md5sum \"$CONFFILE\" | sed -e \"s/ .*//\"`" -old_md5sum="`dpkg-query -W -f='${Conffiles}' $PKGNAME | sed -n -e \"' $CONFFILE'{s/ obsolete$//;s/.* //p}\"`" -if [ "$md5sum" != "$old_md5sum" ]; then -echo "Obsolete conffile $CONFFILE has been modified by you." -echo "Saving as $CONFFILE.dpkg-old ..." -mv -f "$CONFFILE" "$CONFFILE".dpkg-old -else -echo "Removing obsolete conffile $CONFFILE ..." -rm -f "$CONFFILE" -fi -fi -} - -case "$1" in -install|upgrade) -if dpkg --compare-versions "$2" le "2.3.1-87"; then - rm_conffile makedev /etc/init.d/makedev - update-rc.d makedev remove -fi -esac - -rm -f /usr/man/man8/MAKEDEV.8 /usr/man/man8/MAKEDEV-C.8 \ - /usr/man/man8/MAKEDEV-C.8.gz - -#DEBHELPER# - -exit 0