unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#71738] [PATCH 0/2] gnu: python-geoip2: Update to 4.8.0.
@ 2024-06-23 21:57 Wilko Meyer
  2024-06-23 22:01 ` [bug#71738] [PATCH 1/2] gnu: python-maxminddb: Update to 2.6.2 Wilko Meyer
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Wilko Meyer @ 2024-06-23 21:57 UTC (permalink / raw)
  To: 71738; +Cc: Wilko Meyer, Andreas Enge, Eric Bavier, Sharlatan Hellseher

Hi Guix,

Noticed python-geoip2 as well as its dependency on python-maxminddb was
outdated, so I updated both to their respective latest version.

Wilko Meyer (2):
  gnu: python-maxminddb: Update to 2.6.2.
  gnu: python-geoip2: Update to 4.8.0.

 gnu/packages/geo.scm | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)


base-commit: a0eccc02ed1b86f12513df6dd66aea60c29ad95f
-- 
2.41.0





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

* [bug#71738] [PATCH 1/2] gnu: python-maxminddb: Update to 2.6.2.
  2024-06-23 21:57 [bug#71738] [PATCH 0/2] gnu: python-geoip2: Update to 4.8.0 Wilko Meyer
@ 2024-06-23 22:01 ` Wilko Meyer
  2024-06-23 22:01 ` [bug#71738] [PATCH 2/2] gnu: python-geoip2: Update to 4.8.0 Wilko Meyer
  2024-06-24 20:45 ` bug#71738: [PATCH 0/2] " jgart via Guix-patches via
  2 siblings, 0 replies; 4+ messages in thread
From: Wilko Meyer @ 2024-06-23 22:01 UTC (permalink / raw)
  To: 71738; +Cc: Wilko Meyer, Andreas Enge, Eric Bavier, Sharlatan Hellseher

* gnu/packages/geo.scm (python-maxminddb): Update to 2.6.2.
  [build-system]: Change to pyproject-build-system.

Change-Id: I824468160fef695a8fb9e517b9d91c90da9a2897
---
 gnu/packages/geo.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 69e7b58677..0fad220f1c 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -2375,15 +2375,15 @@ (define-public libmaxminddb
 (define-public python-maxminddb
   (package
     (name "python-maxminddb")
-    (version "2.2.0")
+    (version "2.6.2")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "maxminddb" version))
        (sha256
         (base32
-         "1rc4a403r3b4vhmhb03gidd0fmsbvfpbf3qfcw25h4db9zn0fxz3"))))
-    (build-system python-build-system)
+         "0r7jcqzr3hy9jims0ygjdhndysbs02hsaybx9f4vq2k2w8r2v13x"))))
+    (build-system pyproject-build-system)
     (arguments
      `(#:tests? #f)) ;; Tests require a copy of the maxmind database
     (inputs
-- 
2.41.0





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

* [bug#71738] [PATCH 2/2] gnu: python-geoip2: Update to 4.8.0.
  2024-06-23 21:57 [bug#71738] [PATCH 0/2] gnu: python-geoip2: Update to 4.8.0 Wilko Meyer
  2024-06-23 22:01 ` [bug#71738] [PATCH 1/2] gnu: python-maxminddb: Update to 2.6.2 Wilko Meyer
@ 2024-06-23 22:01 ` Wilko Meyer
  2024-06-24 20:45 ` bug#71738: [PATCH 0/2] " jgart via Guix-patches via
  2 siblings, 0 replies; 4+ messages in thread
From: Wilko Meyer @ 2024-06-23 22:01 UTC (permalink / raw)
  To: 71738; +Cc: Wilko Meyer, Andreas Enge, Eric Bavier, Sharlatan Hellseher

* gnu/packages/geo.scm (python-geoip2): Update to 4.8.0.
  [build-system]: Change to pyproject-build-system.
  [inputs]: Add python-aiohttp.

Change-Id: Ie5f4a6f99a8cb1bef562c6d2401391f6467a715d
---
 gnu/packages/geo.scm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 0fad220f1c..1146939408 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -2398,19 +2398,21 @@ (define-public python-maxminddb
 (define-public python-geoip2
   (package
     (name "python-geoip2")
-    (version "2.9.0")
+    (version "4.8.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "geoip2" version))
        (sha256
         (base32
-         "1w7cay5q6zawjzivqbwz5cqx1qbdjw6kbriccb7l46p7b39fkzzp"))))
-    (build-system python-build-system)
+         "0ddcm6a0f5xr66r84hpn6jr6b7hl77axb0d41qj285ylny0c376x"))))
+    (build-system pyproject-build-system)
     (arguments
      `(#:tests? #f)) ;; Tests require a copy of the maxmind database
     (inputs
-     (list python-maxminddb python-requests))
+     (list python-maxminddb
+           python-requests
+           python-aiohttp))
     (home-page "https://www.maxmind.com/")
     (synopsis "MaxMind GeoIP2 API")
     (description "Provides an API for the GeoIP2 web services and databases.
-- 
2.41.0





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

* bug#71738: [PATCH 0/2] gnu: python-geoip2: Update to 4.8.0.
  2024-06-23 21:57 [bug#71738] [PATCH 0/2] gnu: python-geoip2: Update to 4.8.0 Wilko Meyer
  2024-06-23 22:01 ` [bug#71738] [PATCH 1/2] gnu: python-maxminddb: Update to 2.6.2 Wilko Meyer
  2024-06-23 22:01 ` [bug#71738] [PATCH 2/2] gnu: python-geoip2: Update to 4.8.0 Wilko Meyer
@ 2024-06-24 20:45 ` jgart via Guix-patches via
  2 siblings, 0 replies; 4+ messages in thread
From: jgart via Guix-patches via @ 2024-06-24 20:45 UTC (permalink / raw)
  To: 71738-done; +Cc: Wilko Meyer

Applied!

Thanks,

jgart




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

end of thread, other threads:[~2024-06-24 20:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-23 21:57 [bug#71738] [PATCH 0/2] gnu: python-geoip2: Update to 4.8.0 Wilko Meyer
2024-06-23 22:01 ` [bug#71738] [PATCH 1/2] gnu: python-maxminddb: Update to 2.6.2 Wilko Meyer
2024-06-23 22:01 ` [bug#71738] [PATCH 2/2] gnu: python-geoip2: Update to 4.8.0 Wilko Meyer
2024-06-24 20:45 ` bug#71738: [PATCH 0/2] " jgart via Guix-patches via

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