add toonapi-0.1.0

This commit is contained in:
Andreas Billmeier 2020-06-27 14:46:23 +02:00 committed by Andreas Billmeier
parent 03a7875d37
commit 8c2370b682
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 1 deletions

View File

@ -14,9 +14,9 @@
* bump numpy-1.19.0
* bump axis-33
* bump python-gammu-3.0
* add toonapi-0.1.0
* add backoff-1.10.0
* bump hass-nabucasa-0.34.7
* add toonapi-0.1.0
2020-06-21
* bump ptvsd-4.3.2

View File

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

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">toonapi</remote-id>
<maintainer status="unknown">
<email>opensource@frenck.dev</email>
<name>Franck Nijhof</name>
</maintainer>
</upstream>
</pkgmetadata>

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
}