Your message dated Thu, 17 May 2007 02:32:03 +0000 with message-id <[EMAIL PROTECTED]> and subject line Bug#374465: fixed in sed 4.1.5-2 has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database)
--- Begin Message ---Package: sed Version: 4.1.5-1 Severity: wishlist Tags: patch I suggest to deregister the documentation during the "deconfigure" path, as in the "remove" one. You could also continue doing it during the "upgrade" and "failed-upgrade" cases, in case this document might ever get removed; then you can a avoid a preinst version check in new versions, which would have to be supported (at least) until the following stable release. That's all the cases, so you could actually just drop the prerm argument checking. --- /var/lib/dpkg/info/sed.prerm 2006-04-30 17:08:11.000000000 -0400 +++ /tmp/sed.prerm 2006-06-18 15:18:30.000000000 -0400 @@ -1,16 +1,22 @@ -#! /bin/sh -e +#! /bin/sh +set -e pkg=sed case "$1" in - (upgrade) ;; - (remove) ;; - (*) exit 0 ;; -esac +remove|deconfigure) + install-info --quiet --remove sed + ;; + +upgrade|failed-upgrade) + ;; -install-info --quiet --remove sed +*) + echo "$0: Undocumented call: \"[EMAIL PROTECTED]"" >&2 + exit 1 + ;; +esac if [ -L /usr/doc/$pkg ]; then rm -f /usr/doc/$pkg fi - The abort-* cases should reregister it. --- /var/lib/dpkg/info/sed.postinst 2006-04-30 17:08:11.000000000 -0400 +++ /tmp/sed.postinst 2006-06-18 15:22:47.000000000 -0400 @@ -1,10 +1,19 @@ -#! /bin/sh -e +#! /bin/sh +set -e pkg=sed -if [ ! "$1" = "configure" ]; then - exit 0 -fi - -install-info --quiet --section "General commands" "General commands" \ +s="General commands" +case "$1" in +configure|abort-remove|abort-deconfigure) + install-info --quiet --section "$s" "$s" \ /usr/share/info/sed.info + ;; +abort-upgrade) + # Nothing to undo + :; + ;; +*) + echo "$0: Undocumented call: \"[EMAIL PROTECTED]"" >&2 + exit 1; +esac
--- End Message ---
--- Begin Message ---Source: sed Source-Version: 4.1.5-2 We believe that the bug you reported is fixed in the latest version of sed, which is due to be installed in the Debian FTP archive: sed_4.1.5-2.diff.gz to pool/main/s/sed/sed_4.1.5-2.diff.gz sed_4.1.5-2.dsc to pool/main/s/sed/sed_4.1.5-2.dsc sed_4.1.5-2_i386.deb to pool/main/s/sed/sed_4.1.5-2_i386.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Clint Adams <[EMAIL PROTECTED]> (supplier of updated sed package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Wed, 16 May 2007 21:41:31 -0400 Source: sed Binary: sed Architecture: source i386 Version: 4.1.5-2 Distribution: unstable Urgency: low Maintainer: Clint Adams <[EMAIL PROTECTED]> Changed-By: Clint Adams <[EMAIL PROTECTED]> Description: sed - The GNU sed stream editor Closes: 374465 408522 415143 Changes: sed (4.1.5-2) unstable; urgency=low . * Updated Simplified Chinese translation from LI Daobing. closes: #415143. * Apply patch from Justin Pryzby to handle deregistration and reregistration of info docs in prerm and postrm. closes: #374465. * Various maintscript cleanups, including removal of /usr/doc transition block. * Apply sed--stable--4.1--patch-25 (fix '/foo/i\'). closes: #408522. * Bump Standards-Version to 3.7.2. Files: 69a315c9af7709020da09bdb9087aaec 557 utils required sed_4.1.5-2.dsc 1af0bd0ee417f2ac820fbeb42ab892da 67847 utils required sed_4.1.5-2.diff.gz 763d40911032617fd86dfbf502382e9f 250678 utils required sed_4.1.5-2_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Debian! iD8DBQFGS7s25m0u66uWM3ARAuqPAKDN8Vqv7UTq6F5Exsz7OicJcv8ttgCfQp24 lIs7PMcpM7z6gO13IiejK+A= =HsOh -----END PGP SIGNATURE-----
--- End Message ---

