[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/07: gnu: slurm: Add 21.08.8.
From: |
guix-commits |
Subject: |
02/07: gnu: slurm: Add 21.08.8. |
Date: |
Fri, 6 May 2022 04:32:59 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 3d05105705997498b9ad52263122caf11c52dd3c
Author: Ludovic Courtès <ludovic.courtes@inria.fr>
AuthorDate: Fri May 6 09:52:05 2022 +0200
gnu: slurm: Add 21.08.8.
* gnu/packages/parallel.scm (slurm): Update to 21.08.8.
(slurm-20.11): New variable.
---
gnu/packages/parallel.scm | 21 ++++++++++++++++++---
1 file changed, 18 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm
index 2a225a23d3..70f9e6dc4a 100644
--- a/gnu/packages/parallel.scm
+++ b/gnu/packages/parallel.scm
@@ -166,7 +166,7 @@ when jobs finish.")
(define-public slurm
(package
(name "slurm")
- (version "20.11.9")
+ (version "21.08.8")
(source (origin
(method url-fetch)
(uri (string-append
@@ -174,7 +174,7 @@ when jobs finish.")
version ".tar.bz2"))
(sha256
(base32
- "0xq2d6dm285y541dyg1h66z7svsisrq8c81ag0f601xz1cn3mq9m"))
+ "1sjln54idc9rhg8f2nvm38sgs6fncncyzslas8ixy65pqz2hphbf"))
(modules '((guix build utils)))
(snippet
'(begin
@@ -213,7 +213,8 @@ when jobs finish.")
#~(list "--enable-pam" "--sysconfdir=/etc/slurm"
"--disable-static"
(string-append "--with-freeipmi=" #$(this-package-input
"freeipmi"))
- (string-append "--with-hwloc=" #$(this-package-input
"hwloc"))
+ (string-append "--with-hwloc="
+ (ungexp (this-package-input "hwloc") "lib"))
(string-append "--with-json=" #$(this-package-input
"json-c"))
(string-append "--with-munge=" #$(this-package-input
"munge"))
@@ -261,6 +262,20 @@ by managing a queue of pending work.")
;; As noted in the link, YY.MM is the release scheme, and the 'maintenance'
;; digit does not introduce incompatibilities.
+(define-public slurm-20.11
+ (package
+ (inherit slurm)
+ (version "20.11.9")
+ (source (origin
+ (inherit (package-source slurm))
+ (method url-fetch)
+ (uri (string-append
+ "https://download.schedmd.com/slurm/slurm-"
+ version ".tar.bz2"))
+ (sha256
+ (base32
+ "0xq2d6dm285y541dyg1h66z7svsisrq8c81ag0f601xz1cn3mq9m"))))))
+
(define-public slurm-20.02
(package
(inherit slurm)
- branch master updated (a2fb35e43d -> 27fc4ae397), guix-commits, 2022/05/06
- 02/07: gnu: slurm: Add 21.08.8.,
guix-commits <=
- 01/07: gnu: slurm: Update to 20.11.9 [fixes CVE-2022-{29500, 29501, 29502}]., guix-commits, 2022/05/06
- 04/07: gnu: Add python-arpeggio., guix-commits, 2022/05/06
- 07/07: gnu: cava: Fix build failure, guix-commits, 2022/05/06
- 05/07: gnu: nftables: Update to 1.0.2., guix-commits, 2022/05/06
- 03/07: gnu: ytfzf: Update to 2.3., guix-commits, 2022/05/06
- 06/07: gnu: cava: Use G-expressions., guix-commits, 2022/05/06