add pyisy-2.0.2

This commit is contained in:
Andreas Billmeier 2020-05-09 13:00:57 +02:00
parent b7db4a6335
commit 7a784c40d8
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 49 additions and 0 deletions

View File

@ -26,6 +26,7 @@
* add devolo-home-control-api-0.10.0
* bump pymyq-2.0.2
* bump plexwebsocket-0.0.8
* add pyisy-2.0.2
2020-05-03 homeassistant-0.109.3
* adopting semantic versioning in hass-nabucasa

View File

@ -0,0 +1,3 @@
DIST pyisy-2.0.2.tar.gz 40080 BLAKE2B 90db789106b0c468e06b1920975de8850090caad211927bc480c7c1bb0928c42c0485e100f79fa2ae246ac4a80676f92d535d4894f83351446004742281cff45 SHA512 46eb630a0abb1c3b6a574d5b36f208bcd0328783272123e20140bf51881b74d0e200032d5f8ad5657f184cc03e4881e04e7d7cab8a19cc428f88d8a0b4e7331a
EBUILD pyisy-2.0.2.ebuild 720 BLAKE2B 7797d3a42ecf11bb0b6e05ab2d159321b0a5d588a6ca0aa98973ebdc5c82f96708a024135d453a12891028a7b3618f0f8e5e8d5875466b98176c0eb922ba66ba SHA512 0f02cc22da9b88fef89548a76f23d654979c8a778e3f03aed067db7584f9d91de28ad009ed3daf62686d489e2a211a76cb86c8c9407873b4dce56f7a49cf90df
MISC metadata.xml 447 BLAKE2B b0845c5d3d3df0124b3eb781caf9181e47c14bddb9c890f387d662ca8556fc658c7bfa70ce5f69233edae9579c7c1a805cb702b183d81ac660773a6567def57e SHA512 7154abd8055f817665f5acbcf78625912b01bb3ce9f92dd64e9358ce8c1bff2e18530a0e902e86a068008f652f30bf80cd4a52801b4524890f7151fbec33e632

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">pyisy</remote-id>
<maintainer status="unknown">
<email>automicus@gmail.com</email>
<name>Ryan Kraus</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_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Python module to talk to ISY994 from UDI."
HOMEPAGE="https://github.com/automicus/PyISY https://pypi.org/project/pyisy/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${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
}