dev-python/multidict: Bump to 6.2.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-03-18 07:35:13 +01:00
parent 6d57f7965b
commit 9ac5a6d0b5
2 changed files with 62 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST multidict-6.1.0.gh.tar.gz 73800 BLAKE2B 9e3531633b0a35bbb8a97ec2dfe040080fe67efae3b3a16436b0984d6c3a4dc38df1cf5b91bd7b1f750f7a27bd2726667935fa30eefa7b070534fd70f390ee8a SHA512 48e97f442c28c2dfc0b5e19376ae9c8c46b20939ac4f72c07b650450286156dcbe03166f7d238d7a77b438a154022e9d98a38a4c0596aefab7d40fbdda0687dc
DIST multidict-6.2.0.gh.tar.gz 82115 BLAKE2B 37b509d409278396f52e39d63b671b3b447039f2f98fa6f1b80b1ff4189105ca5a80b9027e8fcfbb95734b3c5531c1fd4a0cbfd778cdfab85ea5c127fb735717 SHA512 211dfe4900d815be1365284e18183f82f34783b777cbca929e2f8468b6748e237825febe9baa7a6d3e2a97476a8c6e061d2d7d2de94c48a2c526809224379656

View File

@@ -0,0 +1,61 @@
# Copyright 1999-2025 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..13} pypy3 pypy3_11 )
inherit distutils-r1
DESCRIPTION="multidict implementation"
HOMEPAGE="
https://github.com/aio-libs/multidict/
https://pypi.org/project/multidict/
"
SRC_URI="
https://github.com/aio-libs/${PN}/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
IUSE="+native-extensions"
RDEPEND="
$(python_gen_cond_dep '
>=dev-python/typing-extensions-4.1.0[${PYTHON_USEDEP}]
' 3.10)
"
distutils_enable_tests pytest
python_prepare_all() {
# don't enable coverage or other pytest settings
sed -i -e '/cov/d' pytest.ini || die
distutils-r1_python_prepare_all
}
python_compile() {
if ! use native-extensions || [[ ${EPYTHON} == pypy3* ]]; then
local -x MULTIDICT_NO_EXTENSIONS=1
fi
distutils-r1_python_compile
}
python_test() {
local EPYTEST_IGNORE=(
tests/test_multidict_benchmarks.py
)
rm -rf multidict || die
local cext=--c-extensions
if ! use native-extensions || [[ ${EPYTHON} == pypy3* ]]; then
cext=--no-c-extensions
fi
epytest "${cext}"
}