gnu: lapack: Update to 3.9.0.
* gnu/packages/maths.scm (lapack): Update to 3.9.0. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
cd5406effa
commit
e6de152dc1
|
@ -583,7 +583,7 @@ large scale eigenvalue problems.")
|
||||||
(define-public lapack
|
(define-public lapack
|
||||||
(package
|
(package
|
||||||
(name "lapack")
|
(name "lapack")
|
||||||
(version "3.7.1")
|
(version "3.9.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -591,26 +591,18 @@ large scale eigenvalue problems.")
|
||||||
version ".tgz"))
|
version ".tgz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1j51r7n5w4k7r3lrvy7710xrpkg40wf4rqnmngfz6ck9ypckzign"))))
|
"1155qixp26c12yrxc76z9mlfw2h3xxymxxv5znpgzh5gaykpndgj"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(home-page "http://www.netlib.org/lapack/")
|
(home-page "http://www.netlib.org/lapack/")
|
||||||
(inputs `(("fortran" ,gfortran)
|
(inputs `(("fortran" ,gfortran)
|
||||||
("python" ,python-2)))
|
("python" ,python-wrapper)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags (list
|
`(#:configure-flags (list
|
||||||
"-DBUILD_SHARED_LIBS:BOOL=YES"
|
"-DBUILD_SHARED_LIBS:BOOL=YES"
|
||||||
"-DLAPACKE=ON"
|
"-DLAPACKE=ON"
|
||||||
|
|
||||||
;; Build the 'LAPACKE_clatms' functions.
|
;; Build the 'LAPACKE_clatms' functions.
|
||||||
"-DLAPACKE_WITH_TMG=ON")
|
"-DLAPACKE_WITH_TMG=ON"
|
||||||
#:phases
|
"-DBUILD_TESTING=ON")))
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-before 'check 'patch-python
|
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
|
||||||
(let ((python (assoc-ref inputs "python")))
|
|
||||||
(substitute* "lapack_testing.py"
|
|
||||||
(("/usr/bin/env python") python)))
|
|
||||||
#t)))))
|
|
||||||
(synopsis "Library for numerical linear algebra")
|
(synopsis "Library for numerical linear algebra")
|
||||||
(description
|
(description
|
||||||
"LAPACK is a Fortran 90 library for solving the most commonly occurring
|
"LAPACK is a Fortran 90 library for solving the most commonly occurring
|
||||||
|
|
Reference in New Issue