summaryrefslogtreecommitdiff
path: root/dev-python/aiosignal
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2024-12-14 07:51:37 +0100
committerMichał Górny <mgorny@gentoo.org>2024-12-14 08:36:41 +0100
commitee8c67883669bcf26ce64043c25320d6e543c6c6 (patch)
treed9cc0ced959e30b675adeb9421a6e68b9b4bb735 /dev-python/aiosignal
parent10a36682cd3304deb6908610f875957879f7e141 (diff)
downloadgentoo-ee8c67883669bcf26ce64043c25320d6e543c6c6.tar.gz
gentoo-ee8c67883669bcf26ce64043c25320d6e543c6c6.tar.bz2
gentoo-ee8c67883669bcf26ce64043c25320d6e543c6c6.zip
dev-python/aiosignal: Bump to 1.3.2
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/aiosignal')
-rw-r--r--dev-python/aiosignal/Manifest1
-rw-r--r--dev-python/aiosignal/aiosignal-1.3.2.ebuild39
2 files changed, 40 insertions, 0 deletions
diff --git a/dev-python/aiosignal/Manifest b/dev-python/aiosignal/Manifest
index d9ab33d5c797..fbb57435d7d6 100644
--- a/dev-python/aiosignal/Manifest
+++ b/dev-python/aiosignal/Manifest
@@ -1 +1,2 @@
DIST aiosignal-1.3.1.gh.tar.gz 26119 BLAKE2B 16112f674f20b97406eff16a6a9baca1ef414132ec53a67789e08347f06a462ff653c7a00d6865855f5fe0fd70ba4a2bebe286020fdf1942da41d43f72e67837 SHA512 c03454d1b855bb3e84d3ce07fb32d08855b42d1ca7723fd67d3b2ef1bc66038a31974fabda7561c90e2beaf4cdd2c28cc0463e43eb5d5c127df0cd187ae3c2e2
+DIST aiosignal-1.3.2.gh.tar.gz 27043 BLAKE2B 253022824866f47658fd5e2ebfc0e234e31541c38679695a2645ae0612888134edab3c5f36a01242db87c28ba37d50d45edfc782b48278860a72c3f3aadcdf73 SHA512 9a66e79d43e0aecd1195721db07d4e21da6ea9be81198b965471dd01beda44791d56400839f4ea30ba4d0c106f0b9bf6f91277c310c219669de45a4f874957e5
diff --git a/dev-python/aiosignal/aiosignal-1.3.2.ebuild b/dev-python/aiosignal/aiosignal-1.3.2.ebuild
new file mode 100644
index 000000000000..25050909b18c
--- /dev/null
+++ b/dev-python/aiosignal/aiosignal-1.3.2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2021-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="A list of registered asynchronous callbacks"
+HOMEPAGE="
+ https://pypi.org/project/aiosignal/
+ https://github.com/aio-libs/aiosignal/
+"
+SRC_URI="
+ https://github.com/aio-libs/aiosignal/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"
+
+RDEPEND="
+ >=dev-python/frozenlist-1.1.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ epytest -o addopts= -p asyncio
+}