commit:     a85d92e65cdddcd54047fe71970ef49df05c6181
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 12 14:57:22 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Apr 12 16:53:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a85d92e6

dev-python/aiohttp: Bump to 3.9.4

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/aiohttp/Manifest             |   1 +
 dev-python/aiohttp/aiohttp-3.9.4.ebuild | 111 ++++++++++++++++++++++++++++++++
 2 files changed, 112 insertions(+)

diff --git a/dev-python/aiohttp/Manifest b/dev-python/aiohttp/Manifest
index a4b8b3ee4094..792e71ab48ef 100644
--- a/dev-python/aiohttp/Manifest
+++ b/dev-python/aiohttp/Manifest
@@ -1 +1,2 @@
 DIST aiohttp-3.9.3.tar.gz 7499669 BLAKE2B 
0712df73af60cc9cbf12f0a4e063b6aa6da1b19b0668effe16672a4b7ca3f24cc831218ec8d4672cd86acd4335a75e16f94133dbb1bf783baf8ed96e471f3eec
 SHA512 
6236f27b6def0c3bba1b5fc59f4af74f8076aa369cf5c1b9bd9ff9dee1c71ee49387ded812875da9450130e92d2091fd01f0608b25b03ff37e99162b89120fd7
+DIST aiohttp-3.9.4.tar.gz 7500720 BLAKE2B 
1f41e481590425c16ef9e797ecc78e08d00fda65b40c38e34226ada969f3114cae3f6953980d23b0e96e284f6e49fd0a84aa93c6b7a666d60690e9a9fd9c41b2
 SHA512 
e26e7148602d72c77fe46e0596614b448f38a9014834a72c4131d8b315dbbd401ce4e1a403ef35ea7a9ba7fafaddc42031d38b93b45464accdedf26ba99fc960

diff --git a/dev-python/aiohttp/aiohttp-3.9.4.ebuild 
b/dev-python/aiohttp/aiohttp-3.9.4.ebuild
new file mode 100644
index 000000000000..a4d57535e7e2
--- /dev/null
+++ b/dev-python/aiohttp/aiohttp-3.9.4.ebuild
@@ -0,0 +1,111 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="HTTP client/server for asyncio"
+HOMEPAGE="
+       https://github.com/aio-libs/aiohttp/
+       https://pypi.org/project/aiohttp/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+IUSE="test-rust"
+
+RDEPEND="
+       >=dev-python/aiosignal-1.1.2[${PYTHON_USEDEP}]
+       >=dev-python/attrs-17.3.0[${PYTHON_USEDEP}]
+       dev-python/brotlicffi[${PYTHON_USEDEP}]
+       >=dev-python/frozenlist-1.1.1[${PYTHON_USEDEP}]
+       >=dev-python/multidict-4.5.0[${PYTHON_USEDEP}]
+       >=dev-python/yarl-1.0[${PYTHON_USEDEP}]
+       $(python_gen_cond_dep '
+               <dev-python/async-timeout-5[${PYTHON_USEDEP}]
+               >=dev-python/async-timeout-4.0[${PYTHON_USEDEP}]
+       ' 3.10)
+"
+BDEPEND="
+       dev-python/cython[${PYTHON_USEDEP}]
+       test? (
+               dev-python/freezegun[${PYTHON_USEDEP}]
+               www-servers/gunicorn[${PYTHON_USEDEP}]
+               dev-python/pytest-forked[${PYTHON_USEDEP}]
+               dev-python/pytest-mock[${PYTHON_USEDEP}]
+               dev-python/pytest-xdist[${PYTHON_USEDEP}]
+               dev-python/re-assert[${PYTHON_USEDEP}]
+               $(python_gen_cond_dep '
+                       dev-python/time-machine[${PYTHON_USEDEP}]
+               ' 'python3*')
+               test-rust? (
+                       dev-python/trustme[${PYTHON_USEDEP}]
+               )
+       )
+"
+
+DOCS=( CHANGES.rst CONTRIBUTORS.txt README.rst )
+
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+src_prepare() {
+       # increase the timeout a little
+       sed -e '/abs=/s/0.001/0.01/' -i tests/test_helpers.py || die
+       # xfail_strict fails on py3.10
+       sed -i -e '/--cov/d' -e '/xfail_strict/d' setup.cfg || die
+       sed -i -e 's:-Werror::' Makefile || die
+
+       distutils-r1_src_prepare
+}
+
+python_configure_all() {
+       # workaround missing files
+       mkdir tools || die
+       > requirements/cython.txt || die
+       > tools/gen.py || die
+       chmod +x tools/gen.py || die
+       # force rehashing first
+       emake requirements/.hash/cython.txt.hash
+       > .update-pip || die
+       > .install-cython || die
+       emake cythonize
+}
+
+python_test() {
+       local EPYTEST_IGNORE=(
+               # proxy is not packaged
+               tests/test_proxy_functional.py
+               # python_on_whales is not packaged
+               tests/autobahn/test_autobahn.py
+       )
+
+       local EPYTEST_DESELECT=(
+               # Internet
+               tests/test_client_session.py::test_client_session_timeout_zero
+               # broken by irrelevant deprecation warnings
+               tests/test_circular_imports.py::test_no_warnings
+               # TODO
+               tests/test_client_session.py::test_request_tracing_url_params
+       )
+
+       case ${EPYTHON} in
+               pypy3)
+                       # upstream unconditionally blocks building C extensions
+                       # on PyPy3 but the test suite needs an explicit switch,
+                       # sigh
+                       local -x AIOHTTP_NO_EXTENSIONS=1
+                       ;;
+       esac
+
+       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+       local -x PYTEST_PLUGINS=pytest_mock,xdist.plugin,pytest_forked
+       rm -rf aiohttp || die
+       epytest --forked -m "not internal and not dev_mode"
+}

Reply via email to