[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/12: gnu: hypre: Don't use unstable tarball.
From: |
guix-commits |
Subject: |
08/12: gnu: hypre: Don't use unstable tarball. |
Date: |
Sun, 14 Apr 2019 23:18:53 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit fabcbf326115192bce5bb6a5e3d9c9a801b1662b
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Tue Apr 9 00:18:17 2019 +0200
gnu: hypre: Don't use unstable tarball.
* gnu/packages/maths.scm (hypre)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
---
gnu/packages/maths.scm | 35 ++++++++++++++++++-----------------
1 file changed, 18 insertions(+), 17 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index d6e2bd8..402566e 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -3680,23 +3680,24 @@ set.")
(package
(name "hypre")
(version "2.14.0")
- (source (origin
- (method url-fetch)
- (uri (string-append "https://github.com/LLNL/hypre/archive/"
- "v" version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
- "0v515i73bvaz378h5465b1dy9v2gf924zy2q94cpq4qqarawvkqh"))
- (modules '((guix build utils)))
- (snippet
- '(begin
- ;; Remove use of __DATE__ and __TIME__ for reproducibility;
- ;; substitute the tarball creation time.
- (substitute* "src/utilities/HYPRE_utilities.h"
- (("Date Compiled: .*$")
- "Date Compiled: Apr 11 2018 16:24:59 +0000\"\n"))
- #t))))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/LLNL/hypre.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "12iciad718rf7vcl33klza7dcnxxa5581yav7c72l81m7mswihq9"))
+ (modules '((guix build utils)))
+ (snippet
+ '(begin
+ ;; Remove use of __DATE__ and __TIME__ for reproducibility;
+ ;; substitute the tarball creation time.
+ (substitute* "src/utilities/HYPRE_utilities.h"
+ (("Date Compiled: .*$")
+ "Date Compiled: Apr 11 2018 16:24:59 +0000\"\n"))
+ #t))))
(build-system gnu-build-system)
(outputs '("out" ;6.1 MiB of headers and libraries
"doc")) ;4.8 MiB of documentation
- branch master updated (f6e3f0f -> a8f52ad), guix-commits, 2019/04/14
- 02/12: gnu: ocaml4.02-ezjsonm: Fix tag., guix-commits, 2019/04/14
- 04/12: gnu: camlp5: Don't use unstable tarball., guix-commits, 2019/04/14
- 08/12: gnu: hypre: Don't use unstable tarball.,
guix-commits <=
- 10/12: gnu: sbcl-cffi-bootstrap: Don't use unstable tarball., guix-commits, 2019/04/14
- 12/12: gnu: laby: Fix build., guix-commits, 2019/04/14
- 01/12: gnu: ocamlbuild: Don't use unstable tarball., guix-commits, 2019/04/14
- 05/12: gnu: emacs-tuareg: Don't use unstable tarball., guix-commits, 2019/04/14
- 03/12: gnu: address@hidden: Don't use unstable tarball., guix-commits, 2019/04/14
- 07/12: gnu: openspecfun: Don't use unstable tarball., guix-commits, 2019/04/14
- 06/12: gnu: muparser: Don't use unstable tarball., guix-commits, 2019/04/14
- 11/12: gnu: sbcl-hunchentoot: Don't use unstable tarball., guix-commits, 2019/04/14
- 09/12: gnu: hypre: Update to 2.15.1., guix-commits, 2019/04/14