commit: e00ec1a15977f2f15da17b5dfeee6644992210f4
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 26 03:21:08 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jun 26 08:58:12 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e00ec1a1
dev-python/aiostream: Bump to 0.7.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/aiostream/Manifest | 1 +
dev-python/aiostream/aiostream-0.7.0.ebuild | 36 +++++++++++++++++++++++++++++
2 files changed, 37 insertions(+)
diff --git a/dev-python/aiostream/Manifest b/dev-python/aiostream/Manifest
index 67c45aadcaf9..b1d032c3b649 100644
--- a/dev-python/aiostream/Manifest
+++ b/dev-python/aiostream/Manifest
@@ -1 +1,2 @@
DIST aiostream-0.6.4.gh.tar.gz 46382 BLAKE2B
2ec17e03a8a41deb2473f655fa74b9a9f60c14e2343f09e24c271579b73920584ab509e9a87978345f1adcd3183e5e38d76a9300bd6b411cbb949e5af80a0f7f
SHA512
6c26afb017fb4322b2d381fc4c82060d3b5a71c352b275e36b83192464c434c68a060247db740fc2f745a735c3407503932378185cd46c4c56f1286c5bfae62d
+DIST aiostream-0.7.0.gh.tar.gz 46653 BLAKE2B
d64b7306129d0047005a9ef981e94c2663caafd8cd3658e906d85b74a0e344671ef6f196790b24b1952d457af33a406bd78eb3a6608db7ce83404950f9e5c09b
SHA512
dad58851680ab1d05f234bdd193112403297c82066e8d0fc2fcc7c1520853d7e4f767f6ebc49658d305a7c360603cde3fb7f5938ac03da1daa6e8b31473ffb35
diff --git a/dev-python/aiostream/aiostream-0.7.0.ebuild
b/dev-python/aiostream/aiostream-0.7.0.ebuild
new file mode 100644
index 000000000000..15a8eba8541e
--- /dev/null
+++ b/dev-python/aiostream/aiostream-0.7.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2022-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
+
+inherit distutils-r1
+
+DESCRIPTION="Generator-based operators for asynchronous iteration"
+HOMEPAGE="
+ https://pypi.org/project/aiostream/
+ https://github.com/vxgmichel/aiostream/
+"
+SRC_URI="
+ https://github.com/vxgmichel/aiostream/archive/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+
+RDEPEND="
+ dev-python/typing-extensions[${PYTHON_USEDEP}]
+"
+
+EPYTEST_PLUGINS=( pytest-asyncio )
+distutils_enable_tests pytest
+
+src_prepare() {
+ sed -i -e 's:--cov aiostream::' \
+ pyproject.toml || die
+ distutils-r1_src_prepare
+}