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

(-)devel/py-nose2/Makefile (-2 / +1 lines)
Lines 1-8 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	nose2
3
PORTNAME=	nose2
4
PORTVERSION=	0.8.0
4
PORTVERSION=	0.9.1
5
PORTREVISION=	1
6
CATEGORIES=	devel python
5
CATEGORIES=	devel python
7
MASTER_SITES=	CHEESESHOP
6
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
(-)devel/py-nose2/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1539275660
1
TIMESTAMP = 1563316344
2
SHA256 (nose2-0.8.0.tar.gz) = 9052f2b46807b63d9bdf68e0768da1f8386368889b50043fd5d0889c470258f3
2
SHA256 (nose2-0.9.1.tar.gz) = 0ede156fd7974fa40893edeca0b709f402c0ccacd7b81b22e76f73c116d1b999
3
SIZE (nose2-0.8.0.tar.gz) = 142142
3
SIZE (nose2-0.9.1.tar.gz) = 153897
(-)devel/py-nose2/files/patch-setup.py (-9 / +9 lines)
Lines 1-13 Link Here
1
Allow USE_PYTHON=concurrent to handle script renaming/linking for multiple
1
Allow USE_PYTHON=concurrent to handle script renaming/linking for multiple
2
Python versions.
2
Python versions.
3
3
4
--- setup.py.orig	2018-01-29 12:01:44 UTC
4
--- setup.py.orig	2019-04-02 15:52:32 UTC
5
+++ setup.py
5
+++ setup.py
6
@@ -89,7 +89,6 @@ else:
6
@@ -41,7 +41,6 @@ setup(
7
     params['entry_points'] = {
7
     entry_points={
8
         'console_scripts': [
8
         "console_scripts": [
9
             '%s = nose2:discover' % SCRIPT1,
9
             "nose2 = nose2:discover",
10
-            '%s = nose2:discover' % SCRIPT2,
10
-            "nose2-%s.%s = nose2:discover" % (py_version.major, py_version.minor),
11
         ],
11
         ]
12
     }
12
     },
13
     params['install_requires'] = parse_requirements('requirements.txt')
13
     test_suite="unittest.collector",

Return to bug 239262