Your message dated Mon, 28 Jun 2010 04:02:22 +0000
with message-id <[email protected]>
and subject line Bug#568419: fixed in emacs-goodies-el 34.0
has caused the Debian Bug report #568419,
regarding debian-el: When returning to the package list, it's not sorted anymore
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
568419: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=568419
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: debian-el
Version: 31.4
Severity: minor
File: /usr/share/emacs/site-lisp/debian-el/apt-utils.el
When searching for packages with apt-utils-search, they appear
sorted. But when entering the description of one package, and then
returning to the package list (using apt-utils-view-previous-package),
the list is now unsorted.
I've a patch that sort the list when returning to it.
Ps: I remember to have submitted this bug already, but I cannot find a
trace of it. Sorry if it's a duplicate.
--- 1/debian-el/apt-utils.el 2009-02-23 17:42:43.000000000 +0100
+++ 2/debian-el/apt-utils.el 2010-02-04 18:51:56.680730628 +0100
@@ -1,6 +1,6 @@
;;; apt-utils.el --- Emacs interface to APT (Debian package management)
-;;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Matthew P. Hodges
+;;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Matthew P. Hodges
;; Author: Matthew P. Hodges <[email protected]>
;; $Id: apt-utils.el,v 1.17 2009-02-23 16:42:43 psg Exp $
@@ -403,6 +403,7 @@
(apply 'call-process apt-utils-apt-cache-program nil '(t nil) nil
"search" "--"
(split-string package apt-utils-search-split-regexp))
+ (apt-utils-sort-result)
(apt-utils-add-search-links 'search))
;; Search for names only
((equal type 'search-names-only)
@@ -410,12 +411,14 @@
(apply 'call-process apt-utils-apt-cache-program nil '(t nil) nil
"search" "--names-only" "--"
(split-string package apt-utils-search-split-regexp))
+ (apt-utils-sort-result)
(apt-utils-add-search-links 'search-names-only))
;; Search for file names
((equal type 'search-file-names)
(insert (format "Debian package search (file names) for %s\n\n" package))
(apply 'call-process apt-utils-dpkg-program nil t nil
"-S" (list package))
+ (apt-utils-sort-result)
(apt-utils-add-search-links 'search-file-names))
;; grep-dctrl search
((equal type 'search-grep-dctrl)
@@ -423,6 +426,7 @@
(concat (format "\"%s\" " (car package))
(mapconcat 'identity (cdr package) " "))))
(apply 'call-process apt-utils-grep-dctrl-program nil t nil package)
+ (apt-utils-sort-result)
(apt-utils-add-package-links)))
(if apt-utils-use-current-window
(switch-to-buffer (current-buffer))
@@ -582,9 +586,7 @@
(clrhash apt-utils-current-links)))
(goto-char (point-min))
;; Sort results
- (save-excursion
- (forward-line 2)
- (sort-lines nil (point) (point-max)))
+ (apt-utils-sort-result)
(set-buffer-modified-p nil)
(setq buffer-read-only t)
(display-buffer (current-buffer)))))
@@ -2081,6 +2083,12 @@
'(autoload macro)))
(trace-function-background sym buffer))))))
+(defun apt-utils-sort-result ()
+ (save-excursion
+ (goto-char (point-min))
+ (forward-line 2)
+ (sort-lines nil (point) (point-max))))
+
(provide 'apt-utils)
;;; apt-utils.el ends here
-- System Information:
Debian Release: squeeze/sid
APT prefers unstable
APT policy: (990, 'unstable'), (500, 'testing'), (400, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.32-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages debian-el depends on:
ii bzip2 1.0.5-4 high-quality block-sorting file co
ii dpkg 1.15.5.6 Debian package management system
ii emacs [emacsen] 23.1+1-6 The GNU Emacs editor (metapackage)
ii emacs22 [emacsen] 22.3+1-1.2 The GNU Emacs editor
ii emacs23 [emacsen] 23.1+1-6 The GNU Emacs editor (with GTK+ us
ii file 5.04-1 Determines file type using "magic"
ii install-info 4.13a.dfsg.1-5 Manage installed documentation in
ii reportbug 4.10.2 reports bugs in the Debian distrib
Versions of packages debian-el recommends:
ii dlocate 1.02 fast alternative to dpkg -L and dp
ii groff-base 1.20.1-6 GNU troff text-formatting system (
ii wget 1.12-1.1 retrieves files from the web
Versions of packages debian-el suggests:
pn gnus <none> (no description available)
-- no debconf information
--- End Message ---
--- Begin Message ---
Source: emacs-goodies-el
Source-Version: 34.0
We believe that the bug you reported is fixed in the latest version of
emacs-goodies-el, which is due to be installed in the Debian FTP archive:
debian-el_34.0_all.deb
to main/e/emacs-goodies-el/debian-el_34.0_all.deb
devscripts-el_34.0_all.deb
to main/e/emacs-goodies-el/devscripts-el_34.0_all.deb
dpkg-dev-el_34.0_all.deb
to main/e/emacs-goodies-el/dpkg-dev-el_34.0_all.deb
emacs-goodies-el_34.0.dsc
to main/e/emacs-goodies-el/emacs-goodies-el_34.0.dsc
emacs-goodies-el_34.0.tar.gz
to main/e/emacs-goodies-el/emacs-goodies-el_34.0.tar.gz
emacs-goodies-el_34.0_all.deb
to main/e/emacs-goodies-el/emacs-goodies-el_34.0_all.deb
gnus-bonus-el_34.0_all.deb
to main/e/emacs-goodies-el/gnus-bonus-el_34.0_all.deb
vm-bonus-el_34.0_all.deb
to main/e/emacs-goodies-el/vm-bonus-el_34.0_all.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.
Peter S Galbraith <[email protected]> (supplier of updated emacs-goodies-el
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: SHA256
Format: 1.8
Date: Sun, 27 Jun 2010 22:05:01 -0400
Source: emacs-goodies-el
Binary: emacs-goodies-el gnus-bonus-el devscripts-el debian-el dpkg-dev-el
vm-bonus-el
Architecture: source all
Version: 34.0
Distribution: unstable
Urgency: low
Maintainer: Peter S Galbraith <[email protected]>
Changed-By: Peter S Galbraith <[email protected]>
Description:
debian-el - Emacs helpers specific to Debian users
devscripts-el - Emacs wrappers for the commands in devscripts
dpkg-dev-el - Emacs helpers specific to Debian development
emacs-goodies-el - Miscellaneous add-ons for Emacs
gnus-bonus-el - Miscellaneous add-ons for Gnus
vm-bonus-el - vm-bogofilter add-on for VM
Closes: 428601 568419 586321
Changes:
emacs-goodies-el (34.0) unstable; urgency=low
.
[ Peter S Galbraith ]
* emacs-goodies-el:
New files:
- upstart-mode.el: major-mode to edit .upstart files.
Thanks to Stig Sandbeck Mathisen (Closes: #586321).
- graphviz-dot-mode.el: Mode for the dot-language used by graphviz (att).
Thanks to Riccardo Vestrini (Closes: #428601).
.
[ Matt Hodges ]
* debian-el:
- apt-utils-el: Bug fix: "When returning to the package list, it's not
sorted anymore", thanks to Remi Vanicat (Closes: #568419).
Checksums-Sha1:
edc1bed29c52445321b297834e0be269852f874b 1650 emacs-goodies-el_34.0.dsc
6edb1e833bd99096bde47b3b5ad5fe12ae382350 1040745 emacs-goodies-el_34.0.tar.gz
7194f02e0d81c55717d98b2b7b77b57af1c7d152 822762 emacs-goodies-el_34.0_all.deb
a65fd7ea1f0d9a094176e776414e7612952af1f7 81288 gnus-bonus-el_34.0_all.deb
2d9b4c615e6d9d8120a88cd38edf55507b97ad64 40808 devscripts-el_34.0_all.deb
231cf1274d31ea86aabb2393d5f4bcc2a4a18351 102410 debian-el_34.0_all.deb
6e80acb2f1624cd1b70546576612324b04d83eac 73888 dpkg-dev-el_34.0_all.deb
f3560c268a72c140841e057ea5f0c7b8487d5305 43038 vm-bonus-el_34.0_all.deb
Checksums-Sha256:
381e2de51b655833269d0f69dfde3b0c3104008bc2c0b438cd69806b9e2da13f 1650
emacs-goodies-el_34.0.dsc
e88b56ab98983f54df182fa56fec0f89602faeac61e576940b4e26ec3ac6ffae 1040745
emacs-goodies-el_34.0.tar.gz
965d83d7a4d024c52d06975472eb7f4b245fa56937dc22385ff10eb1aa0e91da 822762
emacs-goodies-el_34.0_all.deb
ab4450299ceddeb147edca10b55da7764842538b733a07da412bdff2b98cfea9 81288
gnus-bonus-el_34.0_all.deb
fc300830f750ddea846a4b9c95119873481094c34a0e70639fa0efaaf1be8362 40808
devscripts-el_34.0_all.deb
47ec61d5ad5661b7efa6409fb77e961c8e1dc54e7c40a16ecc421f3f0b27f3d1 102410
debian-el_34.0_all.deb
cf798486a310e464f67feec83ad292ee604311007b641f8adc5f5380ca34c284 73888
dpkg-dev-el_34.0_all.deb
86009a456e99c52f7943c4822c914e1dc4ba5a8d06c3474ca31d5c295254414e 43038
vm-bonus-el_34.0_all.deb
Files:
c598396e16c53f97fbd34b933639f086 1650 editors optional
emacs-goodies-el_34.0.dsc
e3e0911fd202df4f6a4a38091ae77fb2 1040745 editors optional
emacs-goodies-el_34.0.tar.gz
9881d2e0e820df9d07ab13379d800dee 822762 editors optional
emacs-goodies-el_34.0_all.deb
d991753d163d86cf0d5edea820131d1e 81288 news optional gnus-bonus-el_34.0_all.deb
07fc9545600a2c87430350c4b1dd16ba 40808 editors optional
devscripts-el_34.0_all.deb
d4865f3e2a50ddf0a7aed880338a9bba 102410 utils optional debian-el_34.0_all.deb
616b7079d7e1efba3537d7b744591245 73888 utils optional dpkg-dev-el_34.0_all.deb
9748f35890d331f6d0241610bf494acd 43038 mail optional vm-bonus-el_34.0_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iQIcBAEBCAAGBQJMKBe4AAoJEBfcPMRw1Kl5d2oP/iJ03smeMTfxPXQfZqAHe8D6
YE8RhiGOaoV/r9k/IIS6sXolim3SK1sf+N6zE3Pl4usCiLlinTDHdWmqs14mgrZN
zKvAjy1Zx3hal4sk6R9SgjArZasZjIpQTaqqPORYsoKFud1e2X2DDKBGWqgmWnHw
DJ8l6DANv7j+LkVrjXQDToo1/EfXLYLI0uVCn3aBUPIGFK0Mxd8I8Sp4JLSLQoVb
YdX6OA2EYNmRBvpQMXG5+LZXSplKSjqaMMiVpAdQUQoWrEbP2NeLerkX4AkeGmGT
5PBmTzsCibFbSG+Ci5B1vtv0iogF93zx1mCdRMh1PANMl5XACEOswKvTCSTlxSqY
ZwIedrkKSUQ68dY7JO8WFnwGyvLUXoDgEr/JtE0wgsnbiWW1f+LpkxdSBc9wrTXH
mYVu+RYk4gyDt09VP4FWuzkKTL6fhV929MRB5AZ3oo9YP/sKXaqC/gBUDMRKLWY2
VLQsuSlR/QQOa7L6OAflwwt+Myj9y8j2PVmqZiEP7nxj+8cjfxwk+gx05tagefI1
98nCD7vrElVNg+eaSzE6dhezzT39oZXTdr7sTM1ExLbAgJjhbbu3cvPgoNhQmVEa
vTGuvMXsLiLiHhWJwsZ/JM5w/hYgQofJin95Ut9p3AGsa2JB7tC2nRXU2Kg1JJej
8KbAXX5RDktVq3PAwXWk
=n99p
-----END PGP SIGNATURE-----
--- End Message ---