emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#48508: closed ([PATCH] gnu: Add xjobs.)


From: GNU bug Tracking System
Subject: bug#48508: closed ([PATCH] gnu: Add xjobs.)
Date: Fri, 28 May 2021 21:05:01 +0000

Your message dated Fri, 28 May 2021 23:04:06 +0200
with message-id <87lf7yh8op.fsf@gnu.org>
and subject line Re: bug#48508: [PATCH] gnu: Add xjobs.
has caused the debbugs.gnu.org bug report #48508,
regarding [PATCH] gnu: Add xjobs.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
48508: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=48508
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add xjobs. Date: Tue, 18 May 2021 22:57:43 +0200
* 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




--- End Message ---
--- Begin Message --- Subject: Re: bug#48508: [PATCH] gnu: Add xjobs. Date: Fri, 28 May 2021 23:04:06 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)
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’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]