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

Collapse All | Expand All

(-)b/www/py-pyjwt/Makefile (-4 / +3 lines)
Lines 1-14 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	pyjwt
3
PORTNAME=	pyjwt
4
PORTVERSION=	1.4.0
4
PORTVERSION=	1.7.1
5
PORTREVISION=	1
6
CATEGORIES=	www python
5
CATEGORIES=	www python
7
MASTER_SITES=	CHEESESHOP
6
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
DISTNAME=	PyJWT-${PORTVERSION}
8
DISTNAME=	PyJWT-${PORTVERSION}
10
9
11
MAINTAINER=	terje@elde.net
10
MAINTAINER=	meka@tilda.center
12
COMMENT=	JSON Web Token implementation in Python
11
COMMENT=	JSON Web Token implementation in Python
13
12
14
LICENSE=	MIT
13
LICENSE=	MIT
Lines 31-36 RSASSA_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>0:security/py-cryptograp Link Here
31
NO_ARCH=	yes
30
NO_ARCH=	yes
32
31
33
do-test:
32
do-test:
34
	@cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -c /dev/null -v -rs
33
	@cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v -rs -o addopts=
35
34
36
.include <bsd.port.mk>
35
.include <bsd.port.mk>
(-)b/www/py-pyjwt/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (PyJWT-1.4.0.tar.gz) = e1b2386cfad541445b1d43e480b02ca37ec57259fd1a23e79415b57ba5d8a694
1
TIMESTAMP = 1577039206
2
SIZE (PyJWT-1.4.0.tar.gz) = 34613
2
SHA256 (PyJWT-1.7.1.tar.gz) = 8d59a976fb773f3e6a39c85636357c4f0e242707394cadadd9814f5cbaa20e96
3
SIZE (PyJWT-1.7.1.tar.gz) = 41979
(-)a/www/py-pyjwt/files/patch-setup.py (-19 lines)
Removed Link Here
1
--- setup.py.orig	2016-02-26 09:43:54 UTC
2
+++ setup.py
3
@@ -31,8 +31,6 @@ if sys.argv[-1] == 'publish':
4
 
5
 tests_require = [
6
     'pytest',
7
-    'pytest-cov',
8
-    'pytest-runner',
9
 ]
10
 
11
 setup(
12
@@ -61,7 +59,6 @@ setup(
13
         'Topic :: Utilities',
14
     ],
15
     test_suite='tests',
16
-    setup_requires=['pytest-runner'],
17
     tests_require=tests_require,
18
     extras_require=dict(
19
         test=tests_require,

Return to bug 242818