guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

12/12: gnu: slurm: Update to 22.05.1.


From: guix-commits
Subject: 12/12: gnu: slurm: Update to 22.05.1.
Date: Tue, 14 Jun 2022 18:28:11 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 8a04ac4b2f5d356719d896536dabc95a9520c938
Author: Ludovic Courtès <ludovic.courtes@inria.fr>
AuthorDate: Wed Jun 15 00:17:03 2022 +0200

    gnu: slurm: Update to 22.05.1.
    
    * gnu/packages/parallel.scm (slurm): Update to 22.05.1.
    (slurm-21.08): New variable.
---
 gnu/packages/parallel.scm | 18 ++++++++++++++++--
 1 file changed, 16 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm
index 35be8e9ada..ec785cedf7 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 "21.08.8")
+    (version "22.05.1")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -174,7 +174,7 @@ when jobs finish.")
                     version ".tar.bz2"))
               (sha256
                (base32
-                "1sjln54idc9rhg8f2nvm38sgs6fncncyzslas8ixy65pqz2hphbf"))
+                "0f3hhlki8g7slllsnyj1qikbsvr62i0hig85lcdcfnmsagzlhbyi"))
               (modules '((guix build utils)))
               (snippet
                '(begin
@@ -262,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-21.08
+  (package
+    (inherit slurm)
+    (version "21.08.8")
+    (source (origin
+              (inherit (package-source slurm))
+              (method url-fetch)
+              (uri (string-append
+                    "https://download.schedmd.com/slurm/slurm-";
+                    version ".tar.bz2"))
+              (sha256
+               (base32
+                "1sjln54idc9rhg8f2nvm38sgs6fncncyzslas8ixy65pqz2hphbf"))))))
+
 (define-public slurm-20.11
   (package
     (inherit slurm)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]