guix-commits
[Top][All Lists]
Advanced

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

28/203: gnu: emacs-rspec: Don't use unstable tarball.


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

nckx pushed a commit to branch master
in repository guix.

commit 349eb1bc20066997db13bf0bee24e45550a21563
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Thu Apr 4 19:26:24 2019 +0200

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 8a3770d..b0dc388 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -2554,13 +2554,13 @@ method and constant name completion.")
     (version "1.11")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "https://github.com/pezra/rspec-mode/";
-                           "archive/v" version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/pezra/rspec-mode.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "1j0a7ms5516nlg60qfyn730pfxys6acm0rgyxh5xfkpi6jafgpvw"))))
+        (base32 "0hrn5n7aaymwimk511kjij44vqaxbmhly1gwmlmsrnbvvma7f2mp"))))
     (build-system emacs-build-system)
     (home-page "https://github.com/pezra/rspec-mode";)
     (synopsis "Provides a rspec mode for working with RSpec")



reply via email to

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