From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: [PATCH]: gnu: Add arpack-ng. Date: Wed, 18 Feb 2015 16:10:04 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/x-patch; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55603) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YO6I2-0004VH-Hu for guix-devel@gnu.org; Wed, 18 Feb 2015 10:11:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YO6Hx-0005CO-Oa for guix-devel@gnu.org; Wed, 18 Feb 2015 10:11:50 -0500 Received: from sinope.bbbm.mdc-berlin.de ([141.80.25.23]:49016) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YO6Hx-0005C3-G0 for guix-devel@gnu.org; Wed, 18 Feb 2015 10:11:45 -0500 Received: from localhost (localhost [127.0.0.1]) by sinope.bbbm.mdc-berlin.de (Postfix) with ESMTP id 07C34280905 for ; Wed, 18 Feb 2015 16:11:44 +0100 (CET) Received: from sinope.bbbm.mdc-berlin.de ([127.0.0.1]) by localhost (sinope.bbbm.mdc-berlin.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4elAOUQ0rt1j for ; Wed, 18 Feb 2015 16:11:37 +0100 (CET) Received: from HTCATWO.mdc-berlin.net (puck.citx.mdc-berlin.de [141.80.36.101]) by sinope.bbbm.mdc-berlin.de (Postfix) with ESMTP for ; Wed, 18 Feb 2015 16:11:37 +0100 (CET) Content-Disposition: inline; filename="0001-gnu-Add-arpack-ng.patch" List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Guix-devel >From eb9c5e9a239a5001afec411296ea7e482444c405 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 18 Feb 2015 16:08:33 +0100 Subject: [PATCH] gnu: Add arpack-ng. * gnu/packages/maths.scm (arpack-ng): New variable. --- gnu/packages/maths.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index c3cf30c..8c4eb3b 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -5,6 +5,7 @@ ;;; Copyright =C2=A9 2014 Eric Bavier ;;; Copyright =C2=A9 2014 Federico Beffa ;;; Copyright =C2=A9 2014 Mathieu Lirzin +;;; Copyright =C2=A9 2015 Ricardo Wurmus ;;; ;;; This file is part of GNU Guix. ;;; @@ -212,6 +213,30 @@ can be imported from spreadsheets, text files and da= tabase sources and it can be output in text, PostScript, PDF or HTML.") (license license:gpl3+))) =20 +(define-public arpack-ng + (package + (name "arpack-ng") + (version "3.2.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/opencollab/arpack-ng/arch= ive/" + version ".tar.gz")) + (sha256 + (base32 + "1fwch6vipms1ispzg2djvbzv5wag36f1dmmr3xs3mbp6imfyhvff")))) + (build-system gnu-build-system) + (home-page "https://github.com/opencollab/arpack-ng") + (inputs + `(("lapack" ,lapack) + ("fortran" ,gfortran-4.8))) + (synopsis "Fortran subroutines for solving eigenvalue problems") + (description + "ARPACK-NG is a collection of Fortran77 subroutines designed to sol= ve +large scale eigenvalue problems.") + (license (license:bsd-style "file://COPYING" + "See COPYING in the distribution.")))) + (define-public lapack (package (name "lapack") --=20 2.1.0