guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: python-llvmlite: Use specific commit for llv


From: guix-commits
Subject: branch master updated: gnu: python-llvmlite: Use specific commit for llvm patch URLs.
Date: Sun, 05 Jul 2020 11:42:03 -0400

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

cbaines pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 6ee7468  gnu: python-llvmlite: Use specific commit for llvm patch URLs.
6ee7468 is described below

commit 6ee7468758d7c043692ae8c0b5e130fa4eabe94c
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Sun Jul 5 16:39:40 2020 +0100

    gnu: python-llvmlite: Use specific commit for llvm patch URLs.
    
    As this commit [1] appears to affect the patches, including the v0.30.0
    tag (so the tag must have been changed).
    
    1: 
https://github.com/numba/llvmlite/commit/cdd99deb32f9d48aadb0f7407fb8ad06f6a8ce6c
    
    * gnu/packages/llvm.scm (python-llvmlite)[inputs]: Use a specific commit for
    the patches.
---
 gnu/packages/llvm.scm | 48 ++++++++++++++++++++++++++----------------------
 1 file changed, 26 insertions(+), 22 deletions(-)

diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index 7cd9543..aee32b0 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -949,28 +949,32 @@ with that of libgomp, the GNU Offloading and Multi 
Processing Library.")
      `(#:tests? #f))
     (inputs
      `(("llvm"
-        ,(package
-           (inherit llvm-7)
-           (source (origin
-                     (inherit (package-source llvm-7))
-                     (patches
-                      (list
-                       (origin
-                         (method url-fetch)
-                         (uri (string-append 
"https://raw.githubusercontent.com/numba/";
-                                             "llvmlite/v" version 
"/conda-recipes/"
-                                             "D47188-svml-VF.patch"))
-                         (sha256
-                          (base32
-                           
"0wxhgb61k17f0zg2m0726sf3hppm41f8jar2kkg2n8sl5cnjj9mr")))
-                       (origin
-                         (method url-fetch)
-                         (uri (string-append 
"https://raw.githubusercontent.com/numba/";
-                                             "llvmlite/v" version 
"/conda-recipes/"
-                                             
"twine_cfg_undefined_behavior.patch"))
-                         (sha256
-                          (base32
-                           
"07h71n2m1mn9zcfgw04zglffknplb233zqbcd6pckq0wygkrxflp")))))))))))
+        ,(let ((patches-commit "486edd5fb2a6667feb5c865f300c0da73785434a"))
+           (package
+             (inherit llvm-7)
+             (source
+              (origin
+                (inherit (package-source llvm-7))
+                (patches
+                 (list
+                  (origin
+                    (method url-fetch)
+                    (uri (string-append
+                          "https://raw.githubusercontent.com/numba/";
+                          "llvmlite/" patches-commit "/conda-recipes/"
+                          "D47188-svml-VF.patch"))
+                    (sha256
+                     (base32
+                      "0wxhgb61k17f0zg2m0726sf3hppm41f8jar2kkg2n8sl5cnjj9mr")))
+                  (origin
+                    (method url-fetch)
+                    (uri (string-append
+                          "https://raw.githubusercontent.com/numba/";
+                          "llvmlite/" patches-commit "/conda-recipes/"
+                          "twine_cfg_undefined_behavior.patch"))
+                    (sha256
+                     (base32
+                      
"07h71n2m1mn9zcfgw04zglffknplb233zqbcd6pckq0wygkrxflp"))))))))))))
     (home-page "http://llvmlite.pydata.org";)
     (synopsis "Wrapper around basic LLVM functionality")
     (description



reply via email to

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