From unknown Sat Aug 16 21:19:08 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#48426] [PATCH 2/5] gnu: Add python-easy-ansi. Resent-From: Stefan =?UTF-8?Q?Reich=C3=B6r?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 14 May 2021 21:19:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 48426 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 48426@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.162102708314794 (code B ref -1); Fri, 14 May 2021 21:19:02 +0000 Received: (at submit) by debbugs.gnu.org; 14 May 2021 21:18:03 +0000 Received: from localhost ([127.0.0.1]:47186 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lhfC6-0003qX-VT for submit@debbugs.gnu.org; Fri, 14 May 2021 17:18:03 -0400 Received: from lists.gnu.org ([209.51.188.17]:60060) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lhfC5-0003qF-Ug for submit@debbugs.gnu.org; Fri, 14 May 2021 17:18:02 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:48040) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lhfC5-00037s-PI for guix-patches@gnu.org; Fri, 14 May 2021 17:18:01 -0400 Received: from dd3624.kasserver.com ([85.13.130.11]:55816) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lhfC3-0008Fh-TA for guix-patches@gnu.org; Fri, 14 May 2021 17:18:01 -0400 Received: from localhost (37-186-9-252.ip.as39912.net [37.186.9.252]) by dd3624.kasserver.com (Postfix) with ESMTPA id 896BD5D4047B; Fri, 14 May 2021 23:17:57 +0200 (CEST) From: Stefan =?UTF-8?Q?Reich=C3=B6r?= Date: Fri, 14 May 2021 23:17:43 +0200 Message-Id: <20210514211746.143145-2-stefan@xsteve.at> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210514211746.143145-1-stefan@xsteve.at> References: <20210514211746.143145-1-stefan@xsteve.at> 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/python-xyz.scm (python-easy-ansi): New variable. --- gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index cf0eba3234..98368129ed 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -16499,6 +16499,31 @@ converting text with ANSI color codes to HTML or LaTeX.") (define-public python2-ansi2html (package-with-python2 python-ansi2html)) +(define-public python-easy-ansi + (package + (name "python-easy-ansi") + (version "0.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "easy-ansi" version)) + (sha256 + (base32 + "06ind48rb6bc8givysnak60g3rhk0zmch9ar80r00gzc6k6bgqfp")))) + (build-system python-build-system) + (home-page + "https://gitlab.com/joeysbytes/easy-ansi") + (synopsis + "Terminal framework API to give you an easy way to use colors, cursor +control movements, and line/box drawing.") + (description + "Easy ANSI is a terminal framework API to give you an easy way to use +colors, cursor control movements, and line/box drawing. It is not meant as a +replacement to more full-featured frameworks (such as curses or urwid), but as +a tool to quickly create nice-looking screens in your terminal window. You +can even create animations with the cursor controls.") + (license license:expat))) + (define-public python-ddt (package (name "python-ddt") -- 2.25.1 From unknown Sat Aug 16 21:19:08 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#48426] [PATCH] gnu: Add python-easy-ansi. References: <20210514211746.143145-2-stefan@xsteve.at> In-Reply-To: <20210514211746.143145-2-stefan@xsteve.at> Resent-From: Stefan =?UTF-8?Q?Reich=C3=B6r?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 29 May 2021 20:30:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 48426 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 48426@debbugs.gnu.org Cc: Stefan =?UTF-8?Q?Reich=C3=B6r?= Received: via spool by 48426-submit@debbugs.gnu.org id=B48426.16223201441165 (code B ref 48426); Sat, 29 May 2021 20:30:02 +0000 Received: (at 48426) by debbugs.gnu.org; 29 May 2021 20:29:04 +0000 Received: from localhost ([127.0.0.1]:57765 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ln5Zw-0000Ij-7q for submit@debbugs.gnu.org; Sat, 29 May 2021 16:29:04 -0400 Received: from dd3624.kasserver.com ([85.13.130.11]:40806) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ln5Zs-0000IG-J3 for 48426@debbugs.gnu.org; Sat, 29 May 2021 16:29:02 -0400 Received: from localhost (217-149-163-5.nat.highway.telekom.at [217.149.163.5]) by dd3624.kasserver.com (Postfix) with ESMTPA id 0FF9A5D404D4; Sat, 29 May 2021 22:28:58 +0200 (CEST) From: Stefan =?UTF-8?Q?Reich=C3=B6r?= Date: Sat, 29 May 2021 22:28:37 +0200 Message-Id: <20210529202837.147041-1-stefan@xsteve.at> 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@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 (-) * gnu/packages/python-xyz.scm (python-easy-ansi): New variable. --- I switched the source location to gitlab (from pypi). However I was not able to find out how to run the tests gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d978942402..9b9510f043 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -16551,6 +16551,31 @@ converting text with ANSI color codes to HTML or LaTeX.") (define-public python2-ansi2html (package-with-python2 python-ansi2html)) +(define-public python-easy-ansi + (package + (name "python-easy-ansi") + (version "0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/joeysbytes/easy-ansi") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0albh55ynzs98qy9pln4qaxw5qhhh3lk09jy9bx19gycrp1c3lc3")))) + (build-system python-build-system) + (home-page "https://gitlab.com/joeysbytes/easy-ansi") + (synopsis "Terminal framework API to give you an easy way to use colors, cursor +control movements, and line/box drawing.") + (description + "Easy ANSI is a terminal framework API to give you an easy way to use +colors, cursor control movements, and line/box drawing. It is not meant as a +replacement to more full-featured frameworks (such as curses or urwid), but as +a tool to quickly create nice-looking screens in your terminal window. You +can even create animations with the cursor controls.") + (license license:expat))) + (define-public python-ddt (package (name "python-ddt") -- 2.25.1 From unknown Sat Aug 16 21:19:08 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#48426: closed (Re: [bug#48426] [PATCH] gnu: Add python-easy-ansi.) Message-ID: References: <87o8cqlo5j.fsf@nicolasgoaziou.fr> <20210514211746.143145-2-stefan@xsteve.at> X-Gnu-PR-Message: they-closed 48426 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 48426@debbugs.gnu.org Date: Mon, 31 May 2021 19:06:01 +0000 Content-Type: multipart/mixed; boundary="----------=_1622487961-10116-1" This is a multi-part message in MIME format... ------------=_1622487961-10116-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #48426: [PATCH 2/5] gnu: Add python-easy-ansi. 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 48426@debbugs.gnu.org. --=20 48426: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D48426 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1622487961-10116-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 48426-done) by debbugs.gnu.org; 31 May 2021 19:05:37 +0000 Received: from localhost ([127.0.0.1]:34869 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lnnEG-0002cU-TS for submit@debbugs.gnu.org; Mon, 31 May 2021 15:05:37 -0400 Received: from relay10.mail.gandi.net ([217.70.178.230]:38541) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lnnEF-0002cF-H2 for 48426-done@debbugs.gnu.org; Mon, 31 May 2021 15:05:36 -0400 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by relay10.mail.gandi.net (Postfix) with ESMTPSA id BE5C1240005; Mon, 31 May 2021 19:05:29 +0000 (UTC) From: Nicolas Goaziou To: Stefan =?utf-8?Q?Reich=C3=B6r?= Subject: Re: [bug#48426] [PATCH] gnu: Add python-easy-ansi. References: <20210514211746.143145-2-stefan@xsteve.at> <20210529202837.147041-1-stefan@xsteve.at> Date: Mon, 31 May 2021 21:05:28 +0200 In-Reply-To: <20210529202837.147041-1-stefan@xsteve.at> ("Stefan =?utf-8?Q?Reich=C3=B6r=22's?= message of "Sat, 29 May 2021 22:28:37 +0200") Message-ID: <87o8cqlo5j.fsf@nicolasgoaziou.fr> 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: -0.7 (/) X-Debbugs-Envelope-To: 48426-done Cc: 48426-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/python-xyz.scm (python-easy-ansi): New variable. I drastically shortened synopsis and applied your patch. Thank you. Regards, --=20 Nicolas Goaziou ------------=_1622487961-10116-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 14 May 2021 21:18:03 +0000 Received: from localhost ([127.0.0.1]:47186 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lhfC6-0003qX-VT for submit@debbugs.gnu.org; Fri, 14 May 2021 17:18:03 -0400 Received: from lists.gnu.org ([209.51.188.17]:60060) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lhfC5-0003qF-Ug for submit@debbugs.gnu.org; Fri, 14 May 2021 17:18:02 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:48040) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lhfC5-00037s-PI for guix-patches@gnu.org; Fri, 14 May 2021 17:18:01 -0400 Received: from dd3624.kasserver.com ([85.13.130.11]:55816) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lhfC3-0008Fh-TA for guix-patches@gnu.org; Fri, 14 May 2021 17:18:01 -0400 Received: from localhost (37-186-9-252.ip.as39912.net [37.186.9.252]) by dd3624.kasserver.com (Postfix) with ESMTPA id 896BD5D4047B; Fri, 14 May 2021 23:17:57 +0200 (CEST) From: =?UTF-8?q?Stefan=20Reich=C3=B6r?= To: guix-patches@gnu.org Subject: [PATCH 2/5] gnu: Add python-easy-ansi. Date: Fri, 14 May 2021 23:17:43 +0200 Message-Id: <20210514211746.143145-2-stefan@xsteve.at> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210514211746.143145-1-stefan@xsteve.at> References: <20210514211746.143145-1-stefan@xsteve.at> 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/python-xyz.scm (python-easy-ansi): New variable. --- gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index cf0eba3234..98368129ed 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -16499,6 +16499,31 @@ converting text with ANSI color codes to HTML or LaTeX.") (define-public python2-ansi2html (package-with-python2 python-ansi2html)) +(define-public python-easy-ansi + (package + (name "python-easy-ansi") + (version "0.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "easy-ansi" version)) + (sha256 + (base32 + "06ind48rb6bc8givysnak60g3rhk0zmch9ar80r00gzc6k6bgqfp")))) + (build-system python-build-system) + (home-page + "https://gitlab.com/joeysbytes/easy-ansi") + (synopsis + "Terminal framework API to give you an easy way to use colors, cursor +control movements, and line/box drawing.") + (description + "Easy ANSI is a terminal framework API to give you an easy way to use +colors, cursor control movements, and line/box drawing. It is not meant as a +replacement to more full-featured frameworks (such as curses or urwid), but as +a tool to quickly create nice-looking screens in your terminal window. You +can even create animations with the cursor controls.") + (license license:expat))) + (define-public python-ddt (package (name "python-ddt") -- 2.25.1 ------------=_1622487961-10116-1--