1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00

converters/py-rencode: Remove unneeded BUILD_DEPENDS

This commit is contained in:
Po-Chuan Hsieh 2022-06-22 00:33:37 +08:00
parent 81cf455794
commit ac87df0323
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
2 changed files with 4 additions and 4 deletions

View File

@ -11,8 +11,6 @@ COMMENT= Web safe object pickling/unpickling
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
USES= cpe python:3.6+
CPE_VENDOR= ${PORTNAME}_project
USE_PYTHON= autoplist distutils

View File

@ -27,9 +27,11 @@
sources=["rencode/rencode" + source_ext],
),
]
@@ -93,4 +88,5 @@ setup(
@@ -92,5 +87,6 @@ setup(
url="https://github.com/aresch/rencode",
cmdclass={'build_ext': optional_build_ext},
ext_modules=ext_modules,
setup_requires=['setuptools', 'wheel'],
- setup_requires=['setuptools', 'wheel'],
+ setup_requires=['setuptools'],
+ test_suite='tests',
)