From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54422) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e2CGI-0007VZ-Ij for guix-patches@gnu.org; Wed, 11 Oct 2017 04:21:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e2CGE-0000VZ-J1 for guix-patches@gnu.org; Wed, 11 Oct 2017 04:21:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:52538) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e2CGE-0000V0-Fg for guix-patches@gnu.org; Wed, 11 Oct 2017 04:21:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e2CGE-00023L-96 for guix-patches@gnu.org; Wed, 11 Oct 2017 04:21:02 -0400 Subject: [bug#27344] [PATCH v3 5/8] gnu: Add xyce-parallel. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <87lglnery8.fsf@foradis.org> <20170909175752.8566-1-theodoros@foradis.org> <20170909175752.8566-5-theodoros@foradis.org> Date: Wed, 11 Oct 2017 10:20:06 +0200 In-Reply-To: <20170909175752.8566-5-theodoros@foradis.org> (Theodoros Foradis's message of "Sat, 9 Sep 2017 20:57:49 +0300") Message-ID: <87o9pecczt.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: Theodoros Foradis Cc: 27344@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Theodoros Foradis skribis: > * gnu/packages/engineering.scm (xyce-parallel): New variable. Applied with the change below. Thanks, Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 89cf6633b..9f9949ef8 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -30,6 +30,7 @@ #:use-module (guix monads) #:use-module (guix store) #:use-module (guix utils) + #:use-module ((srfi srfi-1) #:hide (zip)) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) @@ -1412,7 +1413,7 @@ parallel computing platforms. It also supports serial execution.") `(("mpi" ,openmpi))) (inputs `(("trilinos" ,trilinos-parallel-xyce) - ,@((@ (srfi srfi-1) alist-delete) "trilinos" + ,@(alist-delete "trilinos" (package-inputs xyce-serial)))))) (define-public freehdl --=-=-=--