bump toonapi-0.2.0

This commit is contained in:
Andreas Billmeier 2020-08-10 21:36:56 +02:00 committed by Andreas Billmeier
parent 961fce5806
commit 9b02621e2f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 35 additions and 0 deletions

View File

@ -7,6 +7,7 @@
* bump pyaehw4a1-0.3.9
* bump pyhomematic-0.1.68
* bump pyatmo-4.0.0
* bump toonapi-0.2.0
2020-08-02
* bump protobuf-3.12.4

View File

@ -1,3 +1,5 @@
DIST toonapi-0.1.0.tar.gz 13827 BLAKE2B be2429271922d3fce779c0d5ec40346bf8931cf80650a03ee224cc18e54a86140e0f3d325e7d4461b0aefbc2877cedfd279b87527720b0f16470ee359b2d7841 SHA512 bb2d211b86e5bb033dfdd0a582ca7375507b7864927cc40984ff44d34c06f4ef81664c63e8cbf4490bd356800964761731257c7eb2ab710e355cff3c0f8f8cb9
DIST toonapi-0.2.0.tar.gz 13882 BLAKE2B e8668ebe825d6a3634d215a96e0bd45e76e937a943a28baa09667302f5721019735440abae2e1c77dc7a2b4354bf65d72f8c576c48b418fd9609b8251df427a2 SHA512 7078264ed3a576e83846f6af227db0207e54a7779faa48bcadb2e22819a158545fc3280c43af99d8bb83e7c8b93927d15d3f0f5ee3c360c9d56eafecbbc8f66f
EBUILD toonapi-0.1.0.ebuild 816 BLAKE2B ae6b15d5c7d32c61b6a296378dd3f421193f0c67bdb04c45d72f4caa2bdd183bf91893fd40d56eaeb618ae3e56abdfcd7065f0e5e7f7f68aa6e2e0f5ad76506b SHA512 538c0f3370f3f9fdebb9340cbd693e22b5a62e4f83bcaefc2f8d1f7297e1234f993f011f36c1d90ad2391faf3088e24b351e13b3ef85934141205cac02620497
EBUILD toonapi-0.2.0.ebuild 816 BLAKE2B ae6b15d5c7d32c61b6a296378dd3f421193f0c67bdb04c45d72f4caa2bdd183bf91893fd40d56eaeb618ae3e56abdfcd7065f0e5e7f7f68aa6e2e0f5ad76506b SHA512 538c0f3370f3f9fdebb9340cbd693e22b5a62e4f83bcaefc2f8d1f7297e1234f993f011f36c1d90ad2391faf3088e24b351e13b3ef85934141205cac02620497
MISC metadata.xml 454 BLAKE2B f9d5e561fb4db04f0ba5f1c7512e4ee211c78e036f6736b65f1254c88a47b872971f2caefa0feecad58d03760be57fccf0d54e8f5727eebb74a92f318b8df483 SHA512 58bee28b3f2e62395fb3bb2a172348c6c45ef9bc53eaf0317d40a5d30b5963cc33a986db40de2badeb713726d828d0f4c021cd9d6f875a37fad252cd5736230e

View File

@ -0,0 +1,32 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
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 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}]
>=dev-python/backoff-1.9.0[${PYTHON_USEDEP}]
dev-python/yarl[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
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
}