guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: emacs-discover-my-major: Don't use unstable


From: guix-commits
Subject: branch master updated: gnu: emacs-discover-my-major: Don't use unstable tarball.
Date: Wed, 01 Apr 2020 02:16:46 -0400

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

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 17264e3  gnu: emacs-discover-my-major: Don't use unstable tarball.
17264e3 is described below

commit 17264e362c240bab2ee312fb4d3fca301b183624
Author: Efraim Flashner <address@hidden>
AuthorDate: Wed Apr 1 09:16:24 2020 +0300

    gnu: emacs-discover-my-major: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-discover-my-major)[source]: Download
    using git-fetch. Use new upstream URI.
    [home-page]: Update to new home-page.
---
 gnu/packages/emacs-xyz.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ed3e6f1..9a26d04 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13842,18 +13842,18 @@ throw a shell history.")
     (version "1.0")
     (source
      (origin
-       (method url-fetch)
-       (uri
-        (string-append "https://github.com/steckerhalter/discover-my-major";
-                       "/archive/" version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://framagit.org/steckerhalter/discover-my-major.git/";)
+              (commit version)))
+       (file-name (git-file-name name version))
        (sha256
         (base32
-         "0nah41f92rrl2l405kpqr6iaks11jyclgl4z7ilfymbr4ifmsiyl"))))
+         "1wlqyl03hhnflbyay3qlvdzqzvv5rbybcjpfddggda7ias9h0pr4"))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-makey" ,emacs-makey)))
-    (home-page "https://github.com/steckerhalter/discover-my-major";)
+    (home-page "https://framagit.org/steckerhalter/discover-my-major/";)
     (synopsis "Discover key bindings for the current Emacs major mode")
     (description "This package provides allows to discover key bindings and
 their meaning for the current Emacs major-mode.")



reply via email to

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