From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39433) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dqk25-0008KU-R0 for guix-patches@gnu.org; Sat, 09 Sep 2017 13:59:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dqk22-0003dx-Oa for guix-patches@gnu.org; Sat, 09 Sep 2017 13:59:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49148) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dqk22-0003dt-Lt for guix-patches@gnu.org; Sat, 09 Sep 2017 13:59:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dqk22-0003Qf-Ef for guix-patches@gnu.org; Sat, 09 Sep 2017 13:59:02 -0400 Subject: [bug#27344] [PATCH v3 3/8] gnu: Add lapack-3.5. Resent-Message-ID: From: Theodoros Foradis Date: Sat, 9 Sep 2017 20:57:47 +0300 Message-Id: <20170909175752.8566-3-theodoros@foradis.org> In-Reply-To: <20170909175752.8566-1-theodoros@foradis.org> References: <87lglnery8.fsf@foradis.org> <20170909175752.8566-1-theodoros@foradis.org> 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: 27344@debbugs.gnu.org * gnu/packages/maths.scm (lapack-3.5): New variable. --- gnu/packages/maths.scm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index bebed14b5..03ca885b5 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -470,6 +470,19 @@ problems in numerical linear algebra.") (license (license:non-copyleft "file://LICENSE" "See LICENSE in the distribution.")))) +(define-public lapack-3.5 + (package + (inherit lapack) + (version "3.5.0") + (source + (origin + (method url-fetch) + (uri (string-append "http://www.netlib.org/lapack/lapack-" + version ".tgz")) + (sha256 + (base32 + "0lk3f97i9imqascnlf6wr5mjpyxqcdj73pgj97dj2mgvyg9z1n4s")))))) + (define-public scalapack (package (name "scalapack") -- 2.13.4