View | Details | Raw Unified | Return to bug 212042 | Differences between
and this patch

Collapse All | Expand All

(-)devel/py-pytest/Makefile (-1 / +3 lines)
Lines 1-7 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	pytest
3
PORTNAME=	pytest
4
PORTVERSION=	2.8.7
4
PORTVERSION=	3.0.0
5
CATEGORIES=	devel python
5
CATEGORIES=	devel python
6
MASTER_SITES=	CHEESESHOP
6
MASTER_SITES=	CHEESESHOP
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
Lines 14-19 Link Here
14
14
15
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}py>=1.4.29:devel/py-py
15
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}py>=1.4.29:devel/py-py
16
TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock \
16
TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock \
17
		${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose \
18
		${PYTHON_PKGNAMEPREFIX}hypothesis>0:devel/py-hypothesis \
17
		${PYTHON_PKGNAMEPREFIX}pexpect>0:misc/py-pexpect \
19
		${PYTHON_PKGNAMEPREFIX}pexpect>0:misc/py-pexpect \
18
		${PYTHON_PKGNAMEPREFIX}pytest-xdist>=1.13:devel/py-pytest-xdist
20
		${PYTHON_PKGNAMEPREFIX}pytest-xdist>=1.13:devel/py-pytest-xdist
19
21
(-)devel/py-pytest/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (pytest-2.8.7.tar.gz) = fc4c86be54fce08e4b85b646a736efa18c6cde7599c1d2919f4f74629e018baf
1
TIMESTAMP = 1471847401
2
SIZE (pytest-2.8.7.tar.gz) = 564943
2
SHA256 (pytest-3.0.0.tar.gz) = a37795bbc4005400b281b72613cd6a13261ffde615c6d539d94ca915fc507192
3
SIZE (pytest-3.0.0.tar.gz) = 728820
(-)devel/py-pytest/files/patch-setup.py (-13 lines)
Lines 1-13 Link Here
1
--- setup.py.orig	2016-02-27 05:10:48 UTC
2
+++ setup.py
3
@@ -69,7 +69,9 @@ def main():
4
         platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
5
         author='Holger Krekel, Bruno Oliveira, Ronny Pfannschmidt, Floris Bruynooghe, Brianna Laugher, Florian Bruhin and others',
6
         author_email='holger at merlinux.eu',
7
-        entry_points=make_entry_points(),
8
+        entry_points= {
9
+            'console_scripts': ['py.test=pytest:main'],
10
+        },
11
         classifiers=classifiers,
12
         cmdclass={'test': PyTest},
13
         # the following should be enabled for release
(-)devel/py-pytest/pkg-descr (+1 lines)
Lines 14-16 Link Here
14
  * Many external plugins
14
  * Many external plugins
15
15
16
WWW: http://pytest.org
16
WWW: http://pytest.org
17
WWW: https://github.com/pytest-dev/pytest

Return to bug 212042