emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#57980: closed ([PATCH] gnu: Add emacs-piem.)


From: GNU bug Tracking System
Subject: bug#57980: closed ([PATCH] gnu: Add emacs-piem.)
Date: Sat, 24 Sep 2022 18:58:01 +0000

Your message dated Sat, 24 Sep 2022 20:57:24 +0200
with message-id <87mtaovbvv.fsf@nicolasgoaziou.fr>
and subject line Re: [bug#57980] [PATCH] gnu: Add emacs-piem.
has caused the debbugs.gnu.org bug report #57980,
regarding [PATCH] gnu: Add emacs-piem.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
57980: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=57980
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- 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




--- End Message ---
--- Begin Message --- Subject: Re: [bug#57980] [PATCH] gnu: Add emacs-piem. Date: Sat, 24 Sep 2022 20:57:24 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux)
Hello,

zimoun <zimon.toutoune@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


--- End Message ---

reply via email to

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