GNU bug report logs - #57980
[PATCH] gnu: Add emacs-piem.

Previous Next

Package: guix-patches;

Reported by: zimoun <zimon.toutoune <at> gmail.com>

Date: Wed, 21 Sep 2022 14:10: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 57980 in the body.
You can then email your comments to 57980 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 kyle <at> kyleam.com, guix-patches <at> gnu.org:
bug#57980; Package guix-patches. (Wed, 21 Sep 2022 14:10:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to zimoun <zimon.toutoune <at> gmail.com>:
New bug report received and forwarded. Copy sent to kyle <at> kyleam.com, guix-patches <at> gnu.org. (Wed, 21 Sep 2022 14:10:02 GMT) Full text and rfc822 format available.

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

From: zimoun <zimon.toutoune <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: zimoun <zimon.toutoune <at> gmail.com>
Subject: [PATCH] gnu: Add emacs-piem.
Date: Wed, 21 Sep 2022 16:09:12 +0200
* gnu/packages/emacs-xyz.scm (emacs-piem): New variable.
---
 gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 32e4c33f16..03ad569300 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -7011,6 +7011,34 @@ (define-public emacs-debbugs
 Tracker as well as bug identifiers prepared for @code{bug-reference-mode}.")
     (license license:gpl3+)))
 
+(define-public emacs-piem
+  (package
+    (name "emacs-piem")
+    (version "0.4.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://git.kyleam.com/piem.git")
+             (commit (string-append "v" version))))
+       (file-name (string-append name "-" version "-checkout"))
+       (sha256
+        (base32 "0wr6n6wvznngjdp4c0pmdr4xz05dark0kxi5svzhzxsg3rdaql3z"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     (list b4
+           emacs-elfeed
+           emacs-notmuch
+           emacs-transient))
+    (home-page "https://docs.kyleam.com/piem")
+    (synopsis "Glue for working with public-inbox archives")
+    (description "This packages provides a collection of Emacs libraries for
+working with public-inbox archives. As much of the hard work here is already
+done by other Emacs libraries—things like mail clients, news readers, Git
+interfaces, and even web browsers—piem is mostly about bridging some of these
+parts for convenience.")
+    (license license:gpl3)))
+
 (define-public emacs-ert-expectations
   (package
     (name "emacs-ert-expectations")

base-commit: 6885f22375b093c08d69bbed6aa42d2e8c11a168
-- 
2.36.0





Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Sat, 24 Sep 2022 18:58:01 GMT) Full text and rfc822 format available.

Notification sent to zimoun <zimon.toutoune <at> gmail.com>:
bug acknowledged by developer. (Sat, 24 Sep 2022 18:58:02 GMT) Full text and rfc822 format available.

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

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: zimoun <zimon.toutoune <at> gmail.com>
Cc: Kyle Meyer <kyle <at> kyleam.com>, 57980-done <at> debbugs.gnu.org
Subject: Re: [bug#57980] [PATCH] gnu: Add emacs-piem.
Date: Sat, 24 Sep 2022 20:57:24 +0200
Hello,

zimoun <zimon.toutoune <at> gmail.com> writes:

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

Thank you. Applied with the following changes:

> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://git.kyleam.com/piem.git")

I removed ".git" suffix.

> +             (commit (string-append "v" version))))
> +       (file-name (string-append name "-" version "-checkout"))
> +       (sha256
> +        (base32 "0wr6n6wvznngjdp4c0pmdr4xz05dark0kxi5svzhzxsg3rdaql3z"))))
> +    (build-system emacs-build-system)
> +    (propagated-inputs
> +     (list b4

This need to be moved to inputs, along with an appropriate phase. I'll
do this in a later commit.

> +    (description "This packages provides a collection of Emacs libraries for
> +working with public-inbox archives. As much of the hard work here is already
> +done by other Emacs libraries—things like mail clients, news readers, Git
> +interfaces, and even web browsers—piem is mostly about bridging some of these
> +parts for convenience.")

I added two spaces between sentences.

> +    (license license:gpl3)))

License is actually GPL3+ (I forgot to change it, I'll do this in
a later commit too)

Regards,
-- 
Nicolas Goaziou




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

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

From: zimoun <zimon.toutoune <at> gmail.com>
To: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
Cc: Kyle Meyer <kyle <at> kyleam.com>, 57980-done <at> debbugs.gnu.org
Subject: Re: bug#57980: [PATCH] gnu: Add emacs-piem.
Date: Sun, 25 Sep 2022 13:19:28 +0200
Hi,

On Sat, 24 Sep 2022 at 20:57, Nicolas Goaziou <mail <at> nicolasgoaziou.fr> wrote:

> Thank you. Applied with the following changes:

Oh my bad.  Thank you for the fixes.


Cheers,
simon




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

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

Previous Next


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