dev-python/aiohttp: add 3.10.10
Closes: #4138 Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
f83dde373f
commit
85aef8e1e2
@ -606,12 +606,12 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
|
||||
|
||||
## Licenses
|
||||
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
|
||||
There are 2346 Ebuilds in total, 2332 of them have in total 2372 (43 different) licenses assigned.
|
||||
There are 2350 Ebuilds in total, 2336 of them have in total 2376 (43 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1334|
|
||||
|Apache-2.0|551|
|
||||
|Apache-2.0|555|
|
||||
|GPL-3|145|
|
||||
|BSD|124|
|
||||
|GPL-2|27|
|
||||
|
@ -1,5 +1,7 @@
|
||||
DIST aiohttp-3.10.10.tar.gz 7542993 BLAKE2B edc9808937892e2915b591a3d5b9e2be8401a67e6421ada8c49e27cfa1ee67283465d17e3c3a77f7579d4ed45df39884a2f9e336429ef7d64adf351ce7507a85 SHA512 c6928d989c110c323347b6f5b0a90c42e17924b4121455a240f5a15d87f939580640ba0f8d576f8254e484e5b631ec4562a2fb4e6c86402924b1892a6d72aff8
|
||||
DIST aiohttp-3.10.8.tar.gz 7540022 BLAKE2B 8407815a0f65035032c9c59174642784a9ad5845d6655c32f29369d3a7ffdd63d52310ec61ed3a106122a4aeb22ed0db5264a353b7e483bb63021cdd9526b5b6 SHA512 f19a58e698908faf164592037d57f1d133e064616b5552df26639a9a7248e90a960cb1b070dbbb90c058579cbdcc4edb72b2846bd20ab2867b4b0c670ddd177f
|
||||
DIST aiohttp-3.9.5.tar.gz 7504841 BLAKE2B f051ee88d45952219f72d542f1c6d0cc33c699c6c5fb5dbe3bc054ee4d0e03121b219c8c8524fd1236a8b878329b0997b8afe07d6c66074102d4a2052a8738ff SHA512 da11468a2f131275593395b052700a99cf79055a32d48327dca0f58547ad30add8cd0a375dbd831e2f06fe7a739183251e4ad69c16f3d141799bbed45a8a5dc4
|
||||
EBUILD aiohttp-3.10.10.ebuild 3168 BLAKE2B 0b9286551d1f38b6b70de5a4a33f34fdcd74c173bf78dedde9354122c65f7542ee706127066800047b7cb336f69be949f81848372ff5e1afef6347a8462850b7 SHA512 f30223ce9ee19b7b972e5cd23726974cdb91ba97047754b95845743be15edffec77853bb07c0bd738a64eb6b300d91d98007001052d5b98e3381af14ee25d090
|
||||
EBUILD aiohttp-3.10.8.ebuild 3168 BLAKE2B 0b9286551d1f38b6b70de5a4a33f34fdcd74c173bf78dedde9354122c65f7542ee706127066800047b7cb336f69be949f81848372ff5e1afef6347a8462850b7 SHA512 f30223ce9ee19b7b972e5cd23726974cdb91ba97047754b95845743be15edffec77853bb07c0bd738a64eb6b300d91d98007001052d5b98e3381af14ee25d090
|
||||
EBUILD aiohttp-3.9.5.ebuild 3259 BLAKE2B eb5844bc5a913f3a477d4a3afd4c0b457f9d2d665c5651aaead313f62b4f55ec685f520e0ced0081a93f4d12f324cae7e7529e4ea096450e6b1f423d89dedbbb SHA512 4c1278e2d3db9054a4facabdb27dd3c514b6dc7d8bc5648e81a5a6d3df8ee63002da08280e9f027cb007933378ade7bf895f950e4d7be660c935da553a1fd0f5
|
||||
MISC metadata.xml 490 BLAKE2B 5233af0b5e2668b1eb62278b05b62f24f1ab90f6d05b20dd9f1c5b54b846919c3fa28b843df28f5bfa320996d46de0e74c7a28bd0bef02aaaca14b1cec52baba SHA512 9b701c5c5a22b6aa94977a67bc40f3dc9df8337556952658a2a17ecaaa471cd7f7b5b8bf3a0088208087677555f0cbb8760c091b03b96ee70affe3e2b84cf6d5
|
||||
|
123
dev-python/aiohttp/aiohttp-3.10.10.ebuild
Normal file
123
dev-python/aiohttp/aiohttp-3.10.10.ebuild
Normal file
@ -0,0 +1,123 @@
|
||||
# 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_{11..13} )
|
||||
|
||||
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="amd64 arm arm64 x86"
|
||||
IUSE="+native-extensions test-rust"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/aiodns-3.2.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/aiohappyeyeballs-2.3.0[${PYTHON_USEDEP}]
|
||||
>=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.12.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="
|
||||
native-extensions? (
|
||||
dev-python/cython[${PYTHON_USEDEP}]
|
||||
)
|
||||
test? (
|
||||
dev-python/freezegun[${PYTHON_USEDEP}]
|
||||
www-servers/gunicorn[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-mock[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-rerunfailures[${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() {
|
||||
if [[ ! -d tools && ${EPYTHON} != pypy3 ]] && use native-extensions
|
||||
then
|
||||
# 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
|
||||
fi
|
||||
}
|
||||
|
||||
python_compile() {
|
||||
# implicitly disabled for pypy3
|
||||
if ! use native-extensions; then
|
||||
local -x AIOHTTP_NO_EXTENSIONS=1
|
||||
fi
|
||||
|
||||
distutils-r1_python_compile
|
||||
}
|
||||
|
||||
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
|
||||
)
|
||||
|
||||
# upstream unconditionally blocks building C extensions
|
||||
# on PyPy3 but the test suite needs an explicit switch
|
||||
if [[ ${EPYTHON} == pypy3 ]] || ! use native-extensions; then
|
||||
local -x AIOHTTP_NO_EXTENSIONS=1
|
||||
fi
|
||||
|
||||
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
|
||||
local -x PYTEST_PLUGINS=pytest_mock,xdist.plugin
|
||||
rm -rf aiohttp || die
|
||||
epytest -m "not internal and not dev_mode" \
|
||||
-p rerunfailures --reruns=5
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user