guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: emacs-helm-firefox: Fix version string.


From: guix-commits
Subject: branch master updated: gnu: emacs-helm-firefox: Fix version string.
Date: Wed, 17 Feb 2021 08:36:00 -0500

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 01c1b8e  gnu: emacs-helm-firefox: Fix version string.
01c1b8e is described below

commit 01c1b8e0dc6583ad707da25c75f7139f852137a4
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Wed Feb 17 14:34:20 2021 +0100

    gnu: emacs-helm-firefox: Fix version string.
    
    * gnu/packages/emacs-xyz.scm (emacs-helm-firefox)[origin]: Tagged commit is
    really version 1.3.
---
 gnu/packages/emacs-xyz.scm | 43 ++++++++++++++++++++-----------------------
 1 file changed, 20 insertions(+), 23 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index f163533..255e0a4 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -17807,29 +17807,26 @@ compilation/grep buffers.  Works with @code{wgrep}, 
@code{ack}, @code{ag},
       (license license:gpl3+))))
 
 (define-public emacs-helm-firefox
-  (let ((commit "0ad34b7b5abc485a86cae6920c14de861cbeb085")
-        (revision "1"))
-    (package
-      (name "emacs-helm-firefox")
-      (version (string-append "0.0.1" "-" revision "."
-                              (string-take commit 7)))
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://github.com/emacs-helm/helm-firefox";)
-               (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32
-           "08mjsi2f9s29fkk35cj1rrparjnkm836qmbfdwdz7y51f9varjbs"))))
-      (propagated-inputs
-       `(("emacs-helm" ,emacs-helm)))
-      (build-system emacs-build-system)
-      (home-page "https://github.com/emacs-helm/helm-firefox";)
-      (synopsis "Display firefox bookmarks with Emacs Helm interface")
-      (description "Display firefox bookmarks with Emacs Helm interface")
-      (license license:gpl3+))))
+  (package
+    (name "emacs-helm-firefox")
+    (version "1.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/emacs-helm/helm-firefox";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "08mjsi2f9s29fkk35cj1rrparjnkm836qmbfdwdz7y51f9varjbs"))))
+    (propagated-inputs
+     `(("emacs-helm" ,emacs-helm)))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/emacs-helm/helm-firefox";)
+    (synopsis "Display firefox bookmarks with Emacs Helm interface")
+    (description "Display firefox bookmarks with Emacs Helm interface")
+    (license license:gpl3+)))
 
 (define-public emacs-interactive-align
   (package



reply via email to

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