guix-commits
[Top][All Lists]
Advanced

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

197/203: gnu: emacs-git-auto-commit-mode: Don't use unstable tarball.


From: guix-commits
Subject: 197/203: gnu: emacs-git-auto-commit-mode: Don't use unstable tarball.
Date: Wed, 10 Apr 2019 14:57:48 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit fe7be4deb9425b6a94b716055bba34697f0b9fe9
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Mon Apr 8 23:41:23 2019 +0200

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 06d4056..5745b50 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -11356,14 +11356,13 @@ scroll up to read the function name and then scroll 
down to original position.")
     (version "4.4.0")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append
-             "https://github.com/ryuslash/git-auto-commit-mode/archive/";
-             version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/ryuslash/git-auto-commit-mode.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "04avxmalsl3b7zi2vipfw9rb4wrwysnipsbch96skviql9axk870"))))
+        (base32 "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh"))))
     (build-system emacs-build-system)
     (home-page "https://github.com/ryuslash/git-auto-commit-mode";)
     (synopsis "Emacs Minor mode to automatically commit and push")



reply via email to

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