View | Details | Raw Unified | Return to bug 202884
Collapse All | Expand All

(-)devel/py-pytest/Makefile (-1 / +1 lines)
Lines 18-24 TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:${PORT Link Here
18
		${PYTHON_PKGNAMEPREFIX}pexpect>0:${PORTSDIR}/misc/py-pexpect
18
		${PYTHON_PKGNAMEPREFIX}pexpect>0:${PORTSDIR}/misc/py-pexpect
19
19
20
USES=		python
20
USES=		python
21
USE_PYTHON=	autoplist distutils
21
USE_PYTHON=	autoplist concurrent distutils
22
22
23
OPTIONS_DEFINE=	TESTS
23
OPTIONS_DEFINE=	TESTS
24
24
(-)devel/py-pytest/files/patch-setup.py (+14 lines)
Line 0 Link Here
1
# Let USE_PYTHON=concurrent handle suffixing
2
3
--- setup.py.orig	2015-05-19 00:47:59 UTC
4
+++ setup.py
5
@@ -89,8 +89,7 @@ def cmdline_entrypoints(versioninfo, pla
6
         if basename.startswith('pypy'):
7
             points = {'py.test-%s' % basename: target}
8
         else: # cpython
9
-            points = {'py.test-%s.%s' % versioninfo[:2] : target}
10
-        points['py.test'] = target
11
+            points = {'py.test' : target}
12
     return points
13
 
14
 

Return to bug 202884