bump toonapi-0.2.1

This commit is contained in:
Andreas Billmeier 2021-10-02 14:09:29 +02:00 committed by Andreas Billmeier
parent 113c340970
commit e93834b4d1
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 36 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST toonapi-0.2.0.tar.gz 13882 BLAKE2B e8668ebe825d6a3634d215a96e0bd45e76e937a943a28baa09667302f5721019735440abae2e1c77dc7a2b4354bf65d72f8c576c48b418fd9609b8251df427a2 SHA512 7078264ed3a576e83846f6af227db0207e54a7779faa48bcadb2e22819a158545fc3280c43af99d8bb83e7c8b93927d15d3f0f5ee3c360c9d56eafecbbc8f66f
DIST toonapi-0.2.1.tar.gz 13875 BLAKE2B 4a577b942ac629dd0a7b2eba20628dace802c62bfaa6b04e5626276a0ec284702d0213037f76a9945688ac0a176206dfaea0414acc3df1b09c29eb791af52d79 SHA512 478d40645a9ce64c95a0e2ee46eff19f4a303e232de36999954077d457464d1a82573976ca4c6acc39cf99ff853dac49bb5585cde08d9126db4d89ec0a34fdc0
EBUILD toonapi-0.2.0.ebuild 821 BLAKE2B 483bd38fc9379fcfb5e9e9469d17ea64fa90da148e4e63f47987f08d0538f32aab89c42bb44af0441b7a2df532e33c824d7258bd5fcff005bdeb25c8d7ac29b6 SHA512 02f21309cd8af1406d73fa31f1d76e03dbf88c918cb3bd816dbada0a3423583e9a06ea1380a817fa29bfa9a72068e9a748446c664df30d40188f798d79870e7f
EBUILD toonapi-0.2.1.ebuild 829 BLAKE2B adbe1934735ea53c4fb0e757f7f4267d442a3bc1bd43e48b81cb0956ede5a2289aa9f62a1e7e27c14fb36d18ef1c3328a0799fc6c7216e4d1c8cc3d82325e1db SHA512 b6a5ccd6f17d19e1cc1ef1af8f2757d576e550dd8340de5e6459991b0203a8c182c5e56a1b9fd9d21d14f6c0dc857b1f5c90eb93fcc00368338c4e354ba1f19e
MISC metadata.xml 454 BLAKE2B f9d5e561fb4db04f0ba5f1c7512e4ee211c78e036f6736b65f1254c88a47b872971f2caefa0feecad58d03760be57fccf0d54e8f5727eebb74a92f318b8df483 SHA512 58bee28b3f2e62395fb3bb2a172348c6c45ef9bc53eaf0317d40a5d30b5963cc33a986db40de2badeb713726d828d0f4c021cd9d6f875a37fad252cd5736230e

View File

@ -0,0 +1,34 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Asynchronous Python client for the Quby ToonAPI."
HOMEPAGE="https://github.com/frenck/python-toonapi https://pypi.org/project/toonapi/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}]
>=dev-python/backoff-1.9.0[${PYTHON_USEDEP}]
dev-python/yarl[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}