unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#64192] [PATCH 0/3] gnu: bpython: Update to 0.24.
@ 2023-06-20 14:03 Paul A. Patience
  2023-06-20 14:05 ` [bug#64192] [PATCH 1/3] gnu: python-blessed: Add missing dependency Paul A. Patience
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Paul A. Patience @ 2023-06-20 14:03 UTC (permalink / raw)
  To: 64192; +Cc: Paul A. Patience

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






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#64192] [PATCH 1/3] gnu: python-blessed: Add missing dependency.
  2023-06-20 14:03 [bug#64192] [PATCH 0/3] gnu: bpython: Update to 0.24 Paul A. Patience
@ 2023-06-20 14:05 ` Paul A. Patience
  2023-06-20 14:06 ` [bug#64192] [PATCH 2/3] gnu: python-curtsies: Update to 0.4.1 Paul A. Patience
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Paul A. Patience @ 2023-06-20 14:05 UTC (permalink / raw)
  To: 64192; +Cc: Paul A. Patience

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






^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#64192] [PATCH 2/3] gnu: python-curtsies: Update to 0.4.1.
  2023-06-20 14:03 [bug#64192] [PATCH 0/3] gnu: bpython: Update to 0.24 Paul A. Patience
  2023-06-20 14:05 ` [bug#64192] [PATCH 1/3] gnu: python-blessed: Add missing dependency Paul A. Patience
@ 2023-06-20 14:06 ` Paul A. Patience
  2023-06-20 14:06 ` [bug#64192] [PATCH 3/3] gnu: bpython: Update to 0.24 Paul A. Patience
  2023-07-10 13:03 ` bug#64192: [PATCH 0/3] " Christopher Baines
  3 siblings, 0 replies; 5+ messages in thread
From: Paul A. Patience @ 2023-06-20 14:06 UTC (permalink / raw)
  To: 64192; +Cc: Paul A. Patience

* 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






^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#64192] [PATCH 3/3] gnu: bpython: Update to 0.24.
  2023-06-20 14:03 [bug#64192] [PATCH 0/3] gnu: bpython: Update to 0.24 Paul A. Patience
  2023-06-20 14:05 ` [bug#64192] [PATCH 1/3] gnu: python-blessed: Add missing dependency Paul A. Patience
  2023-06-20 14:06 ` [bug#64192] [PATCH 2/3] gnu: python-curtsies: Update to 0.4.1 Paul A. Patience
@ 2023-06-20 14:06 ` Paul A. Patience
  2023-07-10 13:03 ` bug#64192: [PATCH 0/3] " Christopher Baines
  3 siblings, 0 replies; 5+ messages in thread
From: Paul A. Patience @ 2023-06-20 14:06 UTC (permalink / raw)
  To: 64192; +Cc: Paul A. Patience

* 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






^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#64192: [PATCH 0/3] gnu: bpython: Update to 0.24.
  2023-06-20 14:03 [bug#64192] [PATCH 0/3] gnu: bpython: Update to 0.24 Paul A. Patience
                   ` (2 preceding siblings ...)
  2023-06-20 14:06 ` [bug#64192] [PATCH 3/3] gnu: bpython: Update to 0.24 Paul A. Patience
@ 2023-07-10 13:03 ` Christopher Baines
  3 siblings, 0 replies; 5+ messages in thread
From: Christopher Baines @ 2023-07-10 13:03 UTC (permalink / raw)
  To: Paul A. Patience; +Cc: 64192-done

[-- Attachment #1: Type: text/plain, Size: 457 bytes --]


"Paul A. Patience" <paul@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

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-07-10 13:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-20 14:03 [bug#64192] [PATCH 0/3] gnu: bpython: Update to 0.24 Paul A. Patience
2023-06-20 14:05 ` [bug#64192] [PATCH 1/3] gnu: python-blessed: Add missing dependency Paul A. Patience
2023-06-20 14:06 ` [bug#64192] [PATCH 2/3] gnu: python-curtsies: Update to 0.4.1 Paul A. Patience
2023-06-20 14:06 ` [bug#64192] [PATCH 3/3] gnu: bpython: Update to 0.24 Paul A. Patience
2023-07-10 13:03 ` bug#64192: [PATCH 0/3] " Christopher Baines

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).