unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#69947] [PATCH] gnu: python-box: Update to 7.1.1.
@ 2024-03-22 20:12 Felix Gruber
  2024-03-23  8:13 ` Munyoki Kilyungi
  2024-03-23  9:39 ` bug#69947: " Sharlatan Hellseher
  0 siblings, 2 replies; 3+ messages in thread
From: Felix Gruber @ 2024-03-22 20:12 UTC (permalink / raw)
  To: 69947
  Cc: Felix Gruber, Lars-Dominik Braun, Marius Bakke, Munyoki Kilyungi,
	Sharlatan Hellseher, Tanguy Le Carrour, jgart

* gnu/packages/python-xyz.scm (python-box): Update to 7.1.1.
[source]: Download from github since pypi tarball does not contain all
test files.
[build-system]: Use pyproject-build-system.
[propagated-inputs]: Remove python-toml; add python-tomli and python-tomli-w.
[native-inputs]: Add python-cython, python-pytest, and python-wheel.

Change-Id: Ia39063054821e75768b1d9a5c937eab432e7c59e
---
 gnu/packages/python-xyz.scm | 21 ++++++++++++++-------
 1 file changed, 14 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index eec7586d3f..aad89d251e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -108,7 +108,7 @@
 ;;; Copyright © 2021 Simon Streit <simon@netpanic.org>
 ;;; Copyright © 2021, 2022, 2023 Daniel Meißner <daniel.meissner-i4k@ruhr-uni-bochum.de>
 ;;; Copyright © 2021, 2022 Pradana Aumars <paumars@courrier.dev>
-;;; Copyright © 2021, 2022, 2023 Felix Gruber <felgru@posteo.net>
+;;; Copyright © 2021–2024 Felix Gruber <felgru@posteo.net>
 ;;; Copyright © 2021 Sébastien Lerique <sl@eauchat.org>
 ;;; Copyright © 2021 Raphaël Mélotte <raphael.melotte@mind.be>
 ;;; Copyright © 2021 ZmnSCPxj <ZmnSCPxj@protonmail.com>
@@ -33544,17 +33544,24 @@ (define-public python-glom
 (define-public python-box
   (package
     (name "python-box")
-    (version "5.3.0")
+    (version "7.1.1")
     (source
+     ;; The PyPI tarball does not contain all test files.
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "python-box" version))
+       (method git-fetch)
+       (uri
+        (git-reference
+         (url "https://github.com/cdgriffith/Box")
+         (commit version)))
+       (file-name (git-file-name name version))
        (sha256
         (base32
-         "0jhrdif57khx2hsw1q6a9x42knwcvq8ijgqyq1jmll6y6ifyzm2f"))))
-    (build-system python-build-system)
+         "1v8s6wji17fh87nvamzysvxi8f51h6szh6h6dxvids56gg5zc553"))))
+    (build-system pyproject-build-system)
     (propagated-inputs
-     (list python-msgpack python-ruamel.yaml python-toml))
+     (list python-msgpack python-ruamel.yaml python-tomli python-tomli-w))
+    (native-inputs
+     (list python-cython python-pytest python-wheel))
     (home-page "https://github.com/cdgriffith/Box")
     (synopsis "Advanced Python dictionaries with dot notation access")
     (description

base-commit: d5f857a3cfd1d7523b4051b94bd67b5cf5636219
-- 
2.43.0





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

* [bug#69947] [PATCH] gnu: python-box: Update to 7.1.1.
  2024-03-22 20:12 [bug#69947] [PATCH] gnu: python-box: Update to 7.1.1 Felix Gruber
@ 2024-03-23  8:13 ` Munyoki Kilyungi
  2024-03-23  9:39 ` bug#69947: " Sharlatan Hellseher
  1 sibling, 0 replies; 3+ messages in thread
From: Munyoki Kilyungi @ 2024-03-23  8:13 UTC (permalink / raw)
  To: Felix Gruber, 69947
  Cc: Tanguy Le Carrour, Lars-Dominik Braun, jgart, Marius Bakke,
	Felix Gruber, Sharlatan Hellseher

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

Hi Felix!

Felix Gruber <felgru@posteo.net> aliandika:

> * gnu/packages/python-xyz.scm (python-box): Update to 7.1.1.
> [source]: Download from github since pypi tarball does not contain all
> test files.
> [build-system]: Use pyproject-build-system.
> [propagated-inputs]: Remove python-toml; add python-tomli and python-tomli-w.
> [native-inputs]: Add python-cython, python-pytest, and python-wheel.

Just finished reviewing this.  This looks good to
me and builds just fine.  Thanks for the contrib!

> Change-Id: Ia39063054821e75768b1d9a5c937eab432e7c59e
> ---
>  gnu/packages/python-xyz.scm | 21 ++++++++++++++-------
>  1 file changed, 14 insertions(+), 7 deletions(-)
>
> diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
> index eec7586d3f..aad89d251e 100644
> --- a/gnu/packages/python-xyz.scm
> +++ b/gnu/packages/python-xyz.scm
> @@ -108,7 +108,7 @@
>  ;;; Copyright © 2021 Simon Streit <simon@netpanic.org>
>  ;;; Copyright © 2021, 2022, 2023 Daniel Meißner <daniel.meissner-i4k@ruhr-uni-bochum.de>
>  ;;; Copyright © 2021, 2022 Pradana Aumars <paumars@courrier.dev>
> -;;; Copyright © 2021, 2022, 2023 Felix Gruber <felgru@posteo.net>
> +;;; Copyright © 2021–2024 Felix Gruber <felgru@posteo.net>
>  ;;; Copyright © 2021 Sébastien Lerique <sl@eauchat.org>
>  ;;; Copyright © 2021 Raphaël Mélotte <raphael.melotte@mind.be>
>  ;;; Copyright © 2021 ZmnSCPxj <ZmnSCPxj@protonmail.com>
> @@ -33544,17 +33544,24 @@ (define-public python-glom
>  (define-public python-box
>    (package
>      (name "python-box")
> -    (version "5.3.0")
> +    (version "7.1.1")
>      (source
> +     ;; The PyPI tarball does not contain all test files.
>       (origin
> -       (method url-fetch)
> -       (uri (pypi-uri "python-box" version))
> +       (method git-fetch)
> +       (uri
> +        (git-reference
> +         (url "https://github.com/cdgriffith/Box")
> +         (commit version)))
> +       (file-name (git-file-name name version))
>         (sha256
>          (base32
> -         "0jhrdif57khx2hsw1q6a9x42knwcvq8ijgqyq1jmll6y6ifyzm2f"))))
> -    (build-system python-build-system)
> +         "1v8s6wji17fh87nvamzysvxi8f51h6szh6h6dxvids56gg5zc553"))))
> +    (build-system pyproject-build-system)
>      (propagated-inputs
> -     (list python-msgpack python-ruamel.yaml python-toml))
> +     (list python-msgpack python-ruamel.yaml python-tomli python-tomli-w))
> +    (native-inputs
> +     (list python-cython python-pytest python-wheel))
>      (home-page "https://github.com/cdgriffith/Box")
>      (synopsis "Advanced Python dictionaries with dot notation access")
>      (description
>
> base-commit: d5f857a3cfd1d7523b4051b94bd67b5cf5636219
> -- 
> 2.43.0
>
>
>

-- 
(Life is like a pencil that will surely run out,
    but will leave the beautiful writing of life.)
(D4F09EB110177E03C28E2FE1F5BBAE1E0392253F
    (hkp://keys.openpgp.org))

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

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

* bug#69947: [PATCH] gnu: python-box: Update to 7.1.1.
  2024-03-22 20:12 [bug#69947] [PATCH] gnu: python-box: Update to 7.1.1 Felix Gruber
  2024-03-23  8:13 ` Munyoki Kilyungi
@ 2024-03-23  9:39 ` Sharlatan Hellseher
  1 sibling, 0 replies; 3+ messages in thread
From: Sharlatan Hellseher @ 2024-03-23  9:39 UTC (permalink / raw)
  To: 69947-done

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


Pushed as f285a968b1219ae748fcab918b17285e741422c2 to master.

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

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

end of thread, other threads:[~2024-03-23  9:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-22 20:12 [bug#69947] [PATCH] gnu: python-box: Update to 7.1.1 Felix Gruber
2024-03-23  8:13 ` Munyoki Kilyungi
2024-03-23  9:39 ` bug#69947: " Sharlatan Hellseher

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