guix-commits
[Top][All Lists]
Advanced

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

47/203: gnu: emacs-popup: Don't use unstable tarball.


From: guix-commits
Subject: 47/203: gnu: emacs-popup: Don't use unstable tarball.
Date: Wed, 10 Apr 2019 14:57:15 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit f2e3d0a947057feee6de3ba866dc72859fd9b9cc
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Fri Apr 5 04:11:12 2019 +0200

    gnu: emacs-popup: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-popup)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/emacs-xyz.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 6dcae16..62c06e8 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3290,15 +3290,15 @@ for compilation, debugging, documentation lookup, and 
so on.")
   (package
     (name "emacs-popup")
     (version "0.5.3")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/auto-complete/popup-el/archive/v";
-                    version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
-              (sha256
-               (base32
-                "1yrgfj8y69xmcb6kwgplhq68ndm9410qwh7sd2knnd1gchpphdc0"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/auto-complete/popup-el.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1y538siabcf1n00wr4iz5gbxfndw661kx2mn9w1g4lg7yi4n0h0h"))))
     (build-system emacs-build-system)
     (home-page "https://github.com/auto-complete/popup-el";)
     (synopsis "Visual Popup User Interface for Emacs")



reply via email to

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