GNU bug report logs - #39323
[PATCH] gnu: Add emacs-delight.

Previous Next

Package: guix-patches;

Reported by: Amin Bandali <mab <at> gnu.org>

Date: Mon, 27 Jan 2020 23:53: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 39323 in the body.
You can then email your comments to 39323 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#39323; Package guix-patches. (Mon, 27 Jan 2020 23:53:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Amin Bandali <mab <at> gnu.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 27 Jan 2020 23:53:02 GMT) Full text and rfc822 format available.

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

From: Amin Bandali <mab <at> gnu.org>
To: guix-patches <at> gnu.org
Cc: Amin Bandali <mab <at> gnu.org>
Subject: [PATCH] gnu: Add emacs-delight.
Date: Mon, 27 Jan 2020 18:52:45 -0500
* gnu/packages/emacs-xyz.scm (emacs-delight): New variable.
---
 gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index c5214405d0..3c6edbad3f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -21125,3 +21125,25 @@ pattern guessed from thing under current cursor position.
 mercury-mode provided by Emacs as a wrapper around prolog-mode.")
       (home-page "https://github.com/ahungry/metal-mercury-mode")
       (license license:gpl3+))))
+
+(define-public emacs-delight
+  (let ((commit "05ef4d7d1a371884defcb47e881904f2a25a40b7")
+        (revision "0"))
+    (package
+      (name "emacs-delight")
+      (version (git-version "1.5" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://git.savannah.gnu.org/git/delight.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0z4p8bl2sac2zdmx2bbzzcb09y7bxbbr1r6x6b68w2swngkm9rac"))))
+      (build-system emacs-build-system)
+      (home-page "https://elpa.gnu.org/packages/delight.html")
+      (synopsis "Dimmer switch for your mode-line lighter text")
+      (description "@code{delight} enables customizing or hiding the
+mode-line text (lighter) of major and minor modes.")
+      (license license:gpl3+))))
-- 
2.25.0





Information forwarded to guix-patches <at> gnu.org:
bug#39323; Package guix-patches. (Tue, 28 Jan 2020 07:58:02 GMT) Full text and rfc822 format available.

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

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Amin Bandali <mab <at> gnu.org>
Cc: 39323 <at> debbugs.gnu.org
Subject: Re: [bug#39323] [PATCH] gnu: Add emacs-delight.
Date: Tue, 28 Jan 2020 08:57:28 +0100
Hello,

Amin Bandali <mab <at> gnu.org> writes:

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

Thank you.

> +(define-public emacs-delight
> +  (let ((commit "05ef4d7d1a371884defcb47e881904f2a25a40b7")
> +        (revision "0"))
> +    (package
> +      (name "emacs-delight")
> +      (version (git-version "1.5" revision commit))
> +      (source
> +       (origin
> +         (method git-fetch)
> +         (uri (git-reference
> +               (url "https://git.savannah.gnu.org/git/delight.git")
> +               (commit commit)))

Is it possible to stick to the release from GNU ELPA instead? Or is
there any particular reason to use this commit?

Regards,

-- 
Nicolas Goaziou




Information forwarded to guix-patches <at> gnu.org:
bug#39323; Package guix-patches. (Tue, 28 Jan 2020 08:48:01 GMT) Full text and rfc822 format available.

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

From: Amin Bandali <mab <at> gnu.org>
To: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
Cc: 39323 <at> debbugs.gnu.org
Subject: Re: [bug#39323] [PATCH] gnu: Add emacs-delight.
Date: Tue, 28 Jan 2020 03:47:03 -0500
[Message part 1 (text/plain, inline)]
Hello,

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

[...]
>
> Is it possible to stick to the release from GNU ELPA instead? Or is
> there any particular reason to use this commit?
>

No particular reason besides a small docstring fix in the unreleased
commit.  Here’s a v2 using the latest release instead:

[0001-gnu-Add-emacs-delight.patch (text/x-patch, inline)]
From 12addf2253143b796fb9e6d1549a4f538e0e1cda Mon Sep 17 00:00:00 2001
From: Amin Bandali <mab <at> gnu.org>
Date: Tue, 28 Jan 2020 03:45:35 -0500
Subject: [PATCH v2] gnu: Add emacs-delight.

* gnu/packages/emacs-xyz.scm (emacs-delight): New variable.
---
 gnu/packages/emacs-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e6c4bfc459..b71fb577b7 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -21169,3 +21169,21 @@ example code.")
 EBDB.  It is copied more or less intact from @code{company-bbdb}, originally
 by Jan Tatarik.")
     (license license:gpl3+)))
+
+(define-public emacs-delight
+  (package
+    (name "emacs-delight")
+    (version "1.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://elpa.gnu.org/packages/"
+                           "delight-" version ".el"))
+       (sha256
+        (base32 "0kzlvzwmn6zj0874086q2xw0pclyi7wlkq48zh2lkd2796xm8vw7"))))
+    (build-system emacs-build-system)
+    (home-page "https://elpa.gnu.org/packages/delight.html")
+    (synopsis "Dimmer switch for your mode-line lighter text")
+    (description "@code{delight} enables customizing or hiding the
+mode-line text (lighter) of major and minor modes.")
+    (license license:gpl3+)))
-- 
2.25.0

[Message part 3 (text/plain, inline)]
>
> Regards,

Best,
amin
[signature.asc (application/pgp-signature, inline)]

Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Tue, 28 Jan 2020 09:30:02 GMT) Full text and rfc822 format available.

Notification sent to Amin Bandali <mab <at> gnu.org>:
bug acknowledged by developer. (Tue, 28 Jan 2020 09:30:02 GMT) Full text and rfc822 format available.

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

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Amin Bandali <mab <at> gnu.org>
Cc: 39323-done <at> debbugs.gnu.org
Subject: Re: [bug#39323] [PATCH] gnu: Add emacs-delight.
Date: Tue, 28 Jan 2020 10:29:47 +0100
Amin Bandali <mab <at> gnu.org> writes:

> No particular reason besides a small docstring fix in the unreleased
> commit.  Here’s a v2 using the latest release instead:

Applied as 2fe83ce10fcfc50d49cdafe2d6981adaf4a27d9d. Thank you!

Regards,




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 25 Feb 2020 12:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 4 years and 62 days ago.

Previous Next


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