[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/debbugs c304562 233/311: Release debbugs 0.16
From: |
Stefan Monnier |
Subject: |
[elpa] externals/debbugs c304562 233/311: Release debbugs 0.16 |
Date: |
Sun, 29 Nov 2020 18:42:18 -0500 (EST) |
branch: externals/debbugs
commit c304562166cda63dac0469797ad89f8f8d3f0297
Author: Michael Albinus <michael.albinus@gmx.de>
Commit: Michael Albinus <michael.albinus@gmx.de>
Release debbugs 0.16
* packages/debbugs/debbugs-gnu.el (debbugs-gnu-mode)
(debbugs-gnu-usertags-mode, debbugs-gnu-lisp-mode)
(debbugs-gnu-diff-mode, debbugs-gnu-change-mode): Adapt docstring.
* packages/debbugs/debbugs.el: Require soap-client 3.1.5.
Increase Version to 0.16.
* packages/debbugs/debbugs.texi (Installation)
(Requesting bug numbers): Use https.
(Requesting messages): Fix typo.
---
debbugs-gnu.el | 13 +++----------
debbugs-ug.texi | 1 +
debbugs.el | 6 ++++--
debbugs.info | 20 ++++++++++----------
debbugs.texi | 9 +++++----
5 files changed, 23 insertions(+), 26 deletions(-)
diff --git a/debbugs-gnu.el b/debbugs-gnu.el
index 991e5a0..5466d65 100644
--- a/debbugs-gnu.el
+++ b/debbugs-gnu.el
@@ -989,11 +989,6 @@ Used instead of `tabulated-list-print-entry'."
(define-derived-mode debbugs-gnu-mode tabulated-list-mode "Debbugs"
"Major mode for listing bug reports.
-All normal editing commands are switched off.
-\\<debbugs-gnu-mode-map>
-
-The following commands are available:
-
\\{debbugs-gnu-mode-map}"
(set (make-local-variable 'debbugs-gnu-sort-state) 'number)
(set (make-local-variable 'debbugs-gnu-limit) nil)
@@ -1606,11 +1601,6 @@ removed instead."
(define-derived-mode debbugs-gnu-usertags-mode tabulated-list-mode "Usertags"
"Major mode for listing user tags.
-All normal editing commands are switched off.
-\\<debbugs-gnu-usertags-mode-map>
-
-The following commands are available:
-
\\{debbugs-gnu-usertags-mode-map}"
(buffer-disable-undo)
(setq truncate-lines t)
@@ -1940,6 +1930,7 @@ If given a prefix, patch in the branch directory instead."
(define-minor-mode debbugs-gnu-lisp-mode
"Minor mode for providing a debbugs interface in Lisp buffers.
+
\\{debbugs-gnu-lisp-mode-map}"
:lighter " Debbugs" :keymap debbugs-gnu-lisp-mode-map)
@@ -1950,6 +1941,7 @@ If given a prefix, patch in the branch directory instead."
(define-minor-mode debbugs-gnu-diff-mode
"Minor mode for providing a debbugs interface in diff buffers.
+
\\{debbugs-gnu-diff-mode-map}"
:lighter " Debbugs" :keymap debbugs-gnu-diff-mode-map)
@@ -1966,6 +1958,7 @@ If given a prefix, patch in the branch directory instead."
(define-minor-mode debbugs-gnu-change-mode
"Minor mode for providing a debbugs interface in ChangeLog buffers.
+
\\{debbugs-gnu-change-mode-map}"
:lighter " Debbugs" :keymap debbugs-gnu-change-mode-map)
diff --git a/debbugs-ug.texi b/debbugs-ug.texi
index bf6de82..b4d8885 100644
--- a/debbugs-ug.texi
+++ b/debbugs-ug.texi
@@ -183,6 +183,7 @@ This is useful for bug triages.
The GNU Debbugs server allows text search in the database in the
messages submitted to the bugs. It uses a
+@c https does not work.
@uref{http://fallabs.com/hyperestraier/uguide-en.html#searchcond,
HyperEstraier based search engine}@footnote{This has been added to the
Debbugs/SOAP backend of the GNU Debbugs server only.}.
diff --git a/debbugs.el b/debbugs.el
index 787e476..2959911 100644
--- a/debbugs.el
+++ b/debbugs.el
@@ -5,8 +5,8 @@
;; Author: Michael Albinus <michael.albinus@gmx.de>
;; Keywords: comm, hypermedia
;; Package: debbugs
-;; Version: 0.15
-;; Package-Requires: ((soap-client "3.1.1") (cl-lib "0.5"))
+;; Version: 0.16
+;; Package-Requires: ((soap-client "3.1.5") (cl-lib "0.5"))
;; This file is not part of GNU Emacs.
@@ -562,6 +562,8 @@ Example:
(when (member (symbol-name (car elt)) tags)
(setq result (append (cdr elt) result)))))))
+;; get_bug_log ought to have an optional argument $msg_num. According
+;; to Debbugs/SOAP.pm, currently $msg_num is completely ignored. So we do.
(defun debbugs-get-bug-log (bug-number)
"Return a list of messages related to BUG-NUMBER.
diff --git a/debbugs.info b/debbugs.info
index 8197dd0..4755e43 100644
--- a/debbugs.info
+++ b/debbugs.info
@@ -1,4 +1,4 @@
-This is debbugs.info, produced by makeinfo version 6.4.90 from
+This is debbugs.info, produced by makeinfo version 6.5 from
debbugs.texi.
Copyright (C) 2011-2018 Free Software Foundation, Inc.
@@ -85,14 +85,14 @@ Installation on Emacs 22 and Emacs 23
If you want to install 'debbugs' on Emacs 22/23, you will need to
install the 'soap-client' library first. It can be downloaded from
the Emacs SOAP client project page
-(http://code.google.com/p/emacs-soap-client/).
+(https://code.google.com/p/emacs-soap-client/).
Compile the library and add it into your 'load-path':
(add-to-list 'load-path "/path/to/emacs-soap-client/")
'debbugs' library can be downloaded from the ELPA repository
-(http://elpa.gnu.org/packages/). Compile it and set the 'load-path':
+(https://elpa.gnu.org/packages/). Compile it and set the 'load-path':
(add-to-list 'load-path "/path/to/debbugs/")
@@ -220,7 +220,7 @@ Debbugs server the list of bug numbers that match a user's
query.
'"jessie"', '"jessie-ignore"', '"stretch"',
'"stretch-ignore"', '"buster"', '"buster-ignore"'. The
actual list of tags can be found on
- <http://www.debian.org/Bugs/Developer#tags>.
+ <https://www.debian.org/Bugs/Developer#tags>.
GNU port: '"fixed"', '"notabug"', '"wontfix"',
'"unreproducible"', '"moreinfo"', '"patch"', '"pending"',
@@ -660,7 +660,7 @@ File: debbugs.info, Node: Requesting messages, Next:
Requesting user tags, Pr
'mboxstatus'
Download status mbox. The use of either symbol depends on
the actual Debbugs server configuration. For '"gnu.org"',
- use the former; for '"debian.org' - the latter.
+ use the former; for '"debian.org"' - the latter.
FILENAME, if non-'nil', is the name of the file to store mbox.
If FILENAME is 'nil', the downloaded mbox is inserted into the
@@ -722,13 +722,13 @@ also package names as user identification.
Tag Table:
-Node: Top1097
-Node: Installation3238
-Node: Configuration4337
-Node: Requesting bug numbers6692
+Node: Top1094
+Node: Installation3235
+Node: Configuration4336
+Node: Requesting bug numbers6691
Node: Requesting bugs statuses12073
Node: Searching bugs16365
Node: Requesting messages23171
-Node: Requesting user tags26177
+Node: Requesting user tags26178
End Tag Table
diff --git a/debbugs.texi b/debbugs.texi
index 84d58f2..9b01512 100644
--- a/debbugs.texi
+++ b/debbugs.texi
@@ -89,7 +89,7 @@ Install @code{debbugs} from the @ref{Packaging, ELPA
repository, , elisp}.
If you want to install @code{debbugs} on Emacs 22/23, you will need to
install the @code{soap-client} library first. It can be downloaded from
-the @uref{http://code.google.com/p/emacs-soap-client/, Emacs SOAP client
+the @uref{https://code.google.com/p/emacs-soap-client/, Emacs SOAP client
project page}.
Compile the library and add it into your @code{load-path}:
@@ -99,7 +99,7 @@ Compile the library and add it into your @code{load-path}:
@end example
@code{debbugs} library can be downloaded from the
-@uref{http://elpa.gnu.org/packages/, ELPA repository}. Compile it and
+@uref{https://elpa.gnu.org/packages/, ELPA repository}. Compile it and
set the @code{load-path}:
@example
@@ -230,7 +230,7 @@ Debian port: @code{"patch"}, @code{"wontfix"},
@code{"moreinfo"},
@code{"wheezy"}, @code{"wheezy-ignore"}, @code{"jessie"},
@code{"jessie-ignore"}, @code{"stretch"}, @code{"stretch-ignore"},
@code{"buster"}, @code{"buster-ignore"}. The actual list of tags can
-be found on @uref{http://www.debian.org/Bugs/Developer#tags}.
+be found on @uref{https://www.debian.org/Bugs/Developer#tags}.
GNU port: @code{"fixed"}, @code{"notabug"}, @code{"wontfix"},
@code{"unreproducible"}, @code{"moreinfo"}, @code{"patch"},
@@ -465,6 +465,7 @@ values are strings or numbers, i.e.@: @var{:keyword}
@var{value}
Every sublist of the @var{query} forms a hyperestraier condition. A
detailed description of hyperestraier conditions can be found at
+@c https does not work.
@url{http://fallabs.com/hyperestraier/uguide-en.html#searchcond}.
The following conditions are possible:
@@ -685,7 +686,7 @@ from the Debbugs server.
@itemx mboxstatus
Download status mbox. The use of either symbol depends on the actual
Debbugs server configuration. For @code{"gnu.org"}, use the former;
-for @code{"debian.org} - the latter.
+for @code{"debian.org"} - the latter.
@end table
@var{filename}, if non-@code{nil}, is the name of the file to store
- [elpa] externals/debbugs 5aea250 186/311: Fix last checkin, (continued)
- [elpa] externals/debbugs 5aea250 186/311: Fix last checkin, Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs 60502ec 193/311: Release debbugs 0.9.6., Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs b816a36 192/311: Further work on debbugs-gnu-search, Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs d8ca060 200/311: Improve debbugs menu and buffer name, Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs ac30a2e 197/311: Fix the values possible for status queries in debbugs, Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs 16178a5 201/311: Use dynamic completion for bug numbers in debbugs, Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs ea87a30 202/311: Make debbugs-newest-bugs more robust, Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs d979be4 209/311: Documentation enhancement for debbugs, Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs 636511a 232/311: Support "forwarded" in debbugs, Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs 1b1f19b 229/311: Not all bug reports have a subject, apparently., Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs c304562 233/311: Release debbugs 0.16,
Stefan Monnier <=
- [elpa] externals/debbugs 04f0926 230/311: Avoid double entries in debbugs, Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs 8e2d3ed 235/311: * packages/debbugs/instructions.texi: Add @anchor{}., Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs ba4b447 239/311: New command debbugs-control-make-message (Bug#33225), Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs d92eade 238/311: Release debbugs 0.17, Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs 6751c76 243/311: * packages/debbugs/instructions.texi: Sync with https://www.debian.org/Bugs/server-control., Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs 07bf4e1 244/311: Search further if d-g-cur-status is nil (Bug#35121), Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs 0dfc1d6 256/311: * packages/debbugs/debbugs-gnu.el (debbugs-gnu-fix-patch): Simplify a bit, Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs 082b9e6 257/311: Try harder to find the file to patch in debbugs-gnu, Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs edc792e 253/311: * packages/debbugs/debbugs-gnu.el (debbugs-gnu-show-reports):, Stefan Monnier, 2020/11/29
- [elpa] externals/debbugs 889d1dc 263/311: Use pop-to-buffer-same-window in debbugs-gnu-show-reports, Stefan Monnier, 2020/11/29