mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: slurm: Update to version 23.11.10.
* 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 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
7f8c98530a
commit
56632b081f
1 changed files with 20 additions and 6 deletions
|
@ -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-"
|
||||
|
|
Loading…
Reference in a new issue