emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/debbugs c852b57ba2 2/2: Release debbugs 0.34


From: Michael Albinus
Subject: [elpa] externals/debbugs c852b57ba2 2/2: Release debbugs 0.34
Date: Wed, 5 Oct 2022 16:07:34 -0400 (EDT)

branch: externals/debbugs
commit c852b57ba235e54a46ef7c1e5198d7e34957650c
Author: Michael Albinus <michael.albinus@gmx.de>
Commit: Michael Albinus <michael.albinus@gmx.de>

    Release debbugs 0.34
    
    * debbugs-gnu.el (debbugs-gnu-my-open-bugs):
    * debbugs-guix.el (debbugs-org-guix-search):
    * debbugs-org.el (debbugs-org-my-open-bugs): Fix docstring.
    
    * debbugs-ug.texi (Searching Bugs): Mention also
    debbugs-org-search in the text.
    (Customizing debbugs-gnu-pick-commits): Remove node index.
    
    * debbugs.el: Bump version to 0.34.
---
 debbugs-gnu.el  | 12 ++++++------
 debbugs-guix.el | 23 ++++++++++++-----------
 debbugs-org.el  | 13 +++++++------
 debbugs-ug.texi |  7 ++++---
 debbugs.el      |  2 +-
 5 files changed, 30 insertions(+), 27 deletions(-)

diff --git a/debbugs-gnu.el b/debbugs-gnu.el
index bc6417c5f5..d5cb7432e9 100644
--- a/debbugs-gnu.el
+++ b/debbugs-gnu.el
@@ -164,13 +164,13 @@
 ;; presented, and in the latter case the last 10 bugs are shown,
 ;; counting from the highest bug number in the repository.
 
-;; M-x debbugs-gnu-my-open-bugs
+;;   M-x debbugs-gnu-my-open-bugs
 ;;
 ;; It is a good idea to maintain and eventually close your open bug
-;; reports.  The function 'debbugs-gnu-my-open-bugs' helps you do
+;; reports.  The function `debbugs-gnu-my-open-bugs' helps you do
 ;; this, by retrieving open bug reports, in which you are the
 ;; submitter.  This function assumes that you have defined the
-;; variable 'user-mail-address'.
+;; variable `user-mail-address'.
 
 ;; For posting commit to bugs, or constructing a bug closing message
 ;; based on a pushed commit, use the command
@@ -837,8 +837,8 @@ Shall be bound in `debbugs-org-*' functions.")
 
 ;;;###autoload
 (defun debbugs-gnu-my-open-bugs ()
-  "Retrieve the open bugs, that you submitted.  This function assumes the 
variable
-'user-mail-address' is defined."
+  "Retrieve the open bugs, that you submitted.
+This function assumes the variable `user-mail-address' is defined."
   (interactive)
   (apply #'debbugs-gnu-bugs (debbugs-get-bugs :submitter "me" :status "open")))
 
@@ -2494,7 +2494,7 @@ or bug ranges, with default to 
`debbugs-gnu-default-bug-number-list'."
   (when (called-interactively-p 'interactive)
     (message "Retrieving bugs finished")))
 
-(defalias 'debbugs-gnu-get-bug-by-id 'debbugs-gnu-bugs)
+(defalias 'debbugs-gnu-get-bug-by-id #'debbugs-gnu-bugs)
 
 (defcustom debbugs-gnu-trunk-directory "~/src/emacs/trunk/"
   "The directory where the main source tree lives."
diff --git a/debbugs-guix.el b/debbugs-guix.el
index c8d6b281f9..fac9600225 100644
--- a/debbugs-guix.el
+++ b/debbugs-guix.el
@@ -1,6 +1,6 @@
-;;; debbugs-guix.el Guix Specific Debbugs Functions -*- lexical-binding: t; -*-
+;;; debbugs-guix.el --- guix specific debbugs functions -*- lexical-binding: 
t; -*-
 ;;
-;; Copyright (C) 2011-2022 Free Software Foundation, Inc.
+;; Copyright (C) 2022 Free Software Foundation, Inc.
 
 ;; Author: Joshua Branson <jbranso@dismail.de>
 ;; Keywords: comm, hypermedia, maint
@@ -22,13 +22,13 @@
 ;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
 
 ;;; Commentary:
-;;
-;; By default, debbugs-gnu-search searches for open and closed bugs of
-;; all GNU packages, which can make searching a little slow.  To
-;; remedy this situation, this file provides the function
-;; 'debbugs-gnu-guix-search', which search for open bugs that relate
-;; to the GNU guix.
-;;
+
+;; By default, `debbugs-gnu-search' searches for open and closed bugs
+;; of all GNU packages, which can make searching a little slow.  To
+;; remedy this situation, this file provides the functions
+;; `debbugs-gnu-guix-search' and `debbugs-org-guix-search', which
+;; search for open bugs that relate to the GNU guix.
+
 ;;; Code:
 
 ;;;###autoload
@@ -40,12 +40,13 @@
 
 ;;;###autoload
 (defun debbugs-org-guix-search ()
-  "Search for open guix bugs and patches and display the results in an org
- buffer."
+  "Search for open guix bugs and patches and display the results in an \
+org buffer."
   (interactive)
   (let ((debbugs-gnu-show-reports-function #'debbugs-org-show-reports))
     (debbugs-gnu-search (read-string "Search String: ") '((pending . 
"pending"))
                         nil '("guix" "guix-patches") nil)))
 
 (provide 'debbugs-guix)
+
 ;;; debbugs-guix.el ends here
diff --git a/debbugs-org.el b/debbugs-org.el
index c62ffc0396..3d353c81e4 100644
--- a/debbugs-org.el
+++ b/debbugs-org.el
@@ -114,13 +114,13 @@
 ;; presented, and in the latter case the last 10 bugs are shown,
 ;; counting from the highest bug number in the repository.
 
-;; M-x debbugs-org-my-open-bugs
-;;
+;;   M-x debbugs-org-my-open-bugs
+
 ;; It is a good idea to maintain and eventually close your open bug
-;; reports.  The function 'debbugs-org-my-open-bugs' helps you do
+;; reports.  The function `debbugs-org-my-open-bugs' helps you do
 ;; this, by retrieving open bug reports, in which you are the
 ;; submitter.  This function assumes that you have defined the
-;; variable 'user-mail-address'.
+;; variable `user-mail-address'.
 
 ;;; Code:
 
@@ -362,8 +362,9 @@ or bug ranges, with default to 
`debbugs-gnu-default-bug-number-list'."
 
 ;;;###autoload
 (defun debbugs-org-my-open-bugs ()
-  "Retrieve the open bugs, that you submitted.  This function assumes the 
variable
-'user-mail-address' is defined."
+  "Retrieve the open bugs, that you submitted.
+This function assumes the variable `user-mail-address' is
+defined."
   (interactive)
   (let ((debbugs-gnu-show-reports-function #'debbugs-org-show-reports))
     (apply #'debbugs-gnu-bugs (debbugs-get-bugs :submitter "me" :status 
"open"))))
diff --git a/debbugs-ug.texi b/debbugs-ug.texi
index 0f0823f722..f320b0fcf4 100644
--- a/debbugs-ug.texi
+++ b/debbugs-ug.texi
@@ -206,6 +206,7 @@ of bugs you are currently working on.
 @ref{Presenting Bugs} for the presentation of the results.
 @end deffn
 
+
 @deffn  {Command} debbugs-gnu-my-open-bugs
 @deffnx {Command} debbugs-org-my-open-bugs
 
@@ -237,6 +238,7 @@ If this user option is non-@code{nil}, a progress report is 
shown when
 retrieving bugs, defaults to t.
 @end defopt
 
+
 @node Searching Bugs
 @chapter Searching in the Debbugs Database
 
@@ -380,8 +382,8 @@ These commands show also a progress report when
 @deffn  {Command} debbugs-gnu-guix-search
 @deffnx {Command} debbugs-org-guix-search
 
-By default, @code{debbugs-gnu-search} and @code{debbugs-org-search},
-search for all open bugs in the debbugs database.  While this is
+By default, @code{debbugs-gnu-search} and @code{debbugs-org-search}
+search for all open bugs in the debbugs database.  While this
 extensive search is laudable, it is perhaps not efficient.  These two
 functions will let you search for only open guix bugs and patches.
 @end deffn
@@ -846,7 +848,6 @@ the commit and where it was pushed to, and answering 
@kbd{y} will
 arrange for the bug to be closed when the message is sent.
 
 
-@node Customizing debbugs-gnu-pick-commits
 @subsection Customizing @code{debbugs-gnu-pick-commits}
 
 @vindex debbugs-gnu-commit-description-format
diff --git a/debbugs.el b/debbugs.el
index f19159e7bb..134d579952 100644
--- a/debbugs.el
+++ b/debbugs.el
@@ -5,7 +5,7 @@
 ;; Author: Michael Albinus <michael.albinus@gmx.de>
 ;; Keywords: comm, hypermedia
 ;; Package: debbugs
-;; Version: 0.33
+;; Version: 0.34
 ;; Package-Requires: ((emacs "26.1") (soap-client "3.1.5"))
 
 ;; This file is not part of GNU Emacs.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]