guix-commits
[Top][All Lists]
Advanced

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

11/17: gnu: python-sphinx-gallery: Don't use unstable tarball.


From: guix-commits
Subject: 11/17: gnu: python-sphinx-gallery: Don't use unstable tarball.
Date: Wed, 13 Nov 2019 16:08:51 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit d090a1c15a799e34ed8c4793b462d518d9932191
Author: Efraim Flashner <address@hidden>
Date:   Wed Nov 13 22:10:44 2019 +0200

    gnu: python-sphinx-gallery: Don't use unstable tarball.
    
    * gnu/packages/sphinx.scm (python-sphinx-gallery)[source]: Download
    using git-fetch.
---
 gnu/packages/sphinx.scm | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index 8c658c2..1f3553b 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -30,6 +30,7 @@
 (define-module (gnu packages sphinx)
   #:use-module (guix packages)
   #:use-module (guix download)
+  #:use-module (guix git-download)
   #:use-module (guix utils)
   #:use-module (guix build-system python)
   #:use-module ((guix licenses) #:prefix license:)
@@ -375,13 +376,14 @@ integrate Sphinx documents in web templates and to handle 
searches.")
     (name "python-sphinx-gallery")
     (version "0.1.13")
     (source (origin
-              (method url-fetch)
-              (uri (string-append 
"https://github.com/sphinx-gallery/sphinx-gallery";
-                                  "/archive/v" version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/sphinx-gallery/sphinx-gallery";)
+                     (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "03fs99mcb1r7qp0xixqv07vcz98sk21yq19ffdysi0infdcpzfkd"))))
+                "14nbqh9krx2l2y2ylbln6l6w8iak3wac1lngvaf278y1cx7685kg"))))
     (build-system python-build-system)
     (arguments
      ;; FIXME: Tests attempt to download 
<https://docs.python.org/3/objects.inv>,



reply via email to

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