diff --git a/devel/py-test-shutil/Makefile b/devel/py-test-shutil/Makefile index 451509263536..118407e64acd 100644 --- a/devel/py-test-shutil/Makefile +++ b/devel/py-test-shutil/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2024/08/10 06:24:24 wiz Exp $ +# $NetBSD: Makefile,v 1.9 2024/10/17 20:16:12 wiz Exp $ -DISTNAME= pytest-shutil-1.7.0 +DISTNAME= pytest-shutil-1.8.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} PKGREVISION= 1 CATEGORIES= devel python @@ -13,16 +13,11 @@ LICENSE= mit TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel -DEPENDS+= ${PYPKGPREFIX}-contextlib2-[0-9]*:../../devel/py-contextlib2 DEPENDS+= ${PYPKGPREFIX}-execnet-[0-9]*:../../devel/py-execnet -DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock DEPENDS+= ${PYPKGPREFIX}-path.py-[0-9]*:../../devel/py-path.py DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six -DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test DEPENDS+= ${PYPKGPREFIX}-termcolor-[0-9]*:../../devel/py-termcolor -PYTHON_VERSIONS_INCOMPATIBLE= 27 - USE_LANGUAGES= # none .include "../../lang/python/wheel.mk" diff --git a/devel/py-test-shutil/distinfo b/devel/py-test-shutil/distinfo index f687f86f4f39..d05c939ff931 100644 --- a/devel/py-test-shutil/distinfo +++ b/devel/py-test-shutil/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2024/08/10 06:24:24 wiz Exp $ +$NetBSD: distinfo,v 1.10 2024/10/17 20:16:12 wiz Exp $ -BLAKE2s (pytest-shutil-1.7.0.tar.gz) = 18515173e63d9d303b94f421aa54601a6a21c169c524de5682ac22cb78b79980 -SHA512 (pytest-shutil-1.7.0.tar.gz) = 3746c08b17834621a7142ed9d5915b5c348c13367f5b423b258d3471bcb9c9e983c61c25ca936f879b8b82f80512512b7f3ade5555c24a790c72b502e3f3d144 -Size (pytest-shutil-1.7.0.tar.gz) = 23497 bytes +BLAKE2s (pytest-shutil-1.8.0.tar.gz) = 30b6da748c8d92b5647bd608499780e142a51c626eea50ee9a92b614b7b60065 +SHA512 (pytest-shutil-1.8.0.tar.gz) = df97d0cbbb94dfaf35dabbb51d72feca957ba2cdfb4f802b6519d226ad8836be3f92419f362706695a0cc7279ef3c8d96b58e5dd7ab56b82d0b38f08fe3b4c91 +Size (pytest-shutil-1.8.0.tar.gz) = 37608 bytes SHA1 (patch-common_setup.py) = e7507246a99ba99918647e05d0fbec72560eeae8 diff --git a/devel/py-test-shutil/patches/patch-common_setup.py b/devel/py-test-shutil/patches/patch-common_setup.py deleted file mode 100644 index b4fc749081bb..000000000000 --- a/devel/py-test-shutil/patches/patch-common_setup.py +++ /dev/null @@ -1,22 +0,0 @@ -$NetBSD: patch-common_setup.py,v 1.2 2024/08/10 06:24:24 wiz Exp $ - -Fix compat with latest setuptools. -Do not depend on setuptools-git. - ---- common_setup.py.orig 2019-05-28 06:32:17.000000000 +0000 -+++ common_setup.py -@@ -38,7 +38,6 @@ class EggInfo(EggInfoCommand): - def run(self): - if self.distribution.extras_require is None: - self.distribution.extras_require = {} -- self.distribution.extras_require['tests'] = self.distribution.tests_require - EggInfoCommand.run(self) - - -@@ -72,6 +71,5 @@ def common_setup(src_dir): - license='MIT license', - platforms=['unix', 'linux'], - cmdclass={'test': PyTest, 'egg_info': EggInfo}, -- setup_requires=['setuptools-git'], - include_package_data=True - )