From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34648) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f6FP7-0006yf-5A for guix-patches@gnu.org; Wed, 11 Apr 2018 09:03:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f6FOx-0006wi-Ay for guix-patches@gnu.org; Wed, 11 Apr 2018 09:03:12 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:37915) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f6FOx-0006wV-7r for guix-patches@gnu.org; Wed, 11 Apr 2018 09:03:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f6FOw-0001pI-VV for guix-patches@gnu.org; Wed, 11 Apr 2018 09:03:02 -0400 Subject: [bug#31080] [PATCH 2/2] gnu: Add spindle. Resent-Message-ID: From: Rouby Pierre-Antoine Date: Wed, 11 Apr 2018 14:58:10 +0200 Message-Id: <20180411125810.1315-2-pierre-antoine.rouby@inria.fr> In-Reply-To: <20180411125810.1315-1-pierre-antoine.rouby@inria.fr> References: <20180410152040.GX105827@pe06.us.cray.com> <20180411125810.1315-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 | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 71899d98c..a277a0a75 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -2539,3 +2539,32 @@ 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 + (method url-fetch) + (uri (string-append + "https://github.com/hpc/Spindle/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "10hl1d5nvjbx8yah4zhbxhijjigqsvrld057ljv01cvqkqycsx39")))) + (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