summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-03-10 07:23:07 +0100
committerMichał Górny <mgorny@gentoo.org>2025-03-10 07:31:06 +0100
commitce2235b184985d584cd4d284d7b777d3d02668ec (patch)
tree74a7c786d04660a1f87fd4164fce7a42928a0adc /dev-python
parent18ad4195b40b66ed9ae212ee120064ccc59069d3 (diff)
downloadgentoo-ce2235b184985d584cd4d284d7b777d3d02668ec.tar.gz
gentoo-ce2235b184985d584cd4d284d7b777d3d02668ec.tar.bz2
gentoo-ce2235b184985d584cd4d284d7b777d3d02668ec.zip
dev-python/asyncstdlib: Bump to 3.13.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/asyncstdlib/Manifest1
-rw-r--r--dev-python/asyncstdlib/asyncstdlib-3.13.1.ebuild32
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/asyncstdlib/Manifest b/dev-python/asyncstdlib/Manifest
index a057257811f7..1613979fea4c 100644
--- a/dev-python/asyncstdlib/Manifest
+++ b/dev-python/asyncstdlib/Manifest
@@ -1 +1,2 @@
DIST asyncstdlib-3.13.0.tar.gz 49688 BLAKE2B 128ceb8ddd3c3b06285d6e2887b285f04485bff6fd32855f187f5b98e878d9bf6f53a0206b505cc440783f0649b31a8b69af8857f844526bbf791dc2e581265e SHA512 371d75bfa4b84451aa1a0cb3ece31fd36b97bad0b647bf62d2dbfa584227dd3e8409811b295f1d9c93cf33d6ee2ae8a1d4567b95c7bd368fe457416ea4d6981e
+DIST asyncstdlib-3.13.1.tar.gz 49752 BLAKE2B 094f04325a1dbf0b6a354dcf2f89bc707a8ae1725c12888a88970b6f3e4e75ac70d60cf9f5198cc91736eb1e8bff97f7474e0dcf81de95887bb066cc305bbbb5 SHA512 53358cef42065d6f8eea264684ad5d1a748052740c58c51cc42fc26173dfadf03fea230a2d74e47328f40a23aa9c5f2764a9049cc687e9ddff7bf60827be0925
diff --git a/dev-python/asyncstdlib/asyncstdlib-3.13.1.ebuild b/dev-python/asyncstdlib/asyncstdlib-3.13.1.ebuild
new file mode 100644
index 000000000000..ccd609efdb8c
--- /dev/null
+++ b/dev-python/asyncstdlib/asyncstdlib-3.13.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 2021-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="The missing async toolbox"
+HOMEPAGE="
+ https://github.com/maxfischer2781/asyncstdlib/
+ https://pypi.org/project/asyncstdlib/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="
+ test? (
+ dev-python/typing-extensions[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ epytest
+}