From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60119) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f5SkY-0005RZ-UC for guix-patches@gnu.org; Mon, 09 Apr 2018 05:06:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f5SkU-0007gJ-04 for guix-patches@gnu.org; Mon, 09 Apr 2018 05:06:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:35235) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f5SkT-0007g2-Sf for guix-patches@gnu.org; Mon, 09 Apr 2018 05:06:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f5SkT-0002vY-Is for guix-patches@gnu.org; Mon, 09 Apr 2018 05:06:01 -0400 Subject: [bug#31080] [PATCH 2/2] gnu: Add spindle. References: <20180406160235.27383-1-pierre-antoine.rouby@inria.fr> In-Reply-To: <20180406160235.27383-1-pierre-antoine.rouby@inria.fr> Resent-Message-ID: From: Rouby Pierre-Antoine Date: Mon, 9 Apr 2018 08:59:49 +0200 Message-Id: <20180409065949.32348-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 4403f2a3b..c89662fc9 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -2537,3 +2537,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