X-Loop: help-debbugs@HIDDEN Subject: [bug#48430] [PATCH 5/5] gnu: Add python-multiplex. Resent-From: Stefan =?UTF-8?Q?Reich=C3=B6r?= <stefan@HIDDEN> Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> Resent-CC: guix-patches@HIDDEN Resent-Date: Fri, 14 May 2021 21:19:04 +0000 Resent-Message-ID: <handler.48430.B.162102709314855 <at> debbugs.gnu.org> Resent-Sender: help-debbugs@HIDDEN X-GNU-PR-Message: report 48430 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 48430 <at> debbugs.gnu.org Cc: Stefan =?UTF-8?Q?Reich=C3=B6r?= <stefan@HIDDEN> X-Debbugs-Original-To: guix-patches@HIDDEN Received: via spool by submit <at> debbugs.gnu.org id=B.162102709314855 (code B ref -1); Fri, 14 May 2021 21:19:04 +0000 Received: (at submit) by debbugs.gnu.org; 14 May 2021 21:18:13 +0000 Received: from localhost ([127.0.0.1]:47197 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1lhfCH-0003rX-8Q for submit <at> debbugs.gnu.org; Fri, 14 May 2021 17:18:13 -0400 Received: from lists.gnu.org ([209.51.188.17]:60266) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <stefan@HIDDEN>) id 1lhfCA-0003qz-TR for submit <at> debbugs.gnu.org; Fri, 14 May 2021 17:18:07 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:48082) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <stefan@HIDDEN>) id 1lhfCA-0003GV-Oq for guix-patches@HIDDEN; Fri, 14 May 2021 17:18:06 -0400 Received: from dd3624.kasserver.com ([85.13.130.11]:55824) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <stefan@HIDDEN>) id 1lhfC8-0008JM-6d for guix-patches@HIDDEN; Fri, 14 May 2021 17:18:06 -0400 Received: from localhost (37-186-9-252.ip.as39912.net [37.186.9.252]) by dd3624.kasserver.com (Postfix) with ESMTPA id DB9415D400A3; Fri, 14 May 2021 23:18:02 +0200 (CEST) From: Stefan =?UTF-8?Q?Reich=C3=B6r?= <stefan@HIDDEN> Date: Fri, 14 May 2021 23:17:46 +0200 Message-Id: <20210514211746.143145-5-stefan@HIDDEN> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210514211746.143145-1-stefan@HIDDEN> References: <20210514211746.143145-1-stefan@HIDDEN> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.130.11; envelope-from=stefan@HIDDEN; 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 <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) * gnu/packages/python-xyz.scm (python-multiplex): New variable. --- gnu/packages/python-xyz.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 431f2aa85d..ff2ce6ad32 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -24983,6 +24983,34 @@ applications with variable CPU loads).") (define-public python2-parallel (package-with-python2 python-parallel)) +(define-public python-multiplex + (package + (name "python-multiplex") + (version "0.5.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "multiplex" version)) + (sha256 + (base32 + "1g01xwx5z0m1dvp5d69ndj8hz80d2z5xzasixa7c0k6ny93f9qhg")))) + (build-system python-build-system) + (propagated-inputs + `(("python-aiofiles" ,python-aiofiles-0.5.0) + ("python-aiostream" ,python-aiostream) + ("python-click" ,python-click) + ("python-easy-ansi" ,python-easy-ansi) + ("python-pyte" ,python-pyte))) + (home-page + "https://github.com/dankilman/multiplex") + (synopsis + "View output of multiple processes, in parallel, in the console, with an +interactive TUI") + (description + "Can be used as cli tool or as python library to view output of parallel +running processes") + (license license:expat))) + (define-public python-djvulibre (package (name "python-djvulibre") -- 2.25.1
Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) Content-Type: text/plain; charset=utf-8 X-Loop: help-debbugs@HIDDEN From: help-debbugs@HIDDEN (GNU bug Tracking System) To: Stefan =?UTF-8?Q?Reich=C3=B6r?= <stefan@HIDDEN> Subject: bug#48430: Acknowledgement ([PATCH 5/5] gnu: Add python-multiplex.) Message-ID: <handler.48430.B.162102709314855.ack <at> debbugs.gnu.org> References: <20210514211746.143145-5-stefan@HIDDEN> X-Gnu-PR-Message: ack 48430 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 48430 <at> debbugs.gnu.org Date: Fri, 14 May 2021 21:19:05 +0000 Thank you for filing a new bug report with debbugs.gnu.org. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): guix-patches@HIDDEN If you wish to submit further information on this problem, please send it to 48430 <at> debbugs.gnu.org. Please do not send mail to help-debbugs@HIDDEN unless you wish to report a problem with the Bug-tracking system. --=20 48430: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D48430 GNU Bug Tracking System Contact help-debbugs@HIDDEN with problems
X-Loop: help-debbugs@HIDDEN Subject: [bug#48430] [PATCH] gnu: Add python-multiplex. References: <20210514211746.143145-5-stefan@HIDDEN> In-Reply-To: <20210514211746.143145-5-stefan@HIDDEN> Resent-From: Stefan =?UTF-8?Q?Reich=C3=B6r?= <stefan@HIDDEN> Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> Resent-CC: guix-patches@HIDDEN Resent-Date: Sat, 29 May 2021 21:15:01 +0000 Resent-Message-ID: <handler.48430.B48430.16223228475338 <at> debbugs.gnu.org> Resent-Sender: help-debbugs@HIDDEN X-GNU-PR-Message: followup 48430 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 48430 <at> debbugs.gnu.org Cc: Stefan =?UTF-8?Q?Reich=C3=B6r?= <stefan@HIDDEN> Received: via spool by 48430-submit <at> debbugs.gnu.org id=B48430.16223228475338 (code B ref 48430); Sat, 29 May 2021 21:15:01 +0000 Received: (at 48430) by debbugs.gnu.org; 29 May 2021 21:14:07 +0000 Received: from localhost ([127.0.0.1]:57820 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1ln6HW-0001O1-QO for submit <at> debbugs.gnu.org; Sat, 29 May 2021 17:14:06 -0400 Received: from dd3624.kasserver.com ([85.13.130.11]:42832) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <stefan@HIDDEN>) id 1ln6HT-0001Nq-GE for 48430 <at> debbugs.gnu.org; Sat, 29 May 2021 17:14:06 -0400 Received: from localhost (217-149-163-5.nat.highway.telekom.at [217.149.163.5]) by dd3624.kasserver.com (Postfix) with ESMTPA id A4F3B5D405DC; Sat, 29 May 2021 23:14:01 +0200 (CEST) From: Stefan =?UTF-8?Q?Reich=C3=B6r?= <stefan@HIDDEN> Date: Sat, 29 May 2021 23:10:41 +0200 Message-Id: <20210529211041.185234-1-stefan@HIDDEN> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.7 (-) * gnu/packages/python-xyz.scm (python-multiplex): New variable. --- I was not able to switch the source url to github since the poetry build system is required there. I have no idea how to use poetry from within guix gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f208a7d153..d68e237830 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25062,6 +25062,32 @@ applications with variable CPU loads).") (define-public python2-parallel (package-with-python2 python-parallel)) +(define-public python-multiplex + (package + (name "python-multiplex") + (version "0.5.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "multiplex" version)) + (sha256 + (base32 + "1g01xwx5z0m1dvp5d69ndj8hz80d2z5xzasixa7c0k6ny93f9qhg")))) + (build-system python-build-system) + (propagated-inputs + `(("python-aiofiles" ,python-aiofiles-0.5.0) + ("python-aiostream" ,python-aiostream) + ("python-click" ,python-click) + ("python-easy-ansi" ,python-easy-ansi) + ("python-pyte" ,python-pyte))) + (home-page "https://github.com/dankilman/multiplex") + (synopsis "View output of multiple processes, in parallel, in the console, +with an interactive TUI") + (description + "Can be used as cli tool or as python library to view output of parallel +running processes") + (license license:expat))) + (define-public python-djvulibre (package (name "python-djvulibre") -- 2.25.1
X-Loop: help-debbugs@HIDDEN Subject: [bug#48430] [PATCH] gnu: Add python-multiplex. Resent-From: Vinicius Monego <monego@HIDDEN> Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> Resent-CC: guix-patches@HIDDEN Resent-Date: Thu, 11 Nov 2021 04:53:01 +0000 Resent-Message-ID: <handler.48430.B48430.163660635027926 <at> debbugs.gnu.org> Resent-Sender: help-debbugs@HIDDEN X-GNU-PR-Message: followup 48430 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Stefan =?UTF-8?Q?Reich=C3=B6r?= <stefan@HIDDEN>, 48430 <at> debbugs.gnu.org Received: via spool by 48430-submit <at> debbugs.gnu.org id=B48430.163660635027926 (code B ref 48430); Thu, 11 Nov 2021 04:53:01 +0000 Received: (at 48430) by debbugs.gnu.org; 11 Nov 2021 04:52:30 +0000 Received: from localhost ([127.0.0.1]:39793 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1ml24c-0007GM-0k for submit <at> debbugs.gnu.org; Wed, 10 Nov 2021 23:52:30 -0500 Received: from mout02.posteo.de ([185.67.36.66]:49755) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <monego@HIDDEN>) id 1ml24Y-0007G2-5i for 48430 <at> debbugs.gnu.org; Wed, 10 Nov 2021 23:52:28 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 5D376240103 for <48430 <at> debbugs.gnu.org>; Thu, 11 Nov 2021 05:52:18 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1636606339; bh=MaBEi8iRH5+UMBX3boE18OxdTl+cG3VGrEDDusYzWbo=; h=Subject:From:To:Date:From; b=goNZ/KZIn0INsdeKTkgswVTvRKw7s9dEbwbl8Q1yi5dDYszpTDCvgcxUXfYcYKrT+ lJ/v7aAqf4fVTbmfDmbofpW77w2j37/INbs9W2BErPMwXsG9r5t/O9ddUB+SFWqfmE UJBas6L//zAjahFLzskw2CvFhoox2DK5SwupQYX94JgiPZWSpQu4UnO4KEZXsvu+0N RNogQsJs6h4B6EdJl8kZxVvChgBnUpBs1i+NpaJpUnfCMWycTk34t75mFy4RUWTV3e iY5V3EllrhOlxn5aulHAI9aBdCO5pS5d4lRiayuvpHIlYGZb9wBiepEFFp7nlEC40S AGRLX1xqRgoeg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4HqTpn0WZyz6tm9; Thu, 11 Nov 2021 05:52:16 +0100 (CET) Message-ID: <3555e2c85027f9b560e7583ead618cd1db0ef587.camel@HIDDEN> From: Vinicius Monego <monego@HIDDEN> Date: Thu, 11 Nov 2021 04:52:07 +0000 In-Reply-To: <20210529211041.185234-1-stefan@HIDDEN> References: <20210529211041.185234-1-stefan@HIDDEN> Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) Em sáb, 2021-05-29 às 23:10 +0200, Stefan Reichör escreveu: > * gnu/packages/python-xyz.scm (python-multiplex): New variable. > --- > I was not able to switch the source url to github since the poetry > build system is required there. I have no idea how to use poetry from > within guix > Hi, I was taking a look at this series again. > gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) > > diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python- > xyz.scm > index f208a7d153..d68e237830 100644 > --- a/gnu/packages/python-xyz.scm > +++ b/gnu/packages/python-xyz.scm > @@ -25062,6 +25062,32 @@ applications with variable CPU loads).") > (define-public python2-parallel > (package-with-python2 python-parallel)) > > +(define-public python-multiplex > + (package > + (name "python-multiplex") > + (version "0.5.1") > + (source > + (origin Indentation is 1 space below source. If you're using Emacs it can fix indentation with M-x indent-sexp (C-M-q) with the cursor on the beginning of the expression. > + (method url-fetch) > + (uri (pypi-uri "multiplex" version)) > + (sha256 > + (base32 > + > "1g01xwx5z0m1dvp5d69ndj8hz80d2z5xzasixa7c0k6ny93f9qhg")))) > + (build-system python-build-system) I'd suggest to add something like > (arguments > `(#:tests? #f)) ; no tests in PyPI and no setup.py in github in this place. > + (propagated-inputs > + `(("python-aiofiles" ,python-aiofiles-0.5.0) If multiplex must match aiofiles version, issue 48429 can be skipped since multiplex is now at 0.6.0 and we have aiofiles 0.6.0. > + ("python-aiostream" ,python-aiostream) > + ("python-click" ,python-click) > + ("python-easy-ansi" ,python-easy-ansi) > + ("python-pyte" ,python-pyte))) > + (home-page "https://github.com/dankilman/multiplex") > + (synopsis "View output of multiple processes, in parallel, in > the console, > +with an interactive TUI") Please keep synopsis under 78 columns. I'd suggest something like "View output of multiple process with an interactive TUI". > + (description > + "Can be used as cli tool or as python library to view output > of parallel > +running processes") Description must be a full sentence. For instance: "Multiplex is a CLI tool and a Python library to view output of running processes in parallel.", or something alone these lines. > + (license license:expat))) > + > (define-public python-djvulibre > (package > (name "python-djvulibre") Your patch 2 was already merged. Can you send a series of patches 1, 3 and 5 with -v2 to 48428 <at> debbugs.gnu.org (the first patch)? When merged, that and 48427, 48429 and 48430 can be closed. Vinicius
MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@HIDDEN From: help-debbugs@HIDDEN (GNU bug Tracking System) To: Sharlatan Hellseher <sharlatanus@HIDDEN> Subject: bug#48430: closed ([PATCH 5/5] gnu: Add python-multiplex.) CC: tracker <at> debbugs.gnu.org Message-ID: <handler.48430.D48430.173878447830253.ackdone <at> debbugs.gnu.org> References: <87pljwgox6.fsf@HIDDEN> <20210514211746.143145-5-stefan@HIDDEN> X-Gnu-PR-Message: closed 48430 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Date: Wed, 05 Feb 2025 19:42:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1738784522-30318-0" This is a multi-part message in MIME format... ------------=_1738784522-30318-0 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 Your message dated Wed, 05 Feb 2025 19:41:09 +0000 with message-id <87pljwgox6.fsf@HIDDEN> and subject line [PATCH 5/5] gnu: Add python-multiplex. has caused the debbugs.gnu.org bug report #48430, regarding [PATCH 5/5] gnu: Add python-multiplex. to be marked as done. (If you believe you have received this mail in error, please contact help-debbugs@HIDDEN) --=20 48430: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D48430 GNU Bug Tracking System Contact help-debbugs@HIDDEN with problems ------------=_1738784522-30318-0 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 14 May 2021 21:18:13 +0000 Received: from localhost ([127.0.0.1]:47197 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1lhfCH-0003rX-8Q for submit <at> debbugs.gnu.org; Fri, 14 May 2021 17:18:13 -0400 Received: from lists.gnu.org ([209.51.188.17]:60266) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <stefan@HIDDEN>) id 1lhfCA-0003qz-TR for submit <at> debbugs.gnu.org; Fri, 14 May 2021 17:18:07 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:48082) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <stefan@HIDDEN>) id 1lhfCA-0003GV-Oq for guix-patches@HIDDEN; Fri, 14 May 2021 17:18:06 -0400 Received: from dd3624.kasserver.com ([85.13.130.11]:55824) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <stefan@HIDDEN>) id 1lhfC8-0008JM-6d for guix-patches@HIDDEN; Fri, 14 May 2021 17:18:06 -0400 Received: from localhost (37-186-9-252.ip.as39912.net [37.186.9.252]) by dd3624.kasserver.com (Postfix) with ESMTPA id DB9415D400A3; Fri, 14 May 2021 23:18:02 +0200 (CEST) From: =?UTF-8?q?Stefan=20Reich=C3=B6r?= <stefan@HIDDEN> To: guix-patches@HIDDEN Subject: [PATCH 5/5] gnu: Add python-multiplex. Date: Fri, 14 May 2021 23:17:46 +0200 Message-Id: <20210514211746.143145-5-stefan@HIDDEN> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210514211746.143145-1-stefan@HIDDEN> References: <20210514211746.143145-1-stefan@HIDDEN> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.130.11; envelope-from=stefan@HIDDEN; 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?= <stefan@HIDDEN> X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) * gnu/packages/python-xyz.scm (python-multiplex): New variable. --- gnu/packages/python-xyz.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 431f2aa85d..ff2ce6ad32 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -24983,6 +24983,34 @@ applications with variable CPU loads).") (define-public python2-parallel (package-with-python2 python-parallel)) +(define-public python-multiplex + (package + (name "python-multiplex") + (version "0.5.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "multiplex" version)) + (sha256 + (base32 + "1g01xwx5z0m1dvp5d69ndj8hz80d2z5xzasixa7c0k6ny93f9qhg")))) + (build-system python-build-system) + (propagated-inputs + `(("python-aiofiles" ,python-aiofiles-0.5.0) + ("python-aiostream" ,python-aiostream) + ("python-click" ,python-click) + ("python-easy-ansi" ,python-easy-ansi) + ("python-pyte" ,python-pyte))) + (home-page + "https://github.com/dankilman/multiplex") + (synopsis + "View output of multiple processes, in parallel, in the console, with an +interactive TUI") + (description + "Can be used as cli tool or as python library to view output of parallel +running processes") + (license license:expat))) + (define-public python-djvulibre (package (name "python-djvulibre") -- 2.25.1 ------------=_1738784522-30318-0 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 48430-done) by debbugs.gnu.org; 5 Feb 2025 19:41:18 +0000 Received: from localhost ([127.0.0.1]:52694 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1tflGw-0007rs-7X for submit <at> debbugs.gnu.org; Wed, 05 Feb 2025 14:41:18 -0500 Received: from mail-wm1-x32e.google.com ([2a00:1450:4864:20::32e]:53437) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from <sharlatanus@HIDDEN>) id 1tflGu-0007re-Ul for 48430-done <at> debbugs.gnu.org; Wed, 05 Feb 2025 14:41:17 -0500 Received: by mail-wm1-x32e.google.com with SMTP id 5b1f17b1804b1-43624b2d453so1461585e9.2 for <48430-done <at> debbugs.gnu.org>; Wed, 05 Feb 2025 11:41:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1738784471; x=1739389271; darn=debbugs.gnu.org; h=mime-version:message-id:date:subject:to:from:from:to:cc:subject :date:message-id:reply-to; bh=9Nx2PN8KVuD55vqko0Y/qAF8jHG9UTiQVFh38rn2I50=; b=lVc9XJrS4Ibqvbwu4au6+enb3L3H8ArMc7DfJ3eDW8NWh1okXXHGTQ8iT3R57Pnirn vXoptaJCMiTkLkQIHbBCUkvsqbDOh1Gk4MuSmnAZ4nGJggSDvtD7Wk5mKXwMbFegMODc T4MdqZVObH7BG/syUsoL9GzC1bGCGDAAY1GbjvM4mEKB48X75sbLJf3zNmiEkHlEiHPk xlUutLNkRLkOm0E5KCvbzq5wUqFpCQoSuZP8BQ5MTlB92B22GAzWGFX1PMlKGgt0tMcj +lPbylf6jEMiMsbxjGHLj7eTOJ+QglI8anY+C2wg8Y4toEVLHA9xdygxyQp8thNzSMys JyTQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1738784471; x=1739389271; h=mime-version:message-id:date:subject:to:from:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=9Nx2PN8KVuD55vqko0Y/qAF8jHG9UTiQVFh38rn2I50=; b=avjdx92RFMjpNeWr0ATE+mdDv7IktdO4rLzUCKm3fJhR4iqlZvxY3yzMYFJB7pGvdv ODRloy4c5c2G37v/s9G0YW7PAqslNYgns7oscPludF3qJsEbTTcyD7iS54woAxrR6RP0 YO9gsILXpor9/kG9yqpg2Nc5qOYHD3nlfESox8KMm0q9JYHXZZcUCcUIaGvzPzbV0ep/ R8R5b49t1hFQYb5iW1EBEwn9+V0rQR+H13iCEVdFHNlBGBrrQqZsLx7C3c4c5kkpiWUQ m1zvKTPYeVJJwMu3ghGmRZQ8pWvfqLngPumJW7+uJgz9y6WtrjAiyIlm8O4CuXIjLowk 9rRg== X-Gm-Message-State: AOJu0Yxg60KJSZzaX6xg6BT4HCqK0d05CsvE/h0TaLhqoq/9p79xbt/p yCoy0fIjdMInwOvxKwbfQPINd3st4pcObOTn0W7OF5SNPgQI2Itx1ps3UJko X-Gm-Gg: ASbGncvI+hir25J25lIRYkjoO5cbvMyqtuylwekRy37KQD3C+2Ky0Limpw9GYubHNu0 I3C78cP0tM6s4ydC1u7Q5ui/L2gWZAXFKAIjKPVzcB2LQmdYdiYZadm54TyelNFXZ1ZwpfRCx2H vy0jha5D0RXsiRAiGmNpv78ByjlDyZCa38cZJnBaOdk3f7XhJIGhaPFZm71ELm8KZl+PU2KxAG4 wh1YWycffYJMaDO35qtnWoYNXmE0DxaAXZWJObt1uEer8OaOaWHVjejRUF89SWI/fAHdnElkPKx XCyZt/+T++PHa1BaU2L4j1yNOHqc/geOCkgIeZEobdMi44BTy3hXkWrWIZ9qJfJ6CY4= X-Google-Smtp-Source: AGHT+IHdkuCcAKN/ZdC+sv0R5eCa9qh23w9JljUwB890bwV+Q8PW3ZP+9bjHSwZcnWTD2hzhiuDHvw== X-Received: by 2002:a5d:6d0b:0:b0:38d:b34a:696 with SMTP id ffacd0b85a97d-38db4869c5dmr3509704f8f.9.1738784470572; Wed, 05 Feb 2025 11:41:10 -0800 (PST) Received: from guxtil (cpc100684-bagu15-2-0-cust967.1-3.cable.virginm.net. [86.8.111.200]) by smtp.gmail.com with ESMTPSA id ffacd0b85a97d-38c5c121951sm19464499f8f.45.2025.02.05.11.41.09 for <48430-done <at> debbugs.gnu.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 05 Feb 2025 11:41:09 -0800 (PST) From: Sharlatan Hellseher <sharlatanus@HIDDEN> To: 48430-done <at> debbugs.gnu.org Subject: [PATCH 5/5] gnu: Add python-multiplex. Date: Wed, 05 Feb 2025 19:41:09 +0000 Message-ID: <87pljwgox6.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 48430-done X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, I've re-imported it from scratch, added Stefan Reich=C3=B6r as co-author in commit message. Pushed to master as 0085abc9b3b6dd203fdf84e93d6bf16c86b5e56b. =2D- Oleg --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEmEeB3micIcJkGAhndtcnv/Ys0rUFAmejvtUACgkQdtcnv/Ys 0rVg/g/9EcpF7eNbzuCvdlfNEjvPe+ihoWCtXo8gFb+GZ1SHeuN6gV0TtvZlnctO dz5Ko0Uq62fEybEgENQnDXYppvhzgfZ7A+ko/yQRnswXu045P7sjEfzY/DWtcSaD hJcjQe2kixlAKIE+6m3KFqdI68ax69+sRPCUbNJh+eOvInhCQ08Sm2T1StFDjbvu p4CRh3Kq/GbkjZ7B1PWRDjEqJsYK5kA/4E2R2WHmxru3T9/je8jPggaZWFK7xkw2 cqI3prQ5ye6O07w29/De2Cb8c8VeT8a4kiSHE1ZALwfmibpLpbctW8l77DVBPHcK d8kuRqNb7g2vHMEJYLn3Azh0Tvb03LcMn9cLNKsDfqqw+cb9TC5iRX1HCukJHehL H6yXKKIwJbRGmCDf4QF112D9kmmcU6h62ca2m9rHlo36dYVu3/IzZ5Md/lNFh66C zMAX6TpkiYwJIJnU1KyuGqQ1CrfYOF5e1sn8bLivmfUE8UvDEuwbSnbKE18Fdr31 rv5EMv/ol5L879zWeOqDT2G/KQYbNearFX5HPbwsaWW2rQsRz0F+1sh/ZVUZsqZi dR7eimcVX4aT1F/aDvI7DLRsIswjQDzs6USXvBvhg+yYkUs7uR7mTbBwRnLx4EPn w+FGA/3fpYU2cCfhiGdIK599WSirE5CGGySCQFI1X9bF3EUuly0= =CZwP -----END PGP SIGNATURE----- --=-=-=-- ------------=_1738784522-30318-0--
MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@HIDDEN From: help-debbugs@HIDDEN (GNU bug Tracking System) To: Stefan =?UTF-8?Q?Reich=C3=B6r?= <stefan@HIDDEN> Subject: bug#48430: closed ([PATCH 5/5] gnu: Add python-multiplex.) Message-ID: <handler.48430.D48430.173878447830253.notifdone <at> debbugs.gnu.org> References: <87pljwgox6.fsf@HIDDEN> <20210514211746.143145-5-stefan@HIDDEN> X-Gnu-PR-Message: they-closed 48430 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 48430 <at> debbugs.gnu.org Date: Wed, 05 Feb 2025 19:42:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1738784522-30318-1" This is a multi-part message in MIME format... ------------=_1738784522-30318-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #48430: [PATCH 5/5] gnu: Add python-multiplex. 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 48430 <at> debbugs.gnu.org. --=20 48430: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D48430 GNU Bug Tracking System Contact help-debbugs@HIDDEN with problems ------------=_1738784522-30318-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 48430-done) by debbugs.gnu.org; 5 Feb 2025 19:41:18 +0000 Received: from localhost ([127.0.0.1]:52694 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1tflGw-0007rs-7X for submit <at> debbugs.gnu.org; Wed, 05 Feb 2025 14:41:18 -0500 Received: from mail-wm1-x32e.google.com ([2a00:1450:4864:20::32e]:53437) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from <sharlatanus@HIDDEN>) id 1tflGu-0007re-Ul for 48430-done <at> debbugs.gnu.org; Wed, 05 Feb 2025 14:41:17 -0500 Received: by mail-wm1-x32e.google.com with SMTP id 5b1f17b1804b1-43624b2d453so1461585e9.2 for <48430-done <at> debbugs.gnu.org>; Wed, 05 Feb 2025 11:41:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1738784471; x=1739389271; darn=debbugs.gnu.org; h=mime-version:message-id:date:subject:to:from:from:to:cc:subject :date:message-id:reply-to; bh=9Nx2PN8KVuD55vqko0Y/qAF8jHG9UTiQVFh38rn2I50=; b=lVc9XJrS4Ibqvbwu4au6+enb3L3H8ArMc7DfJ3eDW8NWh1okXXHGTQ8iT3R57Pnirn vXoptaJCMiTkLkQIHbBCUkvsqbDOh1Gk4MuSmnAZ4nGJggSDvtD7Wk5mKXwMbFegMODc T4MdqZVObH7BG/syUsoL9GzC1bGCGDAAY1GbjvM4mEKB48X75sbLJf3zNmiEkHlEiHPk xlUutLNkRLkOm0E5KCvbzq5wUqFpCQoSuZP8BQ5MTlB92B22GAzWGFX1PMlKGgt0tMcj +lPbylf6jEMiMsbxjGHLj7eTOJ+QglI8anY+C2wg8Y4toEVLHA9xdygxyQp8thNzSMys JyTQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1738784471; x=1739389271; h=mime-version:message-id:date:subject:to:from:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=9Nx2PN8KVuD55vqko0Y/qAF8jHG9UTiQVFh38rn2I50=; b=avjdx92RFMjpNeWr0ATE+mdDv7IktdO4rLzUCKm3fJhR4iqlZvxY3yzMYFJB7pGvdv ODRloy4c5c2G37v/s9G0YW7PAqslNYgns7oscPludF3qJsEbTTcyD7iS54woAxrR6RP0 YO9gsILXpor9/kG9yqpg2Nc5qOYHD3nlfESox8KMm0q9JYHXZZcUCcUIaGvzPzbV0ep/ R8R5b49t1hFQYb5iW1EBEwn9+V0rQR+H13iCEVdFHNlBGBrrQqZsLx7C3c4c5kkpiWUQ m1zvKTPYeVJJwMu3ghGmRZQ8pWvfqLngPumJW7+uJgz9y6WtrjAiyIlm8O4CuXIjLowk 9rRg== X-Gm-Message-State: AOJu0Yxg60KJSZzaX6xg6BT4HCqK0d05CsvE/h0TaLhqoq/9p79xbt/p yCoy0fIjdMInwOvxKwbfQPINd3st4pcObOTn0W7OF5SNPgQI2Itx1ps3UJko X-Gm-Gg: ASbGncvI+hir25J25lIRYkjoO5cbvMyqtuylwekRy37KQD3C+2Ky0Limpw9GYubHNu0 I3C78cP0tM6s4ydC1u7Q5ui/L2gWZAXFKAIjKPVzcB2LQmdYdiYZadm54TyelNFXZ1ZwpfRCx2H vy0jha5D0RXsiRAiGmNpv78ByjlDyZCa38cZJnBaOdk3f7XhJIGhaPFZm71ELm8KZl+PU2KxAG4 wh1YWycffYJMaDO35qtnWoYNXmE0DxaAXZWJObt1uEer8OaOaWHVjejRUF89SWI/fAHdnElkPKx XCyZt/+T++PHa1BaU2L4j1yNOHqc/geOCkgIeZEobdMi44BTy3hXkWrWIZ9qJfJ6CY4= X-Google-Smtp-Source: AGHT+IHdkuCcAKN/ZdC+sv0R5eCa9qh23w9JljUwB890bwV+Q8PW3ZP+9bjHSwZcnWTD2hzhiuDHvw== X-Received: by 2002:a5d:6d0b:0:b0:38d:b34a:696 with SMTP id ffacd0b85a97d-38db4869c5dmr3509704f8f.9.1738784470572; Wed, 05 Feb 2025 11:41:10 -0800 (PST) Received: from guxtil (cpc100684-bagu15-2-0-cust967.1-3.cable.virginm.net. [86.8.111.200]) by smtp.gmail.com with ESMTPSA id ffacd0b85a97d-38c5c121951sm19464499f8f.45.2025.02.05.11.41.09 for <48430-done <at> debbugs.gnu.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 05 Feb 2025 11:41:09 -0800 (PST) From: Sharlatan Hellseher <sharlatanus@HIDDEN> To: 48430-done <at> debbugs.gnu.org Subject: [PATCH 5/5] gnu: Add python-multiplex. Date: Wed, 05 Feb 2025 19:41:09 +0000 Message-ID: <87pljwgox6.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 48430-done X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, I've re-imported it from scratch, added Stefan Reich=C3=B6r as co-author in commit message. Pushed to master as 0085abc9b3b6dd203fdf84e93d6bf16c86b5e56b. =2D- Oleg --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEmEeB3micIcJkGAhndtcnv/Ys0rUFAmejvtUACgkQdtcnv/Ys 0rVg/g/9EcpF7eNbzuCvdlfNEjvPe+ihoWCtXo8gFb+GZ1SHeuN6gV0TtvZlnctO dz5Ko0Uq62fEybEgENQnDXYppvhzgfZ7A+ko/yQRnswXu045P7sjEfzY/DWtcSaD hJcjQe2kixlAKIE+6m3KFqdI68ax69+sRPCUbNJh+eOvInhCQ08Sm2T1StFDjbvu p4CRh3Kq/GbkjZ7B1PWRDjEqJsYK5kA/4E2R2WHmxru3T9/je8jPggaZWFK7xkw2 cqI3prQ5ye6O07w29/De2Cb8c8VeT8a4kiSHE1ZALwfmibpLpbctW8l77DVBPHcK d8kuRqNb7g2vHMEJYLn3Azh0Tvb03LcMn9cLNKsDfqqw+cb9TC5iRX1HCukJHehL H6yXKKIwJbRGmCDf4QF112D9kmmcU6h62ca2m9rHlo36dYVu3/IzZ5Md/lNFh66C zMAX6TpkiYwJIJnU1KyuGqQ1CrfYOF5e1sn8bLivmfUE8UvDEuwbSnbKE18Fdr31 rv5EMv/ol5L879zWeOqDT2G/KQYbNearFX5HPbwsaWW2rQsRz0F+1sh/ZVUZsqZi dR7eimcVX4aT1F/aDvI7DLRsIswjQDzs6USXvBvhg+yYkUs7uR7mTbBwRnLx4EPn w+FGA/3fpYU2cCfhiGdIK599WSirE5CGGySCQFI1X9bF3EUuly0= =CZwP -----END PGP SIGNATURE----- --=-=-=-- ------------=_1738784522-30318-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 14 May 2021 21:18:13 +0000 Received: from localhost ([127.0.0.1]:47197 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1lhfCH-0003rX-8Q for submit <at> debbugs.gnu.org; Fri, 14 May 2021 17:18:13 -0400 Received: from lists.gnu.org ([209.51.188.17]:60266) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <stefan@HIDDEN>) id 1lhfCA-0003qz-TR for submit <at> debbugs.gnu.org; Fri, 14 May 2021 17:18:07 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:48082) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <stefan@HIDDEN>) id 1lhfCA-0003GV-Oq for guix-patches@HIDDEN; Fri, 14 May 2021 17:18:06 -0400 Received: from dd3624.kasserver.com ([85.13.130.11]:55824) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <stefan@HIDDEN>) id 1lhfC8-0008JM-6d for guix-patches@HIDDEN; Fri, 14 May 2021 17:18:06 -0400 Received: from localhost (37-186-9-252.ip.as39912.net [37.186.9.252]) by dd3624.kasserver.com (Postfix) with ESMTPA id DB9415D400A3; Fri, 14 May 2021 23:18:02 +0200 (CEST) From: =?UTF-8?q?Stefan=20Reich=C3=B6r?= <stefan@HIDDEN> To: guix-patches@HIDDEN Subject: [PATCH 5/5] gnu: Add python-multiplex. Date: Fri, 14 May 2021 23:17:46 +0200 Message-Id: <20210514211746.143145-5-stefan@HIDDEN> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210514211746.143145-1-stefan@HIDDEN> References: <20210514211746.143145-1-stefan@HIDDEN> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.130.11; envelope-from=stefan@HIDDEN; 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?= <stefan@HIDDEN> X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) * gnu/packages/python-xyz.scm (python-multiplex): New variable. --- gnu/packages/python-xyz.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 431f2aa85d..ff2ce6ad32 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -24983,6 +24983,34 @@ applications with variable CPU loads).") (define-public python2-parallel (package-with-python2 python-parallel)) +(define-public python-multiplex + (package + (name "python-multiplex") + (version "0.5.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "multiplex" version)) + (sha256 + (base32 + "1g01xwx5z0m1dvp5d69ndj8hz80d2z5xzasixa7c0k6ny93f9qhg")))) + (build-system python-build-system) + (propagated-inputs + `(("python-aiofiles" ,python-aiofiles-0.5.0) + ("python-aiostream" ,python-aiostream) + ("python-click" ,python-click) + ("python-easy-ansi" ,python-easy-ansi) + ("python-pyte" ,python-pyte))) + (home-page + "https://github.com/dankilman/multiplex") + (synopsis + "View output of multiple processes, in parallel, in the console, with an +interactive TUI") + (description + "Can be used as cli tool or as python library to view output of parallel +running processes") + (license license:expat))) + (define-public python-djvulibre (package (name "python-djvulibre") -- 2.25.1 ------------=_1738784522-30318-1--
X-Loop: help-debbugs@HIDDEN Subject: [bug#48430] [PATCH 5/5] gnu: Add python-multiplex. References: <20210514211746.143145-5-stefan@HIDDEN> In-Reply-To: <20210514211746.143145-5-stefan@HIDDEN> Resent-From: Sharlatan Hellseher <sharlatanus@HIDDEN> Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> Resent-CC: guix-patches@HIDDEN Resent-Date: Wed, 05 Feb 2025 21:57:01 +0000 Resent-Message-ID: <handler.48430.B48430.17387925941985 <at> debbugs.gnu.org> Resent-Sender: help-debbugs@HIDDEN X-GNU-PR-Message: followup 48430 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 48430 <at> debbugs.gnu.org Received: via spool by 48430-submit <at> debbugs.gnu.org id=B48430.17387925941985 (code B ref 48430); Wed, 05 Feb 2025 21:57:01 +0000 Received: (at 48430) by debbugs.gnu.org; 5 Feb 2025 21:56:34 +0000 Received: from localhost ([127.0.0.1]:52997 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1tfnNq-0000Vx-1G for submit <at> debbugs.gnu.org; Wed, 05 Feb 2025 16:56:34 -0500 Received: from mail-wm1-x32a.google.com ([2a00:1450:4864:20::32a]:56452) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from <sharlatanus@HIDDEN>) id 1tfnNk-0000Va-FX for 48430 <at> debbugs.gnu.org; Wed, 05 Feb 2025 16:56:31 -0500 Received: by mail-wm1-x32a.google.com with SMTP id 5b1f17b1804b1-4361b0ec57aso2515195e9.0 for <48430 <at> debbugs.gnu.org>; Wed, 05 Feb 2025 13:56:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1738792582; x=1739397382; darn=debbugs.gnu.org; h=mime-version:message-id:date:subject:to:from:from:to:cc:subject :date:message-id:reply-to; bh=ceDClBo5R8J0vBfTg2EvoPtLmqWDd+AjXXv+zmog2bM=; b=CbYZnndb9BTa88aVQBaPShMQIrJWFMy80LLOu3zff/EfO7m60NHfP1zVuhPG6Q2zcv GUDMoW8B3afADTIzdYeYUh2d36neHuqTLRMJmc/MLH3lB5I6x1FMhnvqCYaxKAqsaTkC XOYRayhvSRon5nLdtSZBmHv1yMg/xej2UMyIdIdQhbQhcGJs9j/CYKbDB5C4NlQWoPr6 nz6nQbBVxIvGpgiJDcHMoOVqkk2enws3I5fywRR+lTH9YdG5NOS9op7BsiKiru8mRbdk BgF+20mSY5qSESMNiiaOKlEUwGXZltBPWFo82mRPacQIF5DifcOQp3B7P6qo7r2c6Pb6 W7Dw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1738792582; x=1739397382; h=mime-version:message-id:date:subject:to:from:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=ceDClBo5R8J0vBfTg2EvoPtLmqWDd+AjXXv+zmog2bM=; b=Pu9vX7/ZUcGo2OpsdL+QELsJNPLDHs2ngmlhNniBU1vONj0PfsPkFyaH6Y5xUTXjbg JPtGUN3iZ9++gYwNiyJMsA1S6WdV16scIRqfijYldoNWQsXHMzhAE4yUUjsKENI4rP+V 58NiXr9s8az9+7+dhgqt5OJLRzVfuEHmTCPOzi6Me2Mwdpm0BYvahpmZgmpgs+558EFg Auu9v72TqBs6s2t38tZ/gUawFR+qVUjSMMf21xJFN9vHkBsV7UEulGShrlA43tn2Kr3w kCSmjOkBKxQnxadMYZDLe8g810js0MHL8U7ZXjnVGe/msyVSX4tj0eoZtQ9lNQIG9NmI EL2g== X-Gm-Message-State: AOJu0YwiEFMF1LOQV7jNJDuG6kfiLZkjExikQh8CDVZQ8e8XqEFsXB/4 DRe6OsaXX8shmqlnaf9o1FStPY58nEuMaVNb9NwtA+KF9C8xx4Mg4q99BFBK X-Gm-Gg: ASbGncvpng4dwm7kqvnjwenDHXGMk9VueVK2wNGav2KrMtlIwwQuOq3wZSvgUM8XHJW n8ZGR/p+GEOwVFXoxNqw814j3b7nVo5xextR2m77YRyNEmIBHj8bgbwoP+E8Jevt2jQPhazbvYq BTfltbg3vC20QgTh7oIqtEADK0L9l+Ck3rryTroiGMBd5GzqLdu+GrpTNAnt/Zi7XRkLa9V0h2W Sk8lzD04g0Q2hQghq1XEx0iaRVuVnYeCpLJ+2nkcUtLlNLN0yHHMkg4b5z/S9wbHjSxN1TFxT3J GQLhyPpeS8rHq26tItLIDG4+YfAA80+sDiSQC6Te/B355mlS0a4U91zcty/RQOaCazI= X-Google-Smtp-Source: AGHT+IGgcteswIijqTw8uTf04rGaKpWY38vTFwvxVjYi5E84ujNodmKDiSVJ2ZJWGDPyfRKqNpMdhw== X-Received: by 2002:a05:600c:3b24:b0:435:1b:65ee with SMTP id 5b1f17b1804b1-4390d55fcd0mr34801215e9.24.1738792581763; Wed, 05 Feb 2025 13:56:21 -0800 (PST) Received: from guxtil (cpc100684-bagu15-2-0-cust967.1-3.cable.virginm.net. [86.8.111.200]) by smtp.gmail.com with ESMTPSA id 5b1f17b1804b1-4390d933523sm34476325e9.1.2025.02.05.13.56.20 for <48430 <at> debbugs.gnu.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 05 Feb 2025 13:56:20 -0800 (PST) From: Sharlatan Hellseher <sharlatanus@HIDDEN> Date: Wed, 05 Feb 2025 21:56:19 +0000 Message-ID: <87cyfwginw.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain Correct commit after pull master: f89232b10d801933b0196cefb21a547bbec97efb. -- Oleg --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEmEeB3micIcJkGAhndtcnv/Ys0rUFAmej3oMACgkQdtcnv/Ys 0rWuIQ/9GDK+2IubsYjKxvWFfsJ0IhSrHP6VZDjuOKpdx9rA8PDe8QCPDcCcf5i/ qFfhwBmiHl6WW2SLXxpIpE8OcuFztGF81Xb1imM9MLFxTdIxl0vQS+BKOh5rs7mT PpaJs83saVJsOuAxfbhWo61h/t1XUBc+0Zir+1rzoPI1d6ARTEUZaqzU93hGtAUb ZvMbIAeLwOSEKcX9m8cVaeHNvC4h0p8q9EM15X8HCzfCoT6q0vzeI+0ksNyTMRf9 usvtZ7yo/4EKKohfsotfl2w9ZvepRzZhXgmGmYcUQARoimn5vBrTKR60zxZUgqQq 6Di2hS5pHsMUbaSYZkB5fHffNXATNUcqz7wbXDCQHIWBUxPuA1jTmc+QP4F6yTEK rzw1Yakd5KMECN2AmFd9noziOyoTHqvqpWLSHwiFqmv0zZPlx7S6rQUmL8x6+ewW MzbOEfhmMKezrjnGys1FqqA4nYq2yCdqw4WEVMaWntboz0r05L9IHl6rPuFg1/t8 +klMhg2XbjEGOGKY2SEEuwe5C+hgh5CA1pw2TuQgwnAwvKn3w8whj8HYX79tCnOg EBuOC+It1fOp0/c4oaUGaF4oHsHOWbop+do/8Vi/rNGwSnSeoSTTJ36dP/sgBEJK s589ENYJuVFT6FIfCOT/tha+jvuKQxtXbaYAGOKk1QUxGJ6hWug= =aUck -----END PGP SIGNATURE----- --=-=-=--
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.