From unknown Sun Jun 22 07:37:41 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#48508] [PATCH] gnu: Add xjobs. Resent-From: Stefan =?UTF-8?Q?Reich=C3=B6r?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 18 May 2021 20:58:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 48508 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 48508@debbugs.gnu.org Cc: Stefan =?UTF-8?Q?Reich=C3=B6r?= X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.162137147712546 (code B ref -1); Tue, 18 May 2021 20:58:02 +0000 Received: (at submit) by debbugs.gnu.org; 18 May 2021 20:57:57 +0000 Received: from localhost ([127.0.0.1]:57450 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lj6mr-0003GI-BV for submit@debbugs.gnu.org; Tue, 18 May 2021 16:57:57 -0400 Received: from lists.gnu.org ([209.51.188.17]:58122) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lj6mo-0003G9-Rd for submit@debbugs.gnu.org; Tue, 18 May 2021 16:57:55 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:53544) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lj6mo-0001q5-Ig for guix-patches@gnu.org; Tue, 18 May 2021 16:57:54 -0400 Received: from dd3624.kasserver.com ([85.13.130.11]:52904) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lj6mj-0001Ll-GW for guix-patches@gnu.org; Tue, 18 May 2021 16:57:54 -0400 Received: from localhost (37-186-9-252.ip.as39912.net [37.186.9.252]) by dd3624.kasserver.com (Postfix) with ESMTPA id DC16D5D40293; Tue, 18 May 2021 22:57:45 +0200 (CEST) From: Stefan =?UTF-8?Q?Reich=C3=B6r?= Date: Tue, 18 May 2021 22:57:43 +0200 Message-Id: <20210518205743.137731-1-stefan@xsteve.at> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 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-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 (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 From unknown Sun Jun 22 07:37:41 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Stefan =?UTF-8?Q?Reich=C3=B6r?= Subject: bug#48508: closed (Re: bug#48508: [PATCH] gnu: Add xjobs.) Message-ID: References: <87lf7yh8op.fsf@gnu.org> <20210518205743.137731-1-stefan@xsteve.at> X-Gnu-PR-Message: they-closed 48508 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 48508@debbugs.gnu.org Date: Fri, 28 May 2021 21:05:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1622235902-14612-1" This is a multi-part message in MIME format... ------------=_1622235902-14612-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #48508: [PATCH] gnu: Add xjobs. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 48508@debbugs.gnu.org. --=20 48508: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D48508 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1622235902-14612-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 48508-done) by debbugs.gnu.org; 28 May 2021 21:04:15 +0000 Received: from localhost ([127.0.0.1]:55474 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lmjeQ-0003mc-TS for submit@debbugs.gnu.org; Fri, 28 May 2021 17:04:15 -0400 Received: from eggs.gnu.org ([209.51.188.92]:55222) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lmjeP-0003mQ-9n for 48508-done@debbugs.gnu.org; Fri, 28 May 2021 17:04:13 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:47746) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lmjeK-0006De-4S; Fri, 28 May 2021 17:04:08 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=39694 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lmjeJ-0006B6-SR; Fri, 28 May 2021 17:04:08 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Stefan =?utf-8?Q?Reich=C3=B6r?= Subject: Re: bug#48508: [PATCH] gnu: Add xjobs. References: <20210518205743.137731-1-stefan@xsteve.at> Date: Fri, 28 May 2021 23:04:06 +0200 In-Reply-To: <20210518205743.137731-1-stefan@xsteve.at> ("Stefan =?utf-8?Q?Reich=C3=B6r=22's?= message of "Tue, 18 May 2021 22:57:43 +0200") Message-ID: <87lf7yh8op.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 48508-done Cc: 48508-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: -3.3 (---) Stefan Reich=C3=B6r skribis: > * gnu/packages/parallel.scm (xjobs): New variable. [...] > + (license license:gpl2))) Changed to =E2=80=98gpl2+=E2=80=99, as per source file headers, and applied. Thanks! Ludo=E2=80=99. ------------=_1622235902-14612-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 18 May 2021 20:57:57 +0000 Received: from localhost ([127.0.0.1]:57450 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lj6mr-0003GI-BV for submit@debbugs.gnu.org; Tue, 18 May 2021 16:57:57 -0400 Received: from lists.gnu.org ([209.51.188.17]:58122) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lj6mo-0003G9-Rd for submit@debbugs.gnu.org; Tue, 18 May 2021 16:57:55 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:53544) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lj6mo-0001q5-Ig for guix-patches@gnu.org; Tue, 18 May 2021 16:57:54 -0400 Received: from dd3624.kasserver.com ([85.13.130.11]:52904) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lj6mj-0001Ll-GW for guix-patches@gnu.org; Tue, 18 May 2021 16:57:54 -0400 Received: from localhost (37-186-9-252.ip.as39912.net [37.186.9.252]) by dd3624.kasserver.com (Postfix) with ESMTPA id DC16D5D40293; Tue, 18 May 2021 22:57:45 +0200 (CEST) From: =?UTF-8?q?Stefan=20Reich=C3=B6r?= To: guix-patches@gnu.org Subject: [PATCH] gnu: Add xjobs. Date: Tue, 18 May 2021 22:57:43 +0200 Message-Id: <20210518205743.137731-1-stefan@xsteve.at> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 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 (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 ------------=_1622235902-14612-1--