add pyrisco-0.2.1

This commit is contained in:
Andreas Billmeier 2020-08-24 22:38:36 +02:00 committed by Andreas Billmeier
parent e193ce0a58
commit 5334026210
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 49 additions and 0 deletions

View File

@ -17,6 +17,7 @@
* bump home-assistant-frontend-20200820.0
* add pykodi-0.1.0
* bump PlexAPI-4.1.0
* add pyrisco-0.2.1
2020-08-16
* update esphome-1.15.0_beta3 (experimental)

View File

@ -0,0 +1,3 @@
DIST pyrisco-0.2.1.tar.gz 5643 BLAKE2B e0a5829d2d4ad5b5563be3b3d95bffbe137c57a8a90ffa8aabb6f96e3949ee4f335c5917684706f428dd0e413429bdd8986cbb5f4edb6a41de9748cb78fef0a7 SHA512 cfc48f804d4f6f7759a3c63c19fd0e26acfbaecfd1dc0d049964cfeb0f8ed671464b305dcc1687341157324178df394ec0c0e9802c4338f2da938963cbdda553
EBUILD pyrisco-0.2.1.ebuild 722 BLAKE2B 468e730c03388f4781c7918d7691d62dd7e7a13f98c6c26bc4f0dff47950ff98e45f829aa2def6179e5d257699bfe0c2ebebf32cdfffe2432f77544c177857fc SHA512 ff19f34059464514f976187dabc92f80fea3f0b3c82e428fcd1de1cd03dd3174b483c0cc9d454c756174d6e38fad9d4092581041e1ea91b77fd5e3c1d3a7212c
MISC metadata.xml 447 BLAKE2B d28dd36c175659ca0fd7a1fd0abedc68ad458308c8a1aab332205e4d70d71ef1246e00e6f0f3fe9cc01820beca473411503fbad8d787414dced107d8bd7f6094 SHA512 97bc379be1563911d532b48d5a5455d9790ae5e5c5d1f876e2e69d51bfd950a410156cacd8418f87854997743e97fb6b4725cbc72b2a913b3f767abb587a964a

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

View File

@ -0,0 +1,30 @@
# 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="A python library to communicate with Risco Cloud."
HOMEPAGE="https://github.com/OnFreund/PyRisco https://pypi.org/project/pyrisco/"
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[${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
}