diff mbox series

[bug#41523] gnu: slurm-drmaa: Update to 1.1.1.

Message ID b6b6b5eb25dda0abb7908bbc5d0fb9d6050a0afa.camel@gnu.org
State Accepted
Headers show
Series [bug#41523] gnu: slurm-drmaa: Update to 1.1.1. | expand

Checks

Context Check Description
cbaines/comparison success View comparision
cbaines/git branch success View Git branch
cbaines/applying patch fail View Laminar job

Commit Message

Roel Janssen May 25, 2020, 10:44 a.m. UTC
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

[1] https://github.com/natefoo/slurm-drmaa

Comments

Ludovic Courtès May 29, 2020, 4 p.m. UTC | #1
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’.
Roel Janssen June 2, 2020, 7:50 a.m. UTC | #2
On Fri, 2020-05-29 at 18:00 +0200, Ludovic Courtès wrote:
> 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
diff mbox series

Patch

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(-)

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