git: 94e2a2cf5f78 - main - devel/py-tartiflette-aiohttp: Allow build with py-aiohttp 3.9.0+
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 14 Dec 2023 06:06:23 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=94e2a2cf5f787ba491adccf9ecac89d63769a37e commit 94e2a2cf5f787ba491adccf9ecac89d63769a37e Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2023-12-14 05:36:34 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2023-12-14 05:48:29 +0000 devel/py-tartiflette-aiohttp: Allow build with py-aiohttp 3.9.0+ - Bump PORTREVISION for package change --- devel/py-tartiflette-aiohttp/Makefile | 3 ++- devel/py-tartiflette-aiohttp/files/patch-setup.py | 11 +++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/devel/py-tartiflette-aiohttp/Makefile b/devel/py-tartiflette-aiohttp/Makefile index 85c16ed2e252..bd002fafb052 100644 --- a/devel/py-tartiflette-aiohttp/Makefile +++ b/devel/py-tartiflette-aiohttp/Makefile @@ -1,5 +1,6 @@ PORTNAME= tartiflette-aiohttp PORTVERSION= 1.4.1 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -10,7 +11,7 @@ WWW= https://github.com/tartiflette/tartiflette-aiohttp LICENSE= MIT -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}aiohttp>=3.5.4<3.9.0:www/py-aiohttp@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}aiohttp>=3.5.4:www/py-aiohttp@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tartiflette>=0.12.0<2.0.0:devel/py-tartiflette@${PY_FLAVOR} USES= python diff --git a/devel/py-tartiflette-aiohttp/files/patch-setup.py b/devel/py-tartiflette-aiohttp/files/patch-setup.py new file mode 100644 index 000000000000..e0fbc2fb85f4 --- /dev/null +++ b/devel/py-tartiflette-aiohttp/files/patch-setup.py @@ -0,0 +1,11 @@ +--- setup.py.orig 2021-11-15 10:00:19 UTC ++++ setup.py +@@ -37,7 +37,7 @@ setup( + keywords="api graphql protocol api rest relay tartiflette dailymotion", + packages=_PACKAGES, + install_requires=[ +- "aiohttp>=3.5.4,<3.9.0", ++ "aiohttp>=3.5.4", + "async_generator;python_version=='3.6.*'", + "tartiflette>=0.12.0,<2.0.0", + ],