From 6008f2b1b901be1374ac201b5e560cca61b4b61e Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Wed, 10 Jan 2024 23:16:58 -0700 Subject: [PATCH] package/python-service-identity: bump to version 23.1.0 License hash changed due to MIT header added: https://github.com/pyca/service-identity/commit/a4a82c1b646d07cf2f3b4705ce17f22e6484556c Migrate from setuptools to hatchling pep517 build backend. Drop no longer python-pyopenssl runtime dependency. Drop no longer python-six runtime dependency. Signed-off-by: James Hilliard Signed-off-by: Arnout Vandecappelle --- package/python-service-identity/Config.in | 2 -- .../python-service-identity.hash | 6 +++--- .../python-service-identity.mk | 12 ++++++++---- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/package/python-service-identity/Config.in b/package/python-service-identity/Config.in index 278900971e..dccd8f37c0 100644 --- a/package/python-service-identity/Config.in +++ b/package/python-service-identity/Config.in @@ -5,8 +5,6 @@ config BR2_PACKAGE_PYTHON_SERVICE_IDENTITY select BR2_PACKAGE_PYTHON_ATTRS # runtime select BR2_PACKAGE_PYTHON_PYASN1 # runtime select BR2_PACKAGE_PYTHON_PYASN1_MODULES # runtime - select BR2_PACKAGE_PYTHON_PYOPENSSL # runtime - select BR2_PACKAGE_PYTHON_SIX # runtime help Service identity verification for pyOpenSSL. diff --git a/package/python-service-identity/python-service-identity.hash b/package/python-service-identity/python-service-identity.hash index f648918dbd..32d8f21ad4 100644 --- a/package/python-service-identity/python-service-identity.hash +++ b/package/python-service-identity/python-service-identity.hash @@ -1,5 +1,5 @@ # md5, sha256 from https://pypi.org/pypi/service-identity/json -md5 5e5c195d8fcedc72f9068be2ad9b5a13 service-identity-21.1.0.tar.gz -sha256 6e6c6086ca271dc11b033d17c3a8bea9f24ebff920c587da090afc9519419d34 service-identity-21.1.0.tar.gz +md5 14a751406024544784459474d93d1ea5 service_identity-23.1.0.tar.gz +sha256 ecb33cd96307755041e978ab14f8b14e13b40f1fbd525a4dc78f46d2b986431d service_identity-23.1.0.tar.gz # Locally computed sha256 checksums -sha256 c5075126e1272b176504e36af369781a95c5c1124239da8e4f61b0f9c15a56cf LICENSE +sha256 51f7c647190e74d19f9f24f1b19645b425eb8f30f049196053686bff188505cf LICENSE diff --git a/package/python-service-identity/python-service-identity.mk b/package/python-service-identity/python-service-identity.mk index e4ae8e6889..6e61dd951b 100644 --- a/package/python-service-identity/python-service-identity.mk +++ b/package/python-service-identity/python-service-identity.mk @@ -4,11 +4,15 @@ # ################################################################################ -PYTHON_SERVICE_IDENTITY_VERSION = 21.1.0 -PYTHON_SERVICE_IDENTITY_SOURCE = service-identity-$(PYTHON_SERVICE_IDENTITY_VERSION).tar.gz -PYTHON_SERVICE_IDENTITY_SITE = https://files.pythonhosted.org/packages/09/2e/26ade69944773df4748c19d3053e025b282f48de02aad84906d34a29d28b +PYTHON_SERVICE_IDENTITY_VERSION = 23.1.0 +PYTHON_SERVICE_IDENTITY_SOURCE = service_identity-$(PYTHON_SERVICE_IDENTITY_VERSION).tar.gz +PYTHON_SERVICE_IDENTITY_SITE = https://files.pythonhosted.org/packages/3b/98/2a46c7414ffc1d06ba67d2c2dd62a207a70cb351028a8cd8c85b3dbd1cf7 PYTHON_SERVICE_IDENTITY_LICENSE = MIT PYTHON_SERVICE_IDENTITY_LICENSE_FILES = LICENSE -PYTHON_SERVICE_IDENTITY_SETUP_TYPE = setuptools +PYTHON_SERVICE_IDENTITY_SETUP_TYPE = pep517 +PYTHON_SERVICE_IDENTITY_DEPENDENCIES = \ + host-python-hatchling \ + host-python-hatch-vcs \ + host-python-hatch-fancy-pypi-readme $(eval $(python-package))