summaryrefslogtreecommitdiff
path: root/archivers/py-lz4
diff options
context:
space:
mode:
authorKubilay Kocak <koobs@FreeBSD.org>2019-04-02 12:35:25 +0000
committerKubilay Kocak <koobs@FreeBSD.org>2019-04-02 12:35:25 +0000
commit79b785672b29c044c6461f457edae7d53e1a5847 (patch)
treec52b379acb6b9f4b5132158cbbb64d60c66ad6e2 /archivers/py-lz4
parentdevel/bingo: Update to more recent snapshot (diff)
archivers/py-lz4: Remove pytest-runner from BUILD_DEPENDS
pkg-fallout reports, after setuptools attempts to fetch pytest as a dependency: distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pytest<4.0.0,>=3.8.2') pytest was recently updated to 4.x, which is presumably the root source of the issue, but I wasn't able to identify the source of the pinned pytest version, or why the fetch of pytest was attempted. However, remove pytest-runner from BUILD_DEPENDS as a stop gap, since as setup.py states: # Only require pytest-runner if actually running the tests needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv) pytest_runner = ['pytest-runner'] if needs_pytest else [] Further, since the port is using pythonX.Y -m pytest as the test invocation, rather than pythonX.Y setup.py test, the dependency is spurious anyway. Reported by: pkg-fallout
Notes
Notes: svn path=/head/; revision=497562
Diffstat (limited to 'archivers/py-lz4')
-rw-r--r--archivers/py-lz4/Makefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/archivers/py-lz4/Makefile b/archivers/py-lz4/Makefile
index cb1a1eb3f053..b67faa0caa16 100644
--- a/archivers/py-lz4/Makefile
+++ b/archivers/py-lz4/Makefile
@@ -14,7 +14,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= liblz4>=1.7.5:archivers/liblz4 \
${PYTHON_PKGNAMEPREFIX}pkgconfig>=0:devel/py-pkgconfig@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}pytest-runner>=0:devel/py-pytest-runner@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm@${PY_FLAVOR}
LIB_DEPENDS= liblz4.so:archivers/liblz4
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psutil>=0:sysutils/py-psutil@${PY_FLAVOR} \