guix-commits
[Top][All Lists]
Advanced

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

80/88: gnu: python-glob2: Don't use unstable tarball.


From: guix-commits
Subject: 80/88: gnu: python-glob2: Don't use unstable tarball.
Date: Wed, 10 Apr 2019 23:44:49 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 8fa2bcc7935a27bba9aa03cbee5d1c3b4a014e9b
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Tue Apr 9 00:01:52 2019 +0200

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 37225a9..37ce723 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14175,16 +14175,15 @@ manager compatible with @code{asyncio}.")
   (package
     (name "python-glob2")
     (version "0.6")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/miracle2k/python-glob2/archive/";
-                    version
-                    ".tar.gz"))
-              (sha256
-               (base32
-                "0ja168f0dz4kbz4m06dm0rd3acaypk6hjx2km541pw22y9s40mag"))
-              (file-name (string-append name "-" version ".tar.gz"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/miracle2k/python-glob2.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1lm1xz3k3l0k1c5bcp9hlzmi3gp5j8dl1k3xhpiq5mnm0xq6n163"))))
     (build-system python-build-system)
     (home-page "https://github.com/miracle2k/python-glob2/";)
     (synopsis "Extended Version of the python buildin glob module")



reply via email to

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