commit: ce2235b184985d584cd4d284d7b777d3d02668ec
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 10 06:23:07 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Mar 10 06:31:06 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce2235b1
dev-python/asyncstdlib: Bump to 3.13.1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/asyncstdlib/Manifest | 1 +
dev-python/asyncstdlib/asyncstdlib-3.13.1.ebuild | 32 ++++++++++++++++++++++++
2 files changed, 33 insertions(+)
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
+}