From unknown Wed Sep 10 13:24:10 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#47029 <47029@debbugs.gnu.org> To: bug#47029 <47029@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add xe. Reply-To: bug#47029 <47029@debbugs.gnu.org> Date: Wed, 10 Sep 2025 20:24:10 +0000 retitle 47029 [PATCH] gnu: Add xe. reassign 47029 guix-patches submitter 47029 Stefan Reich=C3=B6r severity 47029 normal tag 47029 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 09 16:50:36 2021 Received: (at submit) by debbugs.gnu.org; 9 Mar 2021 21:50:36 +0000 Received: from localhost ([127.0.0.1]:48158 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lJkFP-0000Ph-Pg for submit@debbugs.gnu.org; Tue, 09 Mar 2021 16:50:36 -0500 Received: from lists.gnu.org ([209.51.188.17]:33148) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lJkFM-0000PY-8N for submit@debbugs.gnu.org; Tue, 09 Mar 2021 16:50:35 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:39244) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lJkFM-0008KX-0N for guix-patches@gnu.org; Tue, 09 Mar 2021 16:50:32 -0500 Received: from dd3624.kasserver.com ([85.13.130.11]:57408) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lJkFI-0004Ds-VL for guix-patches@gnu.org; Tue, 09 Mar 2021 16:50:31 -0500 Received: from localhost (37-186-9-252.ip.as39912.net [37.186.9.252]) by dd3624.kasserver.com (Postfix) with ESMTPA id B351C5D402AA; Tue, 9 Mar 2021 22:50:23 +0100 (CET) From: =?UTF-8?q?Stefan=20Reich=C3=B6r?= To: guix-patches@gnu.org Subject: [PATCH] gnu: Add xe. Date: Tue, 9 Mar 2021 22:50:18 +0100 Message-Id: <20210309215018.106184-1-stefan@xsteve.at> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.130.11; envelope-from=stefan@xsteve.at; helo=dd3624.kasserver.com X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: =?UTF-8?q?Stefan=20Reich=C3=B6r?= X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * 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 ;;; Copyright © 2019, 2020 Ludovic Courtès ;;; Copyright © 2020 Roel Janssen +;;; Copyright © 2021 Stefan Reichör ;;; ;;; 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 From debbugs-submit-bounces@debbugs.gnu.org Sat Mar 13 07:47:20 2021 Received: (at 47029-done) by debbugs.gnu.org; 13 Mar 2021 12:47:20 +0000 Received: from localhost ([127.0.0.1]:59253 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lL3fr-0002UC-Lq for submit@debbugs.gnu.org; Sat, 13 Mar 2021 07:47:20 -0500 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:57121) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lL3fp-0002Tv-CH for 47029-done@debbugs.gnu.org; Sat, 13 Mar 2021 07:47:18 -0500 X-Originating-IP: 185.131.40.67 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay3-d.mail.gandi.net (Postfix) with ESMTPSA id 6811E60002; Sat, 13 Mar 2021 12:47:10 +0000 (UTC) From: Nicolas Goaziou To: Stefan =?utf-8?Q?Reich=C3=B6r?= Subject: Re: [bug#47029] [PATCH] gnu: Add xe. References: <20210309215018.106184-1-stefan@xsteve.at> Date: Sat, 13 Mar 2021 13:47:09 +0100 In-Reply-To: <20210309215018.106184-1-stefan@xsteve.at> ("Stefan =?utf-8?Q?Reich=C3=B6r=22's?= message of "Tue, 9 Mar 2021 22:50:18 +0100") Message-ID: <87o8fnxlte.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 47029-done Cc: 47029-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hello, Stefan Reich=C3=B6r writes: > * gnu/packages/parallel.scm (xe): New variable. Applied. Thank you. Regards, --=20 Nicolas Goaziou From unknown Wed Sep 10 13:24:10 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 11 Apr 2021 11:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator