From: Alexandru Ardelean Date: Sun, 9 Aug 2026 09:31:52 +0000 (+0300) Subject: python-setuptools: bump to 84.0.0 X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=6211fee354f46e356cce4ce565741f105d976f73;p=openwrt-packages.git python-setuptools: bump to 84.0.0 Refresh sha256 from PyPI sdist. Signed-off-by: Alexandru Ardelean --- diff --git a/lang/python/python-setuptools/Makefile b/lang/python/python-setuptools/Makefile index 5c530757c..b40917d85 100644 --- a/lang/python/python-setuptools/Makefile +++ b/lang/python/python-setuptools/Makefile @@ -8,11 +8,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=python-setuptools -PKG_VERSION:=82.0.1 -PKG_RELEASE:=2 +PKG_VERSION:=84.0.0 +PKG_RELEASE:=1 PYPI_NAME:=setuptools -PKG_HASH:=7d872682c5d01cfde07da7bccc7b65469d3dca203318515ada1de5eda35efbf9 +PKG_HASH:=f4695c21257f0d9b537ec2692c941d02ee143b7cc1276941349a546573b2ef73 PKG_LICENSE:=MIT PKG_LICENSE_FILES:=LICENSE diff --git a/lang/python/python-setuptools/patches/0001-distutils-use-python-sysroot.patch b/lang/python/python-setuptools/patches/0001-distutils-use-python-sysroot.patch index 09e6ea547..34075d283 100644 --- a/lang/python/python-setuptools/patches/0001-distutils-use-python-sysroot.patch +++ b/lang/python/python-setuptools/patches/0001-distutils-use-python-sysroot.patch @@ -22,7 +22,7 @@ Signed-off-by: Thomas Petazzoni --- a/setuptools/_distutils/command/build_ext.py +++ b/setuptools/_distutils/command/build_ext.py -@@ -156,7 +156,10 @@ class build_ext(Command): +@@ -169,7 +169,10 @@ class build_ext(Command): yield os.path.join(installed_dir, lib_dir) else: # building third party extensions @@ -36,7 +36,7 @@ Signed-off-by: Thomas Petazzoni from distutils import sysconfig --- a/setuptools/_distutils/sysconfig.py +++ b/setuptools/_distutils/sysconfig.py -@@ -37,10 +37,17 @@ else: +@@ -36,10 +36,17 @@ else: IS_PYPY = '__pypy__' in sys.builtin_module_names # These are needed in a couple of spots, so just compute them once.