[PATCH] gnu: slurm-drmaa: Update to 1.1.1.

  • Done
  • quality assurance status badge
Details
2 participants
  • Ludovic Courtès
  • Roel Janssen
Owner
unassigned
Submitted by
Roel Janssen
Severity
normal
R
R
Roel Janssen wrote on 25 May 2020 12:44
(address . guix-patches@gnu.org)
b6b6b5eb25dda0abb7908bbc5d0fb9d6050a0afa.camel@gnu.org
Dear Guix,

I'd like to update slurm-drmaa so that it works with the slurm package
in Guix.

According to this fork [1] the primary maintainer has passed away, and
therefore the fork was created. Therefore I would like to change the
package's source to this fork's code.

Kind regards,
Roel Janssen

From b30c57c04c7fd6931b3ff57555573e809ec5fed8 Mon Sep 17 00:00:00 2001
From: Roel Janssen <roel@gnu.org>
Date: Mon, 25 May 2020 11:57:51 +0200
Subject: [PATCH] gnu: slurm-drmaa: Update to 1.1.1.

* gnu/packages/parallel.scm (slurm-drmaa): Update to 1.1.1.
---
gnu/packages/parallel.scm | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)

Toggle diff (42 lines)
diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm
index 92f7b58128..ed948d1631 100644
--- a/gnu/packages/parallel.scm
+++ b/gnu/packages/parallel.scm
@@ -10,6 +10,7 @@
;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
;;; Copyright © 2019 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2020 Roel Janssen <roel@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -192,20 +193,22 @@ by managing a queue of pending work.")
(define-public slurm-drmaa
(package
(name "slurm-drmaa")
- (version "1.0.7")
+ (version "1.1.1")
(source (origin
(method url-fetch)
- (uri "http://apps.man.poznan.pl/trac/slurm-drmaa/downloads/9")
- (file-name (string-append name "-" version ".tar.gz"))
+ (uri (string-append
+ "https://github.com/natefoo/slurm-drmaa/releases/download/"
+ version "/slurm-drmaa-" version ".tar.gz"))
(sha256
(base32
- "0grw55hmny2mc4nc0y1arnvxd2k0dcdfn476kzs180fibjxgfw14"))))
+ "19r4cm88pcpm3wli4cc61zq7354pg67cg866f3a430p15hm1knrn"))))
(build-system gnu-build-system)
+ (arguments `(#:tests? #f)) ; The tests require "bats".
(inputs
`(("slurm" ,slurm)))
(native-inputs
`(("which" ,which)))
- (home-page "http://apps.man.poznan.pl/trac/slurm-drmaa")
+ (home-page "https://github.com/natefoo/slurm-drmaa")
(synopsis "Distributed resource management application API for SLURM")
(description
"PSNC DRMAA for Simple Linux Utility for Resource Management (SLURM) is
--
2.26.2
L
L
Ludovic Courtès wrote on 29 May 2020 18:00
(name . Roel Janssen)(address . roel@gnu.org)(address . 41523@debbugs.gnu.org)
87pnam20k0.fsf@gnu.org
Hi,

Roel Janssen <roel@gnu.org> skribis:

Toggle quote (7 lines)
> From b30c57c04c7fd6931b3ff57555573e809ec5fed8 Mon Sep 17 00:00:00 2001
> From: Roel Janssen <roel@gnu.org>
> Date: Mon, 25 May 2020 11:57:51 +0200
> Subject: [PATCH] gnu: slurm-drmaa: Update to 1.1.1.
>
> * gnu/packages/parallel.scm (slurm-drmaa): Update to 1.1.1.

Go for it!

Ludo’.
R
R
Roel Janssen wrote on 2 Jun 2020 09:50
(name . Ludovic Courtès)(address . ludo@gnu.org)(address . 41523-done@debbugs.gnu.org)
2f81595e2e606dfd6ad6a44b48c0662df0dfd831.camel@gnu.org
On Fri, 2020-05-29 at 18:00 +0200, Ludovic Courtès wrote:
Toggle quote (17 lines)
> Hi,
>
> Roel Janssen <roel@gnu.org> skribis:
>
> > From b30c57c04c7fd6931b3ff57555573e809ec5fed8 Mon Sep 17 00:00:00
> > 2001
> > From: Roel Janssen <roel@gnu.org>
> > Date: Mon, 25 May 2020 11:57:51 +0200
> > Subject: [PATCH] gnu: slurm-drmaa: Update to 1.1.1.
> >
> > * gnu/packages/parallel.scm (slurm-drmaa): Update to 1.1.1.
>
> Go for it!
>
> Ludo’.
>

Thanks! Done in a7dff9553c.

Kind regards,
Roel Janssen
Closed
?