all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#73624] [PATCH] gnu: slurm: Update to version 23.11.10.
@ 2024-10-04  7:16 Romain GARBAGE
  2024-10-04 11:52 ` bug#73624: " Ludovic Courtès
  2024-10-04 15:10 ` [bug#73624] " Ludovic Courtès
  0 siblings, 2 replies; 5+ messages in thread
From: Romain GARBAGE @ 2024-10-04  7:16 UTC (permalink / raw)
  To: 73624; +Cc: ludovic.courtes, Romain GARBAGE

* gnu/packages/parallel.scm (slurm): Update to version 23.11.10.
(slurm-23.02): New variable.
(slurm-22.05): Inherit from slurm-23.02.

Change-Id: I614f7ad29b3aa7edb2a9792ae45825e311900379
---
 gnu/packages/parallel.scm | 26 ++++++++++++++++++++------
 1 file changed, 20 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm
index ecaceef81e..fc96136065 100644
--- a/gnu/packages/parallel.scm
+++ b/gnu/packages/parallel.scm
@@ -193,7 +193,7 @@ (define-public xjobs
 (define-public slurm
   (package
     (name "slurm")
-    (version "23.02.6")
+    (version "23.11.10")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -201,9 +201,7 @@ (define-public slurm
                     version ".tar.bz2"))
               (sha256
                (base32
-                "08rz3r1rlnb3pmfdnbh542gm44ja0fdy8rkj4vm4lclc48cvqp2a"))
-              (patches
-               (search-patches "slurm-23-salloc-fallback-shell.patch"))
+                "0gf7x85bzpkrx87mb16wyiyvkjxqq01sbajsjxwrspyi2v675hgr"))
               (modules '((guix build utils)))
               (snippet
                '(begin
@@ -300,12 +298,28 @@ (define-public slurm
 ;; As noted in the link, YY.MM is the release scheme, and the 'maintenance'
 ;; digit does not introduce incompatibilities.
 
+(define-public slurm-23.02
+  (package
+   (inherit slurm)
+   (version "23.02.6")
+    (source (origin
+             (inherit (package-source slurm))
+             (method url-fetch)
+             (uri (string-append
+                   "https://download.schedmd.com/slurm/slurm-"
+                   version ".tar.bz2"))
+             (patches
+              (search-patches "slurm-23-salloc-fallback-shell.patch"))
+             (sha256
+              (base32
+               "08rz3r1rlnb3pmfdnbh542gm44ja0fdy8rkj4vm4lclc48cvqp2a"))))))
+
 (define-public slurm-22.05
   (package
-    (inherit slurm)
+    (inherit slurm-23.02)
     (version "22.05.1")
     (source (origin
-              (inherit (package-source slurm))
+              (inherit (package-source slurm-23.02))
               (method url-fetch)
               (uri (string-append
                     "https://download.schedmd.com/slurm/slurm-"

base-commit: 71fef00c95b22a1d917abdb28de5aa217b023e31
-- 
2.46.0





^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-10-07 10:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-04  7:16 [bug#73624] [PATCH] gnu: slurm: Update to version 23.11.10 Romain GARBAGE
2024-10-04 11:52 ` bug#73624: " Ludovic Courtès
2024-10-04 15:10 ` [bug#73624] " Ludovic Courtès
2024-10-07  9:55   ` bug#73624: " Ludovic Courtès
2024-10-07 10:00   ` [bug#73624] " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.