python-maxminddb: update to 3.1.1; add test.sh
authorAlexandru Ardelean <redacted>
Mon, 13 Apr 2026 08:18:21 +0000 (08:18 +0000)
committerAlexandru Ardelean <redacted>
Tue, 14 Apr 2026 07:33:53 +0000 (10:33 +0300)
Bump version 2.4.0 -> 3.1.1.
Add python3-urllib to DEPENDS (required by new version).
Add test.sh to verify open_database and InvalidDatabaseError imports.

Signed-off-by: Alexandru Ardelean <redacted>
lang/python/python-maxminddb/Makefile
lang/python/python-maxminddb/test.sh [new file with mode: 0644]

index 92fd5db159649f5dca00522fc862a4ed659006ee..19ce7664f628cde6d263500330bd04d7df490742 100644 (file)
@@ -9,11 +9,11 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=python-maxminddb
-PKG_VERSION:=2.4.0
+PKG_VERSION:=3.1.1
 PKG_RELEASE:=1
 
 PYPI_NAME:=maxminddb
-PKG_HASH:=81e54e53408bd502650e5969ccba16780af659ec1db1c44b2c997e4330a5ed96
+PKG_HASH:=b19a938c481518f19a2c534ffdcb3bc59582f0fbbdcf9f81ac9adf912a0af686
 
 PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
 PKG_LICENSE:=Apache-2.0
@@ -29,7 +29,7 @@ define Package/python3-maxminddb
   SUBMENU:=Python
   TITLE:=Reader for the MaxMind DB format
   URL:=https://www.maxmind.com/
-  DEPENDS:=+python3-light +libmaxminddb
+  DEPENDS:=+python3-light +python3-urllib +libmaxminddb
 endef
 
 define Package/python3-maxminddb/description
diff --git a/lang/python/python-maxminddb/test.sh b/lang/python/python-maxminddb/test.sh
new file mode 100644 (file)
index 0000000..e0a5b99
--- /dev/null
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+[ "$1" = python3-maxminddb ] || exit 0
+
+python3 - << 'EOF'
+import maxminddb
+from maxminddb import open_database, InvalidDatabaseError
+
+assert callable(open_database)
+assert issubclass(InvalidDatabaseError, Exception)
+
+print("python3-maxminddb OK")
+EOF
\ No newline at end of file
git clone https://git.99rst.org/PROJECT