GNU bug report logs - #64192
[PATCH 0/3] gnu: bpython: Update to 0.24.

Previous Next

Package: guix-patches;

Reported by: "Paul A. Patience" <paul <at> apatience.com>

Date: Tue, 20 Jun 2023 14:04:02 UTC

Severity: normal

Tags: patch

Done: Christopher Baines <mail <at> cbaines.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 64192 in the body.
You can then email your comments to 64192 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#64192; Package guix-patches. (Tue, 20 Jun 2023 14:04:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to "Paul A. Patience" <paul <at> apatience.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 20 Jun 2023 14:04:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: "Paul A. Patience" <paul <at> apatience.com>
To: guix-patches <at> gnu.org
Cc: "Paul A. Patience" <paul <at> apatience.com>
Subject: [PATCH 0/3] gnu: bpython: Update to 0.24.
Date: Tue, 20 Jun 2023 14:03:28 +0000
Paul A. Patience (3):
  gnu: python-blessed: Add missing dependency.
  gnu: python-curtsies: Update to 0.4.1.
  gnu: bpython: Update to 0.24.

 gnu/packages/python-xyz.scm | 7 +++----
 gnu/packages/terminals.scm  | 4 ++--
 2 files changed, 5 insertions(+), 6 deletions(-)


base-commit: d884fc9e2efecfba09af4694f5a13ad7fc6f704f
-- 
2.40.1






Information forwarded to guix-patches <at> gnu.org:
bug#64192; Package guix-patches. (Tue, 20 Jun 2023 14:07:02 GMT) Full text and rfc822 format available.

Message #8 received at 64192 <at> debbugs.gnu.org (full text, mbox):

From: "Paul A. Patience" <paul <at> apatience.com>
To: 64192 <at> debbugs.gnu.org
Cc: "Paul A. Patience" <paul <at> apatience.com>
Subject: [PATCH 1/3] gnu: python-blessed: Add missing dependency.
Date: Tue, 20 Jun 2023 14:05:57 +0000
Fixes the build of python-curtsies.

The python-six dependency was accidentally removed in commit
9e1cbc62e54513ce92f7fc282700c87c93bfd25c.

* gnu/packages/python-xyz.scm (python-blessed)[propagated-inputs]: Add
python-six.
---
 gnu/packages/python-xyz.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index af9dd45d6e..fbbd96f4dd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -28568,7 +28568,7 @@ (define-public python-blessed
      (list
       ;; Avoid python-pytest-coverage
       #:test-flags '(list "-c /dev/null")))
-    (propagated-inputs (list python-wcwidth))
+    (propagated-inputs (list python-six python-wcwidth))
     (native-inputs (list python-pytest))
     (home-page "https://github.com/jquast/blessed")
     (synopsis "Wrapper around terminal capabilities")
-- 
2.40.1






Information forwarded to guix-patches <at> gnu.org:
bug#64192; Package guix-patches. (Tue, 20 Jun 2023 14:07:02 GMT) Full text and rfc822 format available.

Message #11 received at 64192 <at> debbugs.gnu.org (full text, mbox):

From: "Paul A. Patience" <paul <at> apatience.com>
To: 64192 <at> debbugs.gnu.org
Cc: "Paul A. Patience" <paul <at> apatience.com>
Subject: [PATCH 2/3] gnu: python-curtsies: Update to 0.4.1.
Date: Tue, 20 Jun 2023 14:06:03 +0000
* gnu/packages/terminals.scm (python-curtsies): Update to 0.4.1.
---
 gnu/packages/terminals.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 7579d2e7bf..846fc4b79c 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -1115,13 +1115,13 @@ (define-public python-blessings
 (define-public python-curtsies
   (package
     (name "python-curtsies")
-    (version "0.4.0")
+    (version "0.4.1")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "curtsies" version))
        (sha256
-        (base32 "1zj284kacv0d10ab3amkkx37hcciylkqympsksi9bwzy6g7fyafb"))))
+        (base32 "1c122vgfsvksxkd41g2vij6hjsz97ikg59snclq4af2mkhs0zlb2"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
-- 
2.40.1






Information forwarded to guix-patches <at> gnu.org:
bug#64192; Package guix-patches. (Tue, 20 Jun 2023 14:07:03 GMT) Full text and rfc822 format available.

Message #14 received at 64192 <at> debbugs.gnu.org (full text, mbox):

From: "Paul A. Patience" <paul <at> apatience.com>
To: 64192 <at> debbugs.gnu.org
Cc: "Paul A. Patience" <paul <at> apatience.com>
Subject: [PATCH 3/3] gnu: bpython: Update to 0.24.
Date: Tue, 20 Jun 2023 14:06:11 +0000
* gnu/packages/python-xyz.scm (bpython): Update to 0.24.
[propagated-inputs]: Remove python-six.
---
 gnu/packages/python-xyz.scm | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index fbbd96f4dd..cab1dd15bf 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -23729,13 +23729,13 @@ (define-public python-typeguard
 (define-public bpython
   (package
     (name "bpython")
-    (version "0.23")
+    (version "0.24")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "bpython" version))
        (sha256
-        (base32 "0ah5giynavyh70yc0jqgmjaajv3xg5j2y7k9i3q8mi47r2mph04z"))))
+        (base32 "1g9xzl49skghd9q2a8b71gg1n97lfnj9in2kzcmzsj4cgbynywwq"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
@@ -23760,7 +23760,6 @@ (define-public bpython
            python-requests
            python-curtsies
            python-greenlet
-           python-six
            python-cwcwidth
            python-pyxdg
            ;; optional dependencies
-- 
2.40.1






Reply sent to Christopher Baines <mail <at> cbaines.net>:
You have taken responsibility. (Mon, 10 Jul 2023 13:05:01 GMT) Full text and rfc822 format available.

Notification sent to "Paul A. Patience" <paul <at> apatience.com>:
bug acknowledged by developer. (Mon, 10 Jul 2023 13:05:01 GMT) Full text and rfc822 format available.

Message #19 received at 64192-done <at> debbugs.gnu.org (full text, mbox):

From: Christopher Baines <mail <at> cbaines.net>
To: "Paul A. Patience" <paul <at> apatience.com>
Cc: 64192-done <at> debbugs.gnu.org
Subject: Re: [bug#64192] [PATCH 0/3] gnu: bpython: Update to 0.24.
Date: Mon, 10 Jul 2023 14:03:43 +0100
[Message part 1 (text/plain, inline)]
"Paul A. Patience" <paul <at> apatience.com> writes:

> Paul A. Patience (3):
>   gnu: python-blessed: Add missing dependency.
>   gnu: python-curtsies: Update to 0.4.1.
>   gnu: bpython: Update to 0.24.
>
>  gnu/packages/python-xyz.scm | 7 +++----
>  gnu/packages/terminals.scm  | 4 ++--
>  2 files changed, 5 insertions(+), 6 deletions(-)

These patches look good to me, I've pushed them to master as
b7be0a999df8984fee8bd9d283b8fbe7e4da879d.

Thanks,

Chris
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 08 Aug 2023 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 10 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.