From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55947) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d3l4U-0003Cj-DQ for guix-patches@gnu.org; Thu, 27 Apr 2017 11:11:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d3l4R-0002KI-1M for guix-patches@gnu.org; Thu, 27 Apr 2017 11:11:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:44824) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d3l4Q-0002K3-OG for guix-patches@gnu.org; Thu, 27 Apr 2017 11:11:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d3l4Q-0001OR-Jy for guix-patches@gnu.org; Thu, 27 Apr 2017 11:11:02 -0400 Subject: bug#26681: [PATCH] gnu: Add netcdf-fortran. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55005) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d3l3K-0002Rl-VP for guix-patches@gnu.org; Thu, 27 Apr 2017 11:09:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d3l3H-0001V4-O1 for guix-patches@gnu.org; Thu, 27 Apr 2017 11:09:54 -0400 Received: from s02-out.spamexperts.axc.nl ([185.175.200.125]:35759) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d3l3H-0001UZ-Gv for guix-patches@gnu.org; Thu, 27 Apr 2017 11:09:51 -0400 Received: from vserver42.axc.nl ([185.182.56.92]) by s02.spamexperts.axc.nl with esmtps (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.86) (envelope-from ) id 1d3l39-0005yy-UF for guix-patches@gnu.org; Thu, 27 Apr 2017 17:09:49 +0200 Received: from mail.axc.nl ([185.182.56.42]:52886 helo=mail.axc.eu) by vserver42.axc.nl with esmtp (Exim 4.89) (envelope-from ) id 1d3l37-0005hb-Hu for guix-patches@gnu.org; Thu, 27 Apr 2017 17:09:42 +0200 Date: Thu, 27 Apr 2017 17:09:36 +0200 (CEST) Message-Id: <20170427.170936.1835008141939086385.post@thomasdanckaert.be> From: Thomas Danckaert Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Thu_Apr_27_17_09_36_2017_225)--" Content-Transfer-Encoding: 7bit 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: 26681@debbugs.gnu.org ----Next_Part(Thu_Apr_27_17_09_36_2017_225)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Let's not forget about good old Fortran... ----Next_Part(Thu_Apr_27_17_09_36_2017_225)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="0001-gnu-Add-netcdf-fortran.patch" >From 52b9117f351caa8c2fba3491a66fe895e372e9d3 Mon Sep 17 00:00:00 2001 From: Thomas Danckaert Date: Thu, 27 Apr 2017 17:06:53 +0200 Subject: [PATCH] gnu: Add netcdf-fortran. * gnu/packages/maths.scm (netcdf-fortran): New variable. --- gnu/packages/maths.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 0a11da9ea..4e70bd8d1 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -850,6 +850,30 @@ sharing of scientific data.") "--disable-shared" "--with-pic" ,flags)))))) +(define-public netcdf-fortran + (package + (name "netcdf-fortran") + (version "4.4.4") + (source (origin + (method url-fetch) + (uri (string-append + "ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-fortran-" + version ".tar.gz")) + (sha256 + (base32 + "0xaxdcg1p83zmypwml3swsnr3ccn38inwldyr1l3wa4dbwbrblxj")))) + (build-system gnu-build-system) + (arguments + `(#:parallel-tests? #f)) + (inputs + `(("netcdf" ,netcdf))) + (native-inputs + `(("gfortran" ,gfortran))) + (synopsis "Fortran interface for the netCDF library") + (description (package-description netcdf)) + (home-page (package-home-page netcdf)) + (license (package-license netcdf)))) + (define-public nlopt (package (name "nlopt") -- 2.12.2 ----Next_Part(Thu_Apr_27_17_09_36_2017_225)----