discussion and development of piem
 help / color / mirror / code / Atom feed
From: jlicht@fsfe.org
To: piem@inbox.kyleam.com
Cc: Jelle Licht <jlicht@fsfe.org>
Subject: [PATCH v3 5/5] Add basic integration for debbugs
Date: Sat, 10 Jun 2023 11:58:58 +0200	[thread overview]
Message-ID: <20230610095858.26982-6-jlicht@fsfe.org> (raw)
In-Reply-To: <20230610095858.26982-1-jlicht@fsfe.org>

From: Jelle Licht <jlicht@fsfe.org>

---
 Documentation/piem.texi |  2 ++
 Makefile                |  8 +++--
 piem-debbugs.el         | 67 +++++++++++++++++++++++++++++++++++++++++
 3 files changed, 74 insertions(+), 3 deletions(-)
 create mode 100644 piem-debbugs.el

diff --git a/Documentation/piem.texi b/Documentation/piem.texi
index 99185d3..091a054 100644
--- a/Documentation/piem.texi
+++ b/Documentation/piem.texi
@@ -222,6 +222,7 @@ command @code{piem-clear-merged-inboxes} to clear the cache.
 
 @node Enabling integration libraries
 @section Enabling integration libraries
+@findex piem-debbugs-mode
 @findex piem-elfeed-mode
 @findex piem-eww-mode
 @findex piem-gnus-mode
@@ -233,6 +234,7 @@ particular Emacs modes to link a buffer with a registered inbox.  piem
 currently has libraries to support
 
 @itemize
+@item Debbugs
 @item EWW
 @item Elfeed
 @item Gnus
diff --git a/Makefile b/Makefile
index b8d9fe6..917cbaa 100644
--- a/Makefile
+++ b/Makefile
@@ -4,9 +4,10 @@ EMACS   = emacs
 # Rely on EMACSLOADPATH for everything but the current directory.
 BATCH   = $(EMACS) --batch -Q -L . -L tests
 
-EL = piem.el piem-b4.el piem-elfeed.el piem-eww.el piem-gnus.el \
-     piem-lei.el piem-maildir.el piem-notmuch.el piem-rmail.el \
-     tests/piem-lei-tests.el tests/piem-rmail-tests.el tests/piem-tests.el
+EL = piem.el piem-b4.el piem-debbugs.el piem-elfeed.el piem-eww.el	\
+     piem-gnus.el piem-lei.el piem-maildir.el piem-notmuch.el		\
+     piem-rmail.el tests/piem-lei-tests.el tests/piem-rmail-tests.el	\
+     tests/piem-tests.el
 ELC = $(EL:.el=.elc)
 
 all: compile Documentation/piem.info piem-autoloads.el
@@ -33,6 +34,7 @@ docs: Documentation/piem.html Documentation/piem.info
 
 piem-b4.elc: piem-b4.el piem.elc
 piem-elfeed.elc: piem-elfeed.el piem.elc
+piem-debbugs.elc: piem-debbugs.el piem.elc
 piem-eww.elc: piem-eww.el piem.elc
 piem-gnus.elc: piem-gnus.el piem.elc
 piem-lei.elc: piem-lei.el piem.elc
diff --git a/piem-debbugs.el b/piem-debbugs.el
new file mode 100644
index 0000000..00b0354
--- /dev/null
+++ b/piem-debbugs.el
@@ -0,0 +1,67 @@
+;;; piem-debbugs.el --- Debbugs integration for piem  -*- lexical-binding: t; -*-
+
+;; Copyright all piem contributors <piem@inbox.kyleam.com>
+
+;; Author: Jelle Licht <jlicht@fsfe.org>
+;; Keywords: vc, tools
+;; Package-Requires: ((emacs "26.3")(debbugs "0.29"))
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; This library provides a minor mode, `piem-debbugs-mode', that modifies
+;; `piem' variables to teach functions like `piem-inbox' how to
+;; extract information from Debbugs buffers.
+
+;;; Code:
+
+(require 'debbugs-gnu)
+(require 'piem)
+
+(defgroup piem-debbugs nil
+  "Debbugs integration for piem."
+  :group 'piem)
+
+(defun piem-debbugs-get-inbox ()
+  "Return inbox name from a Debbugs buffer."
+  (when (and (derived-mode-p 'debbugs-gnu-mode)
+             (boundp 'debbugs-gnu-local-query))
+    (when-let ((gnu-package (alist-get 'package debbugs-gnu-local-query)))
+      (piem-inbox-by-gnu-package-match gnu-package))))
+
+(defun piem-debbugs-get-mid ()
+  "Return the message ID of a Debbugs buffer."
+  (when (derived-mode-p 'debbugs-gnu-mode)
+    (let ((msgid (alist-get 'msgid (debbugs-gnu-current-status))))
+      (when (stringp msgid)
+        (string-trim msgid "<" ">")))))
+
+;;;###autoload
+(define-minor-mode piem-debbugs-mode
+  "Toggle Debbugs support for piem.
+With a prefix argument ARG, enable piem-debbugs mode if ARG is
+positive, and disable it otherwise.  If called from Lisp, enable
+the mode if ARG is omitted or nil."
+  :global t
+  :init-value nil
+  (if piem-debbugs-mode
+      (progn
+        (add-hook 'piem-get-inbox-functions #'piem-debbugs-get-inbox)
+        (add-hook 'piem-get-mid-functions #'piem-debbugs-get-mid))
+    (remove-hook 'piem-get-inbox-functions #'piem-debbugs-get-inbox)
+    (remove-hook 'piem-get-mid-functions #'piem-debbugs-get-mid)))
+
+;;; piem-debbugs.el ends here
+(provide 'piem-debbugs)
-- 
2.40.1


  parent reply	other threads:[~2023-06-10  9:59 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-08 16:59 [PATCH 1/2] piem: Add :gnu-package keyword to piem-inboxes jlicht
2023-06-08 16:59 ` [PATCH 2/2] gnus: Skip adding mboxrd from-line when not needed jlicht
2023-06-09 12:48 ` [PATCH v2 0/5] New piem-debbugs integration jlicht
2023-06-09 12:48   ` [PATCH v2 1/5] piem: Add :gnu-package keyword to piem-inboxes jlicht
2023-06-10  4:52     ` Kyle Meyer
2023-06-10 10:02       ` Jelle Licht
2023-06-09 12:48   ` [PATCH v2 2/5] gnus: Skip adding mboxrd from-line when not needed jlicht
2023-06-10  4:55     ` Kyle Meyer
2023-06-10 10:07       ` Jelle Licht
2023-06-09 12:48   ` [PATCH v2 3/5] piem: Add piem-inbox-by-gnu-package-match jlicht
2023-06-10  4:57     ` Kyle Meyer
2023-06-10 10:08       ` Jelle Licht
2023-06-09 12:48   ` [PATCH v2 4/5] gnus: Add support for matching inbox by X-GNU-PR-PACKAGE header jlicht
2023-06-10  4:58     ` Kyle Meyer
2023-06-10 10:08       ` Jelle Licht
2023-06-09 12:48   ` [PATCH v2 5/5] Add basic integration for debbugs jlicht
2023-06-10  4:59     ` Kyle Meyer
2023-06-10 10:11       ` Jelle Licht
2023-06-10  5:00   ` [PATCH v2 0/5] New piem-debbugs integration Kyle Meyer
2023-06-10  9:58 ` [PATCH v3 " jlicht
2023-06-10  9:58   ` [PATCH v3 1/5] piem: Add :gnu-package keyword to piem-inboxes jlicht
2023-06-10  9:58   ` [PATCH v3 2/5] gnus: Skip adding mboxrd from-line when not needed jlicht
2023-06-10  9:58   ` [PATCH v3 3/5] piem: Add piem-inbox-by-gnu-package-match jlicht
2023-06-10 23:17     ` Kyle Meyer
2023-06-10  9:58   ` [PATCH v3 4/5] piem-inbox-by-header-match: Fallback to matching via :gnu-package jlicht
2023-06-10  9:58   ` jlicht [this message]
2023-06-10 23:16   ` [PATCH v3 0/5] New piem-debbugs integration Kyle Meyer
2023-06-10 23:46     ` Jelle Licht
2023-06-11  0:55       ` Kyle Meyer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://git.kyleam.com/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230610095858.26982-6-jlicht@fsfe.org \
    --to=jlicht@fsfe.org \
    --cc=piem@inbox.kyleam.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.kyleam.com/piem/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).