all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#48508] [PATCH] gnu: Add xjobs.
@ 2021-05-18 20:57 Stefan Reichör
  2021-05-28 21:04 ` bug#48508: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Stefan Reichör @ 2021-05-18 20:57 UTC (permalink / raw)
  To: 48508; +Cc: Stefan Reichör

* gnu/packages/parallel.scm (xjobs): New variable.
---
 gnu/packages/parallel.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm
index 17e2a7f7fe..9cb915fcc6 100644
--- a/gnu/packages/parallel.scm
+++ b/gnu/packages/parallel.scm
@@ -41,6 +41,7 @@
   #:use-module (gnu packages admin)
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages base)
+  #:use-module (gnu packages flex)
   #:use-module (gnu packages freeipmi)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages mpi)
@@ -135,6 +136,32 @@ execution is also possible.")
     (home-page "https://github.com/leahneukirchen/xe")
     (license license:public-domain)))
 
+(define-public xjobs
+  (package
+    (name "xjobs")
+    (version "20200726")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "http://www.maier-komor.de/xjobs/xjobs-"
+                    version ".tgz"))
+              (sha256
+               (base32
+                "0ay6gn43pnm7r1jamwgpycl67bjg5n87ncl27jb01w2x6x70z0i3"))))
+    (build-system gnu-build-system)
+    (arguments `(#:tests? #f)) ;; No tests
+    (native-inputs
+     `(("flex" ,flex)
+       ("which" ,which)))
+    (home-page "http://www.maier-komor.de/xjobs.html")
+    (synopsis
+     "Parallel execution of jobs with several useful options")
+    (description
+     "xjobs reads job descriptions line by line and executes them in
+parallel.  It limits the number of parallel executing jobs and starts new jobs
+when jobs finish.")
+    (license license:gpl2)))
+
 (define-public slurm
   (package
    (name "slurm")
-- 
2.25.1





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

* bug#48508: [PATCH] gnu: Add xjobs.
  2021-05-18 20:57 [bug#48508] [PATCH] gnu: Add xjobs Stefan Reichör
@ 2021-05-28 21:04 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2021-05-28 21:04 UTC (permalink / raw)
  To: Stefan Reichör; +Cc: 48508-done

Stefan Reichör <stefan@xsteve.at> skribis:

> * gnu/packages/parallel.scm (xjobs): New variable.

[...]

> +    (license license:gpl2)))

Changed to ‘gpl2+’, as per source file headers, and applied.

Thanks!

Ludo’.




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

end of thread, other threads:[~2021-05-28 21:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-18 20:57 [bug#48508] [PATCH] gnu: Add xjobs Stefan Reichör
2021-05-28 21:04 ` bug#48508: " 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.