From: Alexandru Ardelean Date: Tue, 25 Nov 2025 12:14:40 +0000 (+0200) Subject: python-curl: bump to version 7.45.7 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=d2d56d216e13ff2251ac04b848c3cdafd6b7679b;p=feed%2Fpackages.git python-curl: bump to version 7.45.7 Change bumps version to 7.45.7 Adding python-setuptools/host as PKG_BUILD_DEPENDS. Package is no longer needed. Fixes: https://github.com/openwrt/packages/issues/27915 Signed-off-by: Alexandru Ardelean --- diff --git a/lang/python/python-curl/Makefile b/lang/python/python-curl/Makefile index b239efd3a0..810810e058 100644 --- a/lang/python/python-curl/Makefile +++ b/lang/python/python-curl/Makefile @@ -5,16 +5,20 @@ include $(TOPDIR)/rules.mk PKG_NAME:=pycurl -PKG_VERSION:=7.45.2 -PKG_RELEASE:=3 +PKG_VERSION:=7.45.7 +PKG_RELEASE:=1 PYPI_NAME:=$(PKG_NAME) -PKG_HASH:=5730590be0271364a5bddd9e245c9cc0fb710c4cbacbdd95264a3122d23224ca +PKG_HASH:=9d43013002eab2fd6d0dcc671cd1e9149e2fc1c56d5e796fad94d076d6cb69ef PKG_MAINTAINER:=Waldemar Konik PKG_LICENSE:=LGPL-2.1 PKG_LICENSE_FILES:=COPYING-LGPL +PKG_BUILD_DEPENDS:= \ + python3/host \ + python-setuptools/host + include ../pypi.mk include $(INCLUDE_DIR)/package.mk include ../python3-package.mk diff --git a/lang/python/python-curl/patches/100_macos_compat.patch b/lang/python/python-curl/patches/100_macos_compat.patch deleted file mode 100644 index ba5e0b8dab..0000000000 --- a/lang/python/python-curl/patches/100_macos_compat.patch +++ /dev/null @@ -1,15 +0,0 @@ -Support build on MacOS -This patch should be deleted after resolving https://github.com/pycurl/pycurl/issues/727 ---- ---- a/setup.py -+++ b/setup.py -@@ -341,9 +341,6 @@ ignore this message.''') - if not self.libraries: - self.libraries.append("curl") - -- # Add extra compile flag for MacOS X -- if sys.platform.startswith('darwin'): -- self.extra_link_args.append("-flat_namespace") - - # Recognize --avoid-stdio on Unix so that it can be tested - self.check_avoid_stdio()