From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42155) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ibgkV-0003iN-Ea for guix-patches@gnu.org; Mon, 02 Dec 2019 03:08:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ibgkU-0006LN-9M for guix-patches@gnu.org; Mon, 02 Dec 2019 03:08:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:59268) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ibgkU-0006LI-5r for guix-patches@gnu.org; Mon, 02 Dec 2019 03:08:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ibgkU-0000f3-1c for guix-patches@gnu.org; Mon, 02 Dec 2019 03:08:02 -0500 Subject: [bug#38454] [PATCH] gnu: lapack: Update to 3.9.0. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:42007) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ibgjf-0003Sq-Jg for guix-patches@gnu.org; Mon, 02 Dec 2019 03:07:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ibgje-0005rS-9q for guix-patches@gnu.org; Mon, 02 Dec 2019 03:07:11 -0500 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:40621) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ibgjd-0005mM-Sc for guix-patches@gnu.org; Mon, 02 Dec 2019 03:07:10 -0500 From: Konrad Hinsen Date: Thu, 28 Nov 2019 22:11:55 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38454@debbugs.gnu.org * gnu/packages/maths.scm (lapack): Update to 3.9.0. --- gnu/packages/maths.scm | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 16e070eeff..de45bdfed3 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -544,7 +544,7 @@ large scale eigenvalue problems.") (define-public lapack (package (name "lapack") - (version "3.7.1") + (version "3.9.0") (source (origin (method url-fetch) @@ -552,26 +552,18 @@ large scale eigenvalue problems.") version ".tgz")) (sha256 (base32 - "1j51r7n5w4k7r3lrvy7710xrpkg40wf4rqnmngfz6ck9ypckzign")))) + "1155qixp26c12yrxc76z9mlfw2h3xxymxxv5znpgzh5gaykpndgj")))) (build-system cmake-build-system) (home-page "http://www.netlib.org/lapack/") (inputs `(("fortran" ,gfortran) - ("python" ,python-2))) + ("python" ,python-wrapper))) (arguments `(#:configure-flags (list "-DBUILD_SHARED_LIBS:BOOL=YES" "-DLAPACKE=ON" - ;; Build the 'LAPACKE_clatms' functions. - "-DLAPACKE_WITH_TMG=ON") - #:phases - (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))))) + "-DLAPACKE_WITH_TMG=ON" + "-DBUILD_TESTING=ON"))) (synopsis "Library for numerical linear algebra") (description "LAPACK is a Fortran 90 library for solving the most commonly occurring -- 2.24.0