From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59385) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f5q9E-0003Tm-AD for guix-patches@gnu.org; Tue, 10 Apr 2018 06:05:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f5q98-0000rK-HM for guix-patches@gnu.org; Tue, 10 Apr 2018 06:05:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:36695) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f5q98-0000qr-EC for guix-patches@gnu.org; Tue, 10 Apr 2018 06:05:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f5q98-0001sw-5c for guix-patches@gnu.org; Tue, 10 Apr 2018 06:05:02 -0400 Subject: [bug#31080] [PATCH 2/2] gnu: Add spindle. Resent-Message-ID: From: Rouby Pierre-Antoine Date: Tue, 10 Apr 2018 12:03:51 +0200 Message-Id: <20180410100351.19894-2-pierre-antoine.rouby@inria.fr> In-Reply-To: <20180410100351.19894-1-pierre-antoine.rouby@inria.fr> References: <0aae01c6-4b4a-c0d3-084a-31cf9af7b028@web.de> <20180410100351.19894-1-pierre-antoine.rouby@inria.fr> 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: 31080@debbugs.gnu.org Cc: Rouby Pierre-Antoine * gnu/packages/admin.scm (spindle): New variable. --- gnu/packages/admin.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index bf50a51f4..512dcf59c 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -2538,3 +2538,32 @@ parallel job. Its API allows a tool to identify all the remote processes of a job and to scalably launch daemons into the relevant nodes.") (home-page "https://github.com/LLNL/LaunchMON") (license license:lgpl2.1))) + +(define-public spindle + (package + (name "spindle") + (version "0.10") + (source (origin + (file-name (git-file-name name version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/hpc/Spindle.git") + (commit "ff922c1df167c28ab312d02217ed7be65ec0e831"))) + (sha256 + (base32 + "15n3ay0qq81r5v7fif61q1vdjcq44pp2nynkh3fvbzc9fj3c39wd")))) + (build-system gnu-build-system) + (arguments '(#:configure-flags '("--enable-sec-launchmon" + "--enable-sec-munge" + "--enable-sec-none"))) + (inputs `(("munge" ,munge) + ("openmpi" ,openmpi) + ("launchmon" ,launchmon) + ("libgcrypt" ,libgcrypt))) + (synopsis "Scalable dynamic library and Python loading in HPC +environments") + (description + "Spindle is a tool for improving the performance of dynamic library and +Python loading in HPC environments.") + (home-page "https://github.com/hpc/Spindle") + (license license:lgpl2.1))) -- 2.16.1