From: Josef Schlehofer Date: Sun, 2 Nov 2025 16:41:26 +0000 (+0100) Subject: python-zope-interface: update to 8.0.1 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=c4bcff285b4f828443cd525b3bf78ff207649790;p=feed%2Fpackages.git python-zope-interface: update to 8.0.1 Release notes: https://github.com/zopefoundation/zope.interface/blob/8.0.1/CHANGES.rst Signed-off-by: Josef Schlehofer --- diff --git a/lang/python/python-zope-interface/Makefile b/lang/python/python-zope-interface/Makefile index 81eac63f9b..957cce8449 100644 --- a/lang/python/python-zope-interface/Makefile +++ b/lang/python/python-zope-interface/Makefile @@ -9,16 +9,21 @@ include $(TOPDIR)/rules.mk PKG_NAME:=python-zope-interface -PKG_VERSION:=6.1 +PKG_VERSION:=8.0.1 PKG_RELEASE:=1 PYPI_NAME:=zope.interface -PKG_HASH:=2fdc7ccbd6eb6b7df5353012fbed6c3c5d04ceaca0038f75e601060e95345309 +PYPI_SOURCE_NAME:=zope_interface +PKG_HASH:=eba5610d042c3704a48222f7f7c6ab5b243ed26f917e2bc69379456b115e02d1 PKG_LICENSE:=ZPL-2.1 PKG_LICENSE_FILES:=LICENSE.txt PKG_MAINTAINER:=Jeffery To +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-zope-interface/patches/001-omit-tests.patch b/lang/python/python-zope-interface/patches/001-omit-tests.patch deleted file mode 100644 index 40aed6e2bf..0000000000 --- a/lang/python/python-zope-interface/patches/001-omit-tests.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- a/setup.py -+++ b/setup.py -@@ -125,7 +125,7 @@ setup(name='zope.interface', - "Framework :: Zope :: 3", - "Topic :: Software Development :: Libraries :: Python Modules", - ], -- packages=find_packages('src'), -+ packages=find_packages('src', exclude=["*.tests", "*.tests.*"]), - package_dir={'': 'src'}, - namespace_packages=["zope"], - cmdclass={ -@@ -133,6 +133,7 @@ setup(name='zope.interface', - }, - test_suite='zope.interface.tests', - include_package_data=True, -+ exclude_package_data={'':['tests/*']}, - zip_safe=False, - tests_require=tests_require, - install_requires=['setuptools'],