unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#62965] [PATCH 1/2] gnu: python-ujson: Update to 5.7.0.
@ 2023-04-20 11:14 Raphaël Mélotte via Guix-patches
  2023-04-20 11:15 ` [bug#62965] [PATCH 2/2] gnu: glances: Update to 3.3.1.1 Raphaël Mélotte via Guix-patches
  2023-05-06 16:04 ` bug#62965: [PATCH 1/2] gnu: python-ujson: Update to 5.7.0 Ludovic Courtès
  0 siblings, 2 replies; 3+ messages in thread
From: Raphaël Mélotte via Guix-patches @ 2023-04-20 11:14 UTC (permalink / raw)
  To: 62965; +Cc: Raphaël Mélotte

* gnu/packages/python-xyz.scm (python-ujson): Update to 5.7.0
---
 gnu/packages/python-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6ea91a2719..c8615f7188 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -25633,14 +25633,14 @@ (define-public python-jsonplus
 (define-public python-ujson
   (package
     (name "python-ujson")
-    (version "4.0.2")
+    (version "5.7.0")
     (source
       (origin
         (method url-fetch)
         (uri (pypi-uri "ujson" version))
         (sha256
          (base32
-          "0k9w0kypy7vlskzzp2vsjswaw8lbqdrplzkbflxki9vqwglsj5f6"))
+          "08vvyfyg4qvjy2vxrvc0qix5zmd0j6wd0icvmhc633xfvkayb277"))
         (modules '((guix build utils)))
         (snippet
          '(begin (delete-file-recursively "deps") #t))))
-- 
2.39.1





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

* [bug#62965] [PATCH 2/2] gnu: glances: Update to 3.3.1.1.
  2023-04-20 11:14 [bug#62965] [PATCH 1/2] gnu: python-ujson: Update to 5.7.0 Raphaël Mélotte via Guix-patches
@ 2023-04-20 11:15 ` Raphaël Mélotte via Guix-patches
  2023-05-06 16:04 ` bug#62965: [PATCH 1/2] gnu: python-ujson: Update to 5.7.0 Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Raphaël Mélotte via Guix-patches @ 2023-04-20 11:15 UTC (permalink / raw)
  To: 62965; +Cc: Raphaël Mélotte

* gnu/packages/python-xyz.scm (glances): Update to 3.3.1.1
[propagated-inputs]: Add python-ujson, which is a new dependency since release
v3.3.1 (replacing the builtin json module).
---
 gnu/packages/python-xyz.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c8615f7188..415b387a00 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19263,13 +19263,13 @@ (define-public python-natsort
 (define-public glances
   (package
   (name "glances")
-  (version "3.3.0.4")
+  (version "3.3.1.1")
   (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "Glances" version))
       (sha256
-        (base32 "0klyyxqc7cbrf1i741304i3rrwan19qm2v58xmrlgqsmxac542la"))
+        (base32 "16i92vsjpxpnpkab1wa1y2iw931mq1hna0d2gkkjmgxz1hhr58ih"))
       (modules '((guix build utils)))
       (snippet
        '(begin
@@ -19283,7 +19283,7 @@ (define-public glances
           #t))))
   (build-system python-build-system)
   (propagated-inputs
-   (list python-defusedxml python-future python-packaging python-psutil))
+   (list python-defusedxml python-future python-packaging python-psutil python-ujson))
   (home-page "https://github.com/nicolargo/glances")
   (synopsis "Cross-platform curses-based monitoring tool")
   (description
-- 
2.39.1





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

* bug#62965: [PATCH 1/2] gnu: python-ujson: Update to 5.7.0.
  2023-04-20 11:14 [bug#62965] [PATCH 1/2] gnu: python-ujson: Update to 5.7.0 Raphaël Mélotte via Guix-patches
  2023-04-20 11:15 ` [bug#62965] [PATCH 2/2] gnu: glances: Update to 3.3.1.1 Raphaël Mélotte via Guix-patches
@ 2023-05-06 16:04 ` Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2023-05-06 16:04 UTC (permalink / raw)
  To: Raphaël Mélotte; +Cc: 62965-done

Hi,

Raphaël Mélotte <raphael.melotte@mind.be> skribis:

> * gnu/packages/python-xyz.scm (python-ujson): Update to 5.7.0

[...]

> * gnu/packages/python-xyz.scm (glances): Update to 3.3.1.1
> [propagated-inputs]: Add python-ujson, which is a new dependency since release
> v3.3.1 (replacing the builtin json module).

We got a green light prior to the ‘core-updates’ merge:

  https://qa.guix.gnu.org/issue/62965

I went ahead and applied it after checking that both packages build
fine, but you’re welcome to check other things are still looking fine.

Thanks,
Ludo’.




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

end of thread, other threads:[~2023-05-06 16:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-20 11:14 [bug#62965] [PATCH 1/2] gnu: python-ujson: Update to 5.7.0 Raphaël Mélotte via Guix-patches
2023-04-20 11:15 ` [bug#62965] [PATCH 2/2] gnu: glances: Update to 3.3.1.1 Raphaël Mélotte via Guix-patches
2023-05-06 16:04 ` bug#62965: [PATCH 1/2] gnu: python-ujson: Update to 5.7.0 Ludovic Courtès

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).