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

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

bug#47029: closed ([PATCH] gnu: Add xe.)


From: GNU bug Tracking System
Subject: bug#47029: closed ([PATCH] gnu: Add xe.)
Date: Sat, 13 Mar 2021 12:48:01 +0000

Your message dated Sat, 13 Mar 2021 13:47:09 +0100
with message-id <87o8fnxlte.fsf@nicolasgoaziou.fr>
and subject line Re: [bug#47029] [PATCH] gnu: Add xe.
has caused the debbugs.gnu.org bug report #47029,
regarding [PATCH] gnu: Add xe.
to be marked as done.

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


-- 
47029: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=47029
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add xe. Date: Tue, 9 Mar 2021 22:50:18 +0100
* gnu/packages/parallel.scm (xe): New variable.
---
 gnu/packages/parallel.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm
index ab4450c24e..8816844368 100644
--- a/gnu/packages/parallel.scm
+++ b/gnu/packages/parallel.scm
@@ -11,6 +11,7 @@
 ;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
 ;;; Copyright © 2019, 2020 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2020 Roel Janssen <roel@gnu.org>
+;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -35,6 +36,7 @@
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module ((guix utils) #:select (target-64bit?))
   #:use-module (guix packages)
+  #:use-module (guix utils)
   #:use-module (gnu packages)
   #:use-module (gnu packages admin)
   #:use-module (gnu packages autotools)
@@ -105,6 +107,34 @@ or more computers.  Jobs can consist of single commands or 
of scripts
 and they are executed on lists of files, hosts, users or other items.")
     (license license:gpl3+)))
 
+(define-public xe
+  (package
+    (name "xe")
+    (version "0.11")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/leahneukirchen/xe";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "04jr8f6jcijr0bsmn8ajm0aj35qh9my3xjsaq64h8lwg5bpyn29x"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f
+       #:make-flags (list (string-append "CC=" ,(cc-for-target))
+                          (string-append "PREFIX=" %output))
+       #:phases (modify-phases %standard-phases
+                  (delete 'configure))))
+    (synopsis "Execute a command for every argument")
+    (description
+     "The xe utility constructs command lines from specified arguments,
+combining some of the best features of xargs(1) and apply(1).  Parallel
+execution is also possible.")
+    (home-page "https://github.com/leahneukirchen/xe";)
+    (license license:public-domain)))
+
 (define-public slurm
   (package
    (name "slurm")
-- 
2.25.1




--- End Message ---
--- Begin Message --- Subject: Re: [bug#47029] [PATCH] gnu: Add xe. Date: Sat, 13 Mar 2021 13:47:09 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux)
Hello,

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

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

Applied. Thank you.

Regards,
-- 
Nicolas Goaziou


--- End Message ---

reply via email to

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