gnu: lapack: Update to 3.12.0.

* gnu/packages/maths.scm (lapack): Update to 3.12.0 and switch to
‘git-fetch’.
[inputs]: Remove labels.

Change-Id: I3ae813f55ddd3229b9924853cdb8c31c4e420112
Co-authored-by: Andy Tai <atai@atai.org>
This commit is contained in:
Ludovic Courtès 2025-01-15 01:47:28 -08:00 committed by Ludovic Courtès
parent 49a113e3fc
commit ac728b148f
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -12,7 +12,7 @@
;;; Copyright © 2015 Fabian Harfert <fhmgufs@web.de>
;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
;;; Copyright © 2016, 2018, 2020, 2021 Kei Kebreau <kkebreau@posteo.net>
;;; Copyright © 2016-2024 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2016-2025 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
;;; Copyright © 2016, 2017 Thomas Danckaert <post@thomasdanckaert.be>
;;; Copyright © 2017, 2018, 2019, 2020, 2021 Paul Garlick <pgarlick@tourbillion-technology.com>
@ -1168,19 +1168,20 @@ large scale eigenvalue problems.")
(define-public lapack
(package
(name "lapack")
(version "3.9.0")
(version "3.12.1")
(source
(origin
(method url-fetch)
(uri (string-append "http://www.netlib.org/lapack/lapack-"
version ".tgz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/Reference-LAPACK/lapack/")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1155qixp26c12yrxc76z9mlfw2h3xxymxxv5znpgzh5gaykpndgj"))))
"19387ifv5kplnggw5fgz4nzspmqi11wnwzap2knwxgrvknysrwj9"))))
(build-system cmake-build-system)
(home-page "https://www.netlib.org/lapack/")
(inputs `(("fortran" ,gfortran)
("python" ,python-wrapper)))
(inputs (list gfortran python-wrapper))
(arguments
`(#:configure-flags (list
"-DBUILD_SHARED_LIBS:BOOL=YES"