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

(-)ports/www/py-aiohttp/Makefile (-2 / +2 lines)
Lines 2-8 Link Here
2
# $FreeBSD: head/www/py-aiohttp/Makefile 553054 2020-10-22 18:03:18Z sunpoet $
2
# $FreeBSD: head/www/py-aiohttp/Makefile 553054 2020-10-22 18:03:18Z sunpoet $
3
3
4
PORTNAME=	aiohttp
4
PORTNAME=	aiohttp
5
PORTVERSION=	3.6.2
5
DISTVERSION=	3.7.4.post0
6
CATEGORIES=	www python
6
CATEGORIES=	www python
7
MASTER_SITES=	CHEESESHOP
7
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
Lines 14-20 Link Here
14
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
14
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
15
15
16
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}attrs>=17.3.0:devel/py-attrs@${PY_FLAVOR} \
16
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}attrs>=17.3.0:devel/py-attrs@${PY_FLAVOR} \
17
		${PYTHON_PKGNAMEPREFIX}chardet>=2.0<4.0:textproc/py-chardet@${PY_FLAVOR} \
17
		${PYTHON_PKGNAMEPREFIX}chardet>=2.0<5.0:textproc/py-chardet@${PY_FLAVOR} \
18
		${PYTHON_PKGNAMEPREFIX}multidict>=4.5:www/py-multidict@${PY_FLAVOR} \
18
		${PYTHON_PKGNAMEPREFIX}multidict>=4.5:www/py-multidict@${PY_FLAVOR} \
19
		${PYTHON_PKGNAMEPREFIX}async_timeout>=3.0<4.0:devel/py-async_timeout@${PY_FLAVOR} \
19
		${PYTHON_PKGNAMEPREFIX}async_timeout>=3.0<4.0:devel/py-async_timeout@${PY_FLAVOR} \
20
		${PYTHON_PKGNAMEPREFIX}yarl>=1.0<2.0:www/py-yarl@${PY_FLAVOR}
20
		${PYTHON_PKGNAMEPREFIX}yarl>=1.0<2.0:www/py-yarl@${PY_FLAVOR}
(-)ports/www/py-aiohttp/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1592851297
1
TIMESTAMP = 1616651454
2
SHA256 (aiohttp-3.6.2.tar.gz) = 259ab809ff0727d0e834ac5e8a283dc5e3e0ecc30c4d80b3cd17a4139ce1f326
2
SHA256 (aiohttp-3.7.4.post0.tar.gz) = 493d3299ebe5f5a7c66b9819eacdcfbbaaf1a8e84911ddffcdc48888497afecf
3
SIZE (aiohttp-3.6.2.tar.gz) = 1076923
3
SIZE (aiohttp-3.7.4.post0.tar.gz) = 1114888
(-)ports/www/py-aiohttp/files/patch-setup.py (-24 / +9 lines)
Lines 1-27 Link Here
1
Obtained from:	https://github.com/aio-libs/aiohttp/commit/d7db1b90c59ae49660d5b469f6186d088a6d190d
2
3
--- setup.py.orig	2019-10-09 16:52:31 UTC
1
--- setup.py.orig	2019-10-09 16:52:31 UTC
4
+++ setup.py
2
+++ setup.py
5
@@ -74,7 +74,7 @@ except IndexError:
3
@@ -88,6 +88,9 @@ tests_require = [
6
 install_requires = [
4
     "pytest-timeout",
7
     'attrs>=17.3.0',
5
     "async-generator",
8
     'chardet>=2.0,<4.0',
6
     "pytest-xdist",
9
-    'multidict>=4.5,<5.0',
7
+    "pytest-mock",
10
+    'multidict>=4.5,<6.0',
8
+    "trustme",
11
     'async_timeout>=3.0,<4.0',
9
+    "brotlipy",
12
     'yarl>=1.0,<2.0',
13
     'idna-ssl>=1.0; python_version<"3.7"',
14
@@ -104,9 +104,12 @@ NEEDS_PYTEST = {'pytest', 'test'}.intersection(sys.arg
15
 pytest_runner = ['pytest-runner'] if NEEDS_PYTEST else []
16
 
17
 tests_require = [
18
-    'pytest', 'gunicorn',
19
+    'pytest>=3.8.2', 'gunicorn',
20
     'pytest-timeout', 'async-generator',
21
     'pytest-xdist',
22
+    'pytest-mock',
23
+    'trustme',
24
+    'brotlipy',
25
 ]
10
 ]
26
 
11
27
 
12

Return to bug 254537