dev-python/janus: add 1.1.0

Signed-off-by: Alfred Wingate <parona@protonmail.com>
This commit is contained in:
Alfred Wingate 2024-11-03 23:23:55 +02:00
parent b9815e1fff
commit 3f01527097
No known key found for this signature in database
GPG Key ID: A12750536B5E7010
2 changed files with 30 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST janus-1.0.0.tar.gz 19043 BLAKE2B 0a70e47525d5dbaac019428773dea03bf6fea452aa542be3419b369674b8e06245f3e5566672b2533bfaa8b658a1f591aed19086d54652ef5f57753f96355e82 SHA512 d66899adad12cc1100a20cb75d8e146321ef947bde996a07490158a5f34c39421bb1a5b08ac87679264a6bee1d3dc9f425fa29d52199626d322fe4462ed8f1f3
DIST janus-1.1.0.tar.gz 18756 BLAKE2B c17a0422bea72eced58b8bd283786e2ec47976baa8e4ecb43331429490fc2dd1c49500a8a5e4cbe9eed6103e1aefb02e06fc8c92f3de61903ea3fc2508639975 SHA512 3ebfd325e64a249309b11e22790958e5e4643c76ac4bfb6c7dfeffb57046e6afcbe47b9a7e12a84a1bbfb1ec5960fd75127b051d19ad098d09b2ebd2a66aedeb

View File

@ -0,0 +1,29 @@
# Copyright 1999-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} )
inherit distutils-r1 pypi
DESCRIPTION="Thread-safe asyncio-aware queue for Python"
HOMEPAGE="https://github.com/aio-libs/janus"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND="
test? (
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
python_prepare_all() {
sed -i -e '/\[tool:pytest\]/,$ { /^addopts =/d }' setup.cfg || die
distutils-r1_python_prepare_all
}