GNU bug report logs - #31506
[PATCH 13/21] gnu: emacs-helm-emms: New variable.

Previous Next

Package: guix-patches;

Reported by: Pierre Neidhardt <ambrevar <at> gmail.com>

Date: Fri, 18 May 2018 18:50:09 UTC

Severity: normal

Tags: patch

Done: ludo <at> gnu.org (Ludovic Courtès)

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 31506 in the body.
You can then email your comments to 31506 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#31506; Package guix-patches. (Fri, 18 May 2018 18:50:09 GMT) Full text and rfc822 format available.

Acknowledgement sent to Pierre Neidhardt <ambrevar <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 18 May 2018 18:50:09 GMT) Full text and rfc822 format available.

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

From: Pierre Neidhardt <ambrevar <at> gmail.com>
To: guix-patches <at> gnu.org
Subject: [PATCH 13/21] gnu: emacs-helm-emms: New variable.
Date: Fri, 18 May 2018 20:48:57 +0200
* gnu/packages/emacs.scm (emacs-helm-emms): New variable.
---
 gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 87b4acab9..9c3fa1d58 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -10811,3 +10811,28 @@ type @code{C-h b}, or any incomplete key sequence plus @code{C-h}, to run
 `describe-bindings ' does, but you can use completion to find the command you
 searched for and execute it, or view it's documentation.")
     (license license:gpl3+)))
+
+(define-public emacs-helm-emms
+  (package
+    (name "emacs-helm-emms")
+    (version "20180405.2228")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://melpa.org/packages/helm-emms-"
+             version
+             ".el"))
+       (sha256
+        (base32
+         "14af641kjbvfk0c1k2xjfh6jb2cs7zw256mayrik2ddjysx9jyg5"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-helm" ,emacs-helm)
+       ("emacs-emms" ,emms)))
+    (home-page
+     "https://github.com/emacs-helm/helm-emms")
+    (synopsis "Emms for Helm")
+    (description "Helm interface for Emms to browse all tracks and all folders
+from @code{emms-source-file-default-directory}.")
+    (license license:gpl3+)))
-- 
2.17.0





Information forwarded to guix-patches <at> gnu.org:
bug#31506; Package guix-patches. (Fri, 01 Jun 2018 07:53:02 GMT) Full text and rfc822 format available.

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

From: Pierre Neidhardt <ambrevar <at> gmail.com>
To: 31506 <at> debbugs.gnu.org
Subject: [PATCH 13/21] gnu: Add emacs-helm-emms.
Date: Fri,  1 Jun 2018 09:52:39 +0200
* gnu/packages/emacs.scm (emacs-helm-emms): New variable.
---
 gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index d96016073..861aa5020 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -10905,3 +10905,29 @@ type @code{C-h b}, or any incomplete key sequence plus @code{C-h}, to run
 `describe-bindings ' does, but you can use completion to find the command you
 searched for and execute it, or view it's documentation.")
     (license license:gpl3+))))
+
+(define-public emacs-helm-emms
+  (let ((commit "d3f9bdef8ff0d093eaf6e26af50ea905ab53fdec"))
+    (package
+      (name "emacs-helm-emms")
+      (version (git-version "1.3" "1" commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/emacs-helm/helm-emms")
+               (commit commit)))
+         (file-name (string-append name "-" version "-checkout"))
+         (sha256
+          (base32
+           "0bdb8xp0yp3gijpa9i2rc17gfzjhzlm92vdzw93i10qpd1xhj4aa"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-helm" ,emacs-helm)
+         ("emacs-emms" ,emms)))
+      (home-page
+       "https://github.com/emacs-helm/helm-emms")
+      (synopsis "Emms for Helm")
+      (description "Helm interface for Emms to browse all tracks and all folders
+from @code{emms-source-file-default-directory}.")
+    (license license:gpl3+))))
-- 
2.17.0





Reply sent to ludo <at> gnu.org (Ludovic Courtès):
You have taken responsibility. (Fri, 08 Jun 2018 14:58:02 GMT) Full text and rfc822 format available.

Notification sent to Pierre Neidhardt <ambrevar <at> gmail.com>:
bug acknowledged by developer. (Fri, 08 Jun 2018 14:58:02 GMT) Full text and rfc822 format available.

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

From: ludo <at> gnu.org (Ludovic Courtès)
To: Pierre Neidhardt <ambrevar <at> gmail.com>
Cc: 31506-done <at> debbugs.gnu.org
Subject: Re: [bug#31506] [PATCH 13/21] gnu: Add emacs-helm-emms.
Date: Fri, 08 Jun 2018 16:57:31 +0200
Pierre Neidhardt <ambrevar <at> gmail.com> skribis:

> * gnu/packages/emacs.scm (emacs-helm-emms): New variable.

Applied.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 07 Jul 2018 11:24:03 GMT) Full text and rfc822 format available.

This bug report was last modified 7 years and 77 days ago.

Previous Next


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