From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:46587) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gz2bv-0003pI-Ub for guix-patches@gnu.org; Wed, 27 Feb 2019 12:03:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gz2bt-0001zD-Sd for guix-patches@gnu.org; Wed, 27 Feb 2019 12:03:11 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:40721) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gz2bo-0001x2-Qh for guix-patches@gnu.org; Wed, 27 Feb 2019 12:03:05 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gz2bo-00059l-M1 for guix-patches@gnu.org; Wed, 27 Feb 2019 12:03:04 -0500 Subject: [bug#34676] [PATCH 4/4] gnu: meep: Update to 1.8.0. Resent-Message-ID: From: Jonathan Brielmaier Date: Wed, 27 Feb 2019 18:01:51 +0100 Message-Id: <20190227170151.19111-4-jonathan.brielmaier@web.de> In-Reply-To: <20190227170151.19111-1-jonathan.brielmaier@web.de> References: <20190227170151.19111-1-jonathan.brielmaier@web.de> Content-Transfer-Encoding: quoted-printable 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: 34676@debbugs.gnu.org * gnu/packages/engineering.scm (meep): Update to 1.8.0. [source]: Fetch source from GitHub, as it's only there. [inputs]: Use Guile 2.2, as meep supports it. =2D-- gnu/packages/engineering.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 8dd8d5fa3f..347c414e1e 100644 =2D-- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -1050,16 +1050,16 @@ fully-vectorial and three-dimensional methods.") (define-public meep (package (name "meep") - (version "1.3") + (version "1.8.0") (source (origin (method url-fetch) (uri (string-append - "http://ab-initio.mit.edu/meep/meep-" - version ".tar.gz")) + "https://github.com/NanoComp/meep/releases/download/v" + version "/meep-" version ".tar.gz")) (sha256 (base32 - "0f6lbw2hrksg7xscwdqs78jc9nmzx9fs8j0hz1y4i8qknkqiyk2n")))= ) + "14zyxmm3p80j5fz5b89sl7hgkgcisqjny5hjh4pi274ziqjqz8bm")))= ) (build-system gnu-build-system) (arguments `(#:configure-flags @@ -1073,7 +1073,7 @@ fully-vectorial and three-dimensional methods.") (inputs `(("fftw" ,fftw) ("gsl" ,gsl) - ("guile" ,guile-2.0) ; doesn't build with guile-2.2 + ("guile" ,guile-2.2) ("harminv" ,harminv) ("hdf5" ,hdf5) ("lapack" ,lapack) =2D- 2.16.4