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

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

[elpa] externals/debbugs d92eade 238/311: Release debbugs 0.17


From: Stefan Monnier
Subject: [elpa] externals/debbugs d92eade 238/311: Release debbugs 0.17
Date: Sun, 29 Nov 2020 18:42:20 -0500 (EST)

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

    Release debbugs 0.17
    
    * packages/debbugs/Debbugs.wsdl:
    * packages/debbugs/debbugs-browse.el:
    * packages/debbugs/debbugs-org.el:
    * packages/debbugs/debbugs-ug.info:
    * packages/debbugs/debbugs-ug.texi:
    * packages/debbugs/debbugs.info:
    * packages/debbugs/debbugs.texi: Update copyright years.
    
    * packages/debbugs/debbugs-gnu.el (debbugs-gnu-default-packages):
    Add ada-mode.
    (debbugs-gnu-search): Send message when search is finished.
    (debbugs-gnu-lars-workflow): New user option.
    (debbugs-read-emacs-bug-with-gnus): Use it.
    
    * packages/debbugs/debbugs.el: Increase Version to 0.17.
---
 Debbugs.wsdl      |  2 +-
 debbugs-browse.el |  2 +-
 debbugs-gnu.el    | 22 ++++++++++++++++------
 debbugs-org.el    |  2 +-
 debbugs-ug.info   |  2 +-
 debbugs-ug.texi   |  2 +-
 debbugs.el        |  4 ++--
 debbugs.info      |  2 +-
 debbugs.texi      |  2 +-
 9 files changed, 25 insertions(+), 15 deletions(-)

diff --git a/Debbugs.wsdl b/Debbugs.wsdl
index 24ef93b..c50d78a 100644
--- a/Debbugs.wsdl
+++ b/Debbugs.wsdl
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
-<!-- Copyright (C) 2011-2018  Free Software Foundation, Inc.
+<!-- Copyright (C) 2011-2019  Free Software Foundation, Inc.
 
 This file is not part of GNU Emacs.
 
diff --git a/debbugs-browse.el b/debbugs-browse.el
index ee00926..e5966f9 100644
--- a/debbugs-browse.el
+++ b/debbugs-browse.el
@@ -1,6 +1,6 @@
 ;; debbugs-browse.el --- browse bug URLs with debbugs-gnu or debbugs-org
 
-;; Copyright (C) 2015-2018 Free Software Foundation, Inc.
+;; Copyright (C) 2015-2019 Free Software Foundation, Inc.
 
 ;; Author: Michael Albinus <michael.albinus@gmx.de>
 ;; Keywords: comm, hypermedia, maint
diff --git a/debbugs-gnu.el b/debbugs-gnu.el
index 5466d65..aa584b2 100644
--- a/debbugs-gnu.el
+++ b/debbugs-gnu.el
@@ -1,6 +1,6 @@
 ;;; debbugs-gnu.el --- interface for the GNU bug tracker  -*- 
lexical-binding:t -*-
 
-;; Copyright (C) 2011-2018 Free Software Foundation, Inc.
+;; Copyright (C) 2011-2019 Free Software Foundation, Inc.
 
 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
 ;;         Michael Albinus <michael.albinus@gmx.de>
@@ -243,7 +243,8 @@ If nil, the value of `send-mail-function' is used instead."
   ;; <https://debbugs.gnu.org/Packages.html>
   ;; <https://debbugs.gnu.org/cgi/pkgindex.cgi>
   :group 'debbugs-gnu
-  :type `(set (const "adns")
+  :type `(set (const "ada-mode")
+             (const "adns")
              (const "auctex")
              (const "automake")
              (const "cc-mode")
@@ -274,7 +275,7 @@ If nil, the value of `send-mail-function' is used instead."
                      'help-echo "This is a pseudo-package for test."))
              (const "vc-dwim")
              (const "woodchuck"))
-  :version "25.2")
+  :version "27.1")
 
 (defconst debbugs-gnu-all-packages
   (mapcar 'cadr (cdr (get 'debbugs-gnu-default-packages 'custom-type)))
@@ -553,7 +554,9 @@ marked as \"client-side filter\"."
             (t (throw :finished nil)))))
 
        ;; Do the search.
-       (debbugs-gnu severities packages archivedp))))
+       (debbugs-gnu severities packages archivedp)
+       (when (called-interactively-p 'interactive)
+         (message "Search finished")))))
 
 ;;;###autoload
 (defun debbugs-gnu-patches ()
@@ -1326,13 +1329,20 @@ MERGED is the list of bugs merged with this one."
     (define-key rmail-mode-map "C" 'debbugs-gnu-send-control-message)
     (rmail-show-message 1)))
 
+(defcustom debbugs-gnu-lars-workflow nil
+  "If non-nil, set some Gnus vars as preferred by Lars."
+  :group 'debbugs-gnu
+  :type 'boolean
+  :version "27.1")
+
 (defun debbugs-read-emacs-bug-with-gnus (id status merged)
   "Read email exchange for debbugs bug ID.
 STATUS is the bug's status list.
 MERGED is the list of bugs merged with this one."
   (require 'gnus-dup)
-  (setq gnus-suppress-duplicates t
-       gnus-save-duplicate-list t)
+  (when debbugs-gnu-lars-workflow
+    (setq gnus-suppress-duplicates t
+         gnus-save-duplicate-list t))
   ;; Use Gnus.
   (gnus-read-ephemeral-emacs-bug-group
    (cons id (if (listp merged) merged (list merged)))
diff --git a/debbugs-org.el b/debbugs-org.el
index 8020fed..a0e86b7 100644
--- a/debbugs-org.el
+++ b/debbugs-org.el
@@ -1,6 +1,6 @@
 ;;; debbugs-org.el --- Org-mode interface for the GNU bug tracker  -*- 
lexical-binding:t -*-
 
-;; Copyright (C) 2013-2018 Free Software Foundation, Inc.
+;; Copyright (C) 2013-2019 Free Software Foundation, Inc.
 
 ;; Author: Michael Albinus <michael.albinus@gmx.de>
 ;; Keywords: comm, hypermedia, maint, outlines
diff --git a/debbugs-ug.info b/debbugs-ug.info
index 7823ebe..157254d 100644
--- a/debbugs-ug.info
+++ b/debbugs-ug.info
@@ -1,7 +1,7 @@
 This is debbugs-ug.info, produced by makeinfo version 6.5 from
 debbugs-ug.texi.
 
-Copyright (C) 2015-2018 Free Software Foundation, Inc.
+Copyright (C) 2015-2019 Free Software Foundation, Inc.
 
      Permission is granted to copy, distribute and/or modify this
      document under the terms of the GNU Free Documentation License,
diff --git a/debbugs-ug.texi b/debbugs-ug.texi
index ea6d51e..0a33512 100644
--- a/debbugs-ug.texi
+++ b/debbugs-ug.texi
@@ -8,7 +8,7 @@
 @end direntry
 
 @copying
-Copyright @copyright{} 2015-2018 Free Software Foundation, Inc.
+Copyright @copyright{} 2015-2019 Free Software Foundation, Inc.
 
 @quotation
 Permission is granted to copy, distribute and/or modify this document
diff --git a/debbugs.el b/debbugs.el
index 2959911..bbc0990 100644
--- a/debbugs.el
+++ b/debbugs.el
@@ -1,11 +1,11 @@
 ;;; debbugs.el --- SOAP library to access debbugs servers  -*- 
lexical-binding:t -*-
 
-;; Copyright (C) 2011-2018 Free Software Foundation, Inc.
+;; Copyright (C) 2011-2019 Free Software Foundation, Inc.
 
 ;; Author: Michael Albinus <michael.albinus@gmx.de>
 ;; Keywords: comm, hypermedia
 ;; Package: debbugs
-;; Version: 0.16
+;; Version: 0.17
 ;; Package-Requires: ((soap-client "3.1.5") (cl-lib "0.5"))
 
 ;; This file is not part of GNU Emacs.
diff --git a/debbugs.info b/debbugs.info
index 4755e43..fdcd79c 100644
--- a/debbugs.info
+++ b/debbugs.info
@@ -1,7 +1,7 @@
 This is debbugs.info, produced by makeinfo version 6.5 from
 debbugs.texi.
 
-Copyright (C) 2011-2018 Free Software Foundation, Inc.
+Copyright (C) 2011-2019 Free Software Foundation, Inc.
 
      Permission is granted to copy, distribute and/or modify this
      document under the terms of the GNU Free Documentation License,
diff --git a/debbugs.texi b/debbugs.texi
index 898fdb6..13d0501 100644
--- a/debbugs.texi
+++ b/debbugs.texi
@@ -8,7 +8,7 @@
 @end direntry
 
 @copying
-Copyright @copyright{} 2011-2018 Free Software Foundation, Inc.
+Copyright @copyright{} 2011-2019 Free Software Foundation, Inc.
 
 @quotation
 Permission is granted to copy, distribute and/or modify this document



reply via email to

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