From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35379) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f6Xrq-0006bO-5k for guix-patches@gnu.org; Thu, 12 Apr 2018 04:46:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f6Xrm-00021L-5m for guix-patches@gnu.org; Thu, 12 Apr 2018 04:46:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:39156) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f6Xrm-00021A-1q for guix-patches@gnu.org; Thu, 12 Apr 2018 04:46:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f6Xrl-0003Gm-Ne for guix-patches@gnu.org; Thu, 12 Apr 2018 04:46:01 -0400 Subject: [bug#31080] [PATCH 2/2] gnu: Add spindle. Resent-Message-ID: From: Rouby Pierre-Antoine Date: Thu, 12 Apr 2018 10:43:11 +0200 Message-Id: <20180412084311.26870-2-pierre-antoine.rouby@inria.fr> In-Reply-To: <20180412084311.26870-1-pierre-antoine.rouby@inria.fr> References: <20180411153105.GA105827@pe06.us.cray.com> <20180412084311.26870-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: bavier@cray.com, ludovic.courtes@inria.fr, Rouby Pierre-Antoine * gnu/packages/admin.scm (spindle): New variable. --- gnu/packages/admin.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index c9fea40b1..8ea46b7e2 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -2539,3 +2539,33 @@ launch daemons into the relevant nodes.") (home-page "https://github.com/LLNL/LaunchMON") (supported-systems '("i686-linux" "x86_64-linux")) (license license:lgpl2.1))) + +(define-public spindle + (package + (name "spindle") + (version "0.10") + (source (origin + ;; We use git checkout to avoid github auto-generated tarballs + (method git-fetch) + (uri (git-reference + (url "https://github.com/hpc/Spindle.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "15n3ay0qq81r5v7fif61q1vdjcq44pp2nynkh3fvbzc9fj3c39wd")))) + (build-system gnu-build-system) + (arguments '(#:configure-flags '("--enable-sec-launchmon" + "--enable-sec-munge" + "--enable-sec-none"))) + (inputs + `(("mpi" ,openmpi) + ("munge" ,munge) + ("launchmon" ,launchmon) + ("libgcrypt" ,libgcrypt))) + (synopsis "Scalable library 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