dev-python/aiostream: Bump to 0.8.1

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-09-17 04:58:40 +02:00
parent 215a370f52
commit 177e36dfb6
2 changed files with 37 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST aiostream-0.8.0.gh.tar.gz 47850 BLAKE2B a40721d0a487692bad082b499a5070f6566302b6b86d55c786814194511667e3491ee1f4c398dade6aaf45091a19ff63a418535cbbcebd8d5b81797b7eefbc38 SHA512 7882e3527c3e180b8afe9d14751beabf7839faff028dc8479756eafe6374aa6cfd28a363207bc29ba512d4f742a1abf18b6b720d0417f20fcf7b8d27ded4dccc
DIST aiostream-0.8.1.gh.tar.gz 48039 BLAKE2B 325aea7953b3a778e375bc95d44084fa0ba3d408be2c8dc97cbe067e72ee74b4d07dc320a6cb2c4c31e4064f784f0e782f1c8f73ed5538214a2afa6d37d5cd4f SHA512 f1e6c933a574e62856428c09df475bc5a8cb1b98accd29e80d65adc40ee161768bc7a007e275b89ef85b54c8e958435b32e4b28ae72e039c3a6b1718fcd6f2e3

View File

@@ -0,0 +1,36 @@
# Copyright 2022-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{12..15} )
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
}