add pykodi-0.1.0

This commit is contained in:
Andreas Billmeier 2020-08-24 22:33:36 +02:00 committed by Andreas Billmeier
parent 7419d5b688
commit 2ce44bf649
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 52 additions and 0 deletions

View File

@ -15,6 +15,7 @@
* bump hlk-sw16-0.0.9
* bump broadlink-0.14.1
* bump home-assistant-frontend-20200820.0
* add pykodi-0.1.0
2020-08-16
* update esphome-1.15.0_beta3 (experimental)

View File

@ -0,0 +1,3 @@
DIST pykodi-0.1.0.tar.gz 5958 BLAKE2B 5ef21e16cea4cb7a33247eaaf8abaf9a023a74943952ed669c80008a9284dea24930bc8fada601cd22d5eafc7acb46fb99d15812702b9abd2c2c3afae36c0160 SHA512 2a99d180730b58c432827923e34759a2a09ef0149f0f6e2c91e14d9b54e7544962e284c39976de9ad8a1f159063b1276d82312f896640381bfc97b2d441aba37
EBUILD pykodi-0.1.0.ebuild 855 BLAKE2B 2968b72bf78b40f520df4bf371a29a635baedc4db6ce6e3945e747f2ce101a13f5a2f8bf804c358cc789aeccfafdc7e89437e416268dde48f41f0da50ac908db SHA512 55faae316a527596bf5b00b826d82a892d6c257da095889ad5b6dc1e5aded3f1839bbca541166d3c78d7dda7b8b4c988ac4c73314931c3d57b68e6ad35ac529f
MISC metadata.xml 446 BLAKE2B 129131126d8e25804cceba5601ff41292ee22c1657535d45633765134fa73e7aee3b542dca9ed71605985342de34c9f2cafc1f6b042840036446d6887307dd34 SHA512 9630642a1da9b3731ea8d9aabe871b8c07c8665ed9f68cb45ed0d8aedc9032c9f1b4f386c73afb9e57e4fa70a0097edcdad4db53cb8e5d5fe3592277d4f17640

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">pykodi</remote-id>
<maintainer status="unknown">
<email>onfreund@gmail.com</email>
<name>On Freund</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,33 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
DESCRIPTION="An async python interface for Kodi over JSON-RPC."
HOMEPAGE="https://github.com/OnFreund/PyKodi https://pypi.org/project/pykodi/"
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/jsonrpc-base[${PYTHON_USEDEP}]
dev-python/jsonrpc-async[${PYTHON_USEDEP}]
dev-python/jsonrpc-websocket[${PYTHON_USEDEP}]
dev-python/aiohttp[${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
}