diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2025-11-07 14:52:43 +0100 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2025-11-08 08:20:53 +0100 |
| commit | 0a7bc927a31df36d2b25beddf889c109e99d20a7 (patch) | |
| tree | f9b9ed03aab1ddad463955cdd40a9e19d969e22d /gnu/packages | |
| parent | 694c209becde5e9eb03f320eb8395b616a4d4fd0 (diff) | |
gnu: slurm-drmaa: Update to 1.1.5.
* gnu/packages/parallel.scm (slurm-drmaa): Update to 1.1.5.
[source]: Add snippet to fix a typo.
Change-Id: I879839a25950c731820fd4974fc84fcddec26460
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/parallel.scm | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm index 1bd9b559e5f..27205cbbad7 100644 --- a/gnu/packages/parallel.scm +++ b/gnu/packages/parallel.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2015-2025 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016 Pjotr Prins <pjotr.guix@thebird.nl> ;;; Copyright © 2016 Andreas Enge <andreas@enge.fr> -;;; Copyright © 2016, 2020, 2021, 2022, 2023 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2016, 2020, 2021, 2022, 2023, 2025 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com> ;;; Copyright © 2017, 2018 Rutger Helling <rhelling@mykolab.com> ;;; Copyright © 2018–2022 Tobias Geerinckx-Rice <me@tobias.gr> @@ -377,7 +377,7 @@ minimal slurm package BASE-SLURM." (define-public slurm-drmaa (package (name "slurm-drmaa") - (version "1.1.3") + (version "1.1.5") (source (origin (method url-fetch) (uri (string-append @@ -385,7 +385,13 @@ minimal slurm package BASE-SLURM." version "/slurm-drmaa-" version ".tar.gz")) (sha256 (base32 - "1fn3p4wjj0sgvx0isy3hiwi35vhxa2n2ksq5cn9sq2hg7yyb2phl")))) + "1vydd44wp1xns7dd6zh7yin7i5p0ia3x2bk7ql56wfzhi22yf9sd")) + (modules '((guix build utils))) + (snippet + ;; This is a typo fixed in upstream commit + ;; d4a43450a42b25c491217ed8b8e0af79a538c6e3 + '(substitute* "slurm_drmaa/util.h" + (("slurmdrmaa__init") "slurmdrmaa_init"))))) (build-system gnu-build-system) (arguments `(#:tests? #f)) ; The tests require "bats". (inputs |
