Index | Thread | Search

From:
Kirill A. Korinsky <kirill@korins.ky>
To:
OpenBSD ports <ports@openbsd.org>
Date:
Wed, 21 Aug 2024 14:58:45 +0200

Download raw body.

Thread
  • Kirill A. Korinsky:

    (no subject)

    • Stuart Henderson:

ports@,

Here a fix for missed dependency in devel/py-test-forked which is well know
for upstream as https://github.com/pytest-dev/pytest-forked/issues/88

diff --git devel/py-test-forked/Makefile devel/py-test-forked/Makefile
index 4682cc8931b..37738d5184a 100644
--- devel/py-test-forked/Makefile
+++ devel/py-test-forked/Makefile
@@ -4,7 +4,7 @@ MODPY_EGG_VERSION =	1.6.0
 
 DISTNAME =		pytest-forked-${MODPY_EGG_VERSION}
 PKGNAME =		py-test-forked-${MODPY_EGG_VERSION}
-REVISION =		0
+REVISION =		1
 
 CATEGORIES =		devel
 
@@ -22,6 +22,7 @@ MODPY_PI =		Yes
 MODPY_PYBUILD =		setuptools_scm
 MODPY_PYTEST_ARGS =	-v
 
-RUN_DEPENDS =		devel/py-test${MODPY_FLAVOR}
+RUN_DEPENDS =		devel/py-py${MODPY_FLAVOR} \
+			devel/py-test${MODPY_FLAVOR}
 
 .include <bsd.port.mk>


-- 
wbr, Kirill