GNU bug report logs - #58058
[PATCH 0/1] Add emacs-ol-notmuch

Previous Next

Package: guix-patches;

Reported by: Fredrik Salomonsson <plattfot <at> posteo.net>

Date: Sun, 25 Sep 2022 01:48:02 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 58058 in the body.
You can then email your comments to 58058 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#58058; Package guix-patches. (Sun, 25 Sep 2022 01:48:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Fredrik Salomonsson <plattfot <at> posteo.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 25 Sep 2022 01:48:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Fredrik Salomonsson <plattfot <at> posteo.net>
To: guix-patches <at> gnu.org
Cc: Fredrik Salomonsson <plattfot <at> posteo.net>
Subject: [PATCH 0/1] Add emacs-ol-notmuch
Date: Sun, 25 Sep 2022 01:47:02 +0000
Add emacs-ol-notmuch, it was in org contrib but was recently removed.

Fredrik Salomonsson (1):
  gnu: Add emacs-ol-notmuch.

 gnu/packages/emacs-xyz.scm | 39 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)


base-commit: fc07082fe3d750c85282c4aa57d01a36ebe9296b
-- 
2.37.3





Information forwarded to guix-patches <at> gnu.org:
bug#58058; Package guix-patches. (Sun, 25 Sep 2022 01:51:02 GMT) Full text and rfc822 format available.

Message #8 received at 58058 <at> debbugs.gnu.org (full text, mbox):

From: Fredrik Salomonsson <plattfot <at> posteo.net>
To: 58058 <at> debbugs.gnu.org
Cc: Fredrik Salomonsson <plattfot <at> posteo.net>
Subject: [PATCH 1/1] gnu: Add emacs-ol-notmuch.
Date: Sun, 25 Sep 2022 01:50:13 +0000
* gnu/packages/emacs-xyz.scm (emacs-ol-notmuch): New variable.
---
 gnu/packages/emacs-xyz.scm | 39 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 0e3e0be3b8..1e30079e56 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -7009,6 +7009,45 @@ (define-public emacs-ob-async
 src blocks.")
     (license license:gpl3+)))
 
+(define-public emacs-ol-notmuch
+  (let ((commit "1a53d6c707514784cabf33d865b577bf77f45913")
+        (revision "0"))
+    (package
+     (name "emacs-ol-notmuch")
+     (version (git-version "2.0.0" revision commit))
+     (source
+      (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://git.sr.ht/~tarsius/ol-notmuch")
+             (commit commit)))
+       (sha256
+        (base32
+         "16p7j51z8r047alwn2hkb6944f7ds29ckb97b4k8ia00vwch0d67"))
+       (file-name (git-file-name name version))))
+     (build-system emacs-build-system)
+     (propagated-inputs
+      (list
+       emacs-compat
+       emacs-notmuch
+       emacs-org))
+     (home-page "https://git.sr.ht/~tarsius/ol-notmuch")
+     (synopsis "Links to notmuch messages for Emacs' Org mode")
+     (description
+      "This package implements links to notmuch messages and \"searches\" for
+Emacs' Org mode. A search is a query to be performed by notmuch; it is the
+equivalent to folders in other mail clients. Similarly, mails are referred to
+by a query, so both a link can refer to several mails.
+
+Links have one the following forms - notmuch:<search terms> -
+notmuch-search:<search terms>.
+
+The first form open the queries in `notmuch-show-mode', whereas the
+second link open it in `notmuch-search-mode'. Note that queries are
+performed at the time the link is opened, and the result may be
+different from when the link was stored.")
+     (license license:gpl3+))))
+
 (define-public emacs-debbugs
   (package
     (name "emacs-debbugs")
-- 
2.37.3





Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Sun, 25 Sep 2022 13:24:02 GMT) Full text and rfc822 format available.

Notification sent to Fredrik Salomonsson <plattfot <at> posteo.net>:
bug acknowledged by developer. (Sun, 25 Sep 2022 13:24:02 GMT) Full text and rfc822 format available.

Message #13 received at 58058-done <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Fredrik Salomonsson <plattfot <at> posteo.net>
Cc: 58058-done <at> debbugs.gnu.org
Subject: Re: [bug#58058] [PATCH 1/1] gnu: Add emacs-ol-notmuch.
Date: Sun, 25 Sep 2022 15:23:28 +0200
Hello,

Fredrik Salomonsson <plattfot <at> posteo.net> writes:

> * gnu/packages/emacs-xyz.scm (emacs-ol-notmuch): New variable.

Applied. Thank you.

> +     (description
> +      "This package implements links to notmuch messages and \"searches\" for
> +Emacs' Org mode. A search is a query to be performed by notmuch; it is the
> +equivalent to folders in other mail clients. Similarly, mails are referred to
> +by a query, so both a link can refer to several mails.
> +
> +Links have one the following forms - notmuch:<search terms> -
> +notmuch-search:<search terms>.
> +
> +The first form open the queries in `notmuch-show-mode', whereas the
> +second link open it in `notmuch-search-mode'. Note that queries are
> +performed at the time the link is opened, and the result may be
> +different from when the link was stored.")

I removed the two last paragraphs, which belong to the documentation
rather than a description. I also separated sentences with two spaces,
as requested by Texinfo markup.

Regards,
-- 
Nicolas Goaziou




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 24 Oct 2022 11:24:11 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 179 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.