gnu: SuiteSparse: Update to 5.8.1.
From 0d8692dfebc6ac4b515c06612ab8da4c898719eb Mon Sep 17 00:00:00 2001 From: Greg Hogan <code@greghogan.com> Date: Tue, 29 Sep 2020 11:54:38 +0000 Subject: [PATCH] gnu: SuiteSparse: Update to 5.8.1. * gnu/packages/maths.scm (suitesparse): Update to 5.8.1. [arguments]: Remove unnecessary flag and use default blas and lapack. [inputs]: Add new dependencies for SLIP_LU component. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
e9cbf43ae0
commit
786a04c9ae
1 changed files with 4 additions and 3 deletions
|
@ -3862,7 +3862,7 @@ Fresnel integrals, and similar related functions as well.")
|
||||||
(define-public suitesparse
|
(define-public suitesparse
|
||||||
(package
|
(package
|
||||||
(name "suitesparse")
|
(name "suitesparse")
|
||||||
(version "5.7.1")
|
(version "5.8.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -3872,7 +3872,7 @@ Fresnel integrals, and similar related functions as well.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"174p3l78kv9gaa0i5hflyai2ydwnjzh34k9938sl4aa3li0543s8"))
|
"0qjlyfxs8s48rs63c2fzspisgq1kk4bwkgnhmh125hgkdhrq2w1c"))
|
||||||
(patches (search-patches "suitesparse-mongoose-cmake.patch"))
|
(patches (search-patches "suitesparse-mongoose-cmake.patch"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
|
@ -3885,7 +3885,6 @@ Fresnel integrals, and similar related functions as well.")
|
||||||
'(#:tests? #f ;no "check" target
|
'(#:tests? #f ;no "check" target
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list "CC=gcc"
|
(list "CC=gcc"
|
||||||
"BLAS=-lblas"
|
|
||||||
"TBB=-ltbb"
|
"TBB=-ltbb"
|
||||||
"MY_METIS_LIB=-lmetis"
|
"MY_METIS_LIB=-lmetis"
|
||||||
;; Flags for cmake (required to build GraphBLAS and Mongoose)
|
;; Flags for cmake (required to build GraphBLAS and Mongoose)
|
||||||
|
@ -3907,6 +3906,8 @@ Fresnel integrals, and similar related functions as well.")
|
||||||
(inputs
|
(inputs
|
||||||
`(("tbb" ,tbb)
|
`(("tbb" ,tbb)
|
||||||
("lapack" ,lapack)
|
("lapack" ,lapack)
|
||||||
|
("gmp" ,gmp)
|
||||||
|
("mpfr" ,mpfr)
|
||||||
("metis" ,metis)))
|
("metis" ,metis)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("cmake" ,cmake-minimal)
|
`(("cmake" ,cmake-minimal)
|
||||||
|
|
Reference in a new issue