add pyisy-2.1.0

This commit is contained in:
Andreas Billmeier 2020-10-31 09:42:09 +01:00 committed by Andreas Billmeier
parent 6b36f72088
commit 499b97548c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 1 deletions

View File

@ -1,4 +1,7 @@
20202-10-30
2020-10-31
* add pyisy-2.1.0
2020-10-30
* bump HATasmota-0.0.25
* bump home-assistant-frontend-20201021.4
* bump greeclimate-0.9.2

View File

@ -1,3 +1,5 @@
DIST pyisy-2.0.2.tar.gz 40080 BLAKE2B 90db789106b0c468e06b1920975de8850090caad211927bc480c7c1bb0928c42c0485e100f79fa2ae246ac4a80676f92d535d4894f83351446004742281cff45 SHA512 46eb630a0abb1c3b6a574d5b36f208bcd0328783272123e20140bf51881b74d0e200032d5f8ad5657f184cc03e4881e04e7d7cab8a19cc428f88d8a0b4e7331a
DIST pyisy-2.1.0.tar.gz 44063 BLAKE2B 34b1b5cebe2b9156272d1bdd2d56c8804587c82a85ca8f2fb7d4a9e3073a9701d68b86a1ff7ad1a42e9608ee1ac27fddb11f62e8ba0306c53a8ef7280e4e8f8e SHA512 b73bbd2a6c80dbfb2981545ec1ac9cca59da310de45328ee11216bcaab53c23c7bbbbb41e05f7098cb02d3584e9033187c7d18bc9ec0ac6db8b67bb481089d3f
EBUILD pyisy-2.0.2.ebuild 720 BLAKE2B 7797d3a42ecf11bb0b6e05ab2d159321b0a5d588a6ca0aa98973ebdc5c82f96708a024135d453a12891028a7b3618f0f8e5e8d5875466b98176c0eb922ba66ba SHA512 0f02cc22da9b88fef89548a76f23d654979c8a778e3f03aed067db7584f9d91de28ad009ed3daf62686d489e2a211a76cb86c8c9407873b4dce56f7a49cf90df
EBUILD pyisy-2.1.0.ebuild 709 BLAKE2B 98440f640154ef637df48ba6d9e7f0c52d4b48b69eb5a17939adc5f55b22d37c76146b9290a92dcbe7dc9eef0d918f700f0d9fdec36b0a3fd655e4340b6ffaba SHA512 2f7c26de826d4487ae0f266708d4f841b8b6da722fc77ff30bc1fd1aae166159275db8925aa50f6a0e03c32893d95d2e2d4d2ca8c281925e6180b1b6b620c4ab
MISC metadata.xml 447 BLAKE2B b0845c5d3d3df0124b3eb781caf9181e47c14bddb9c890f387d662ca8556fc658c7bfa70ce5f69233edae9579c7c1a805cb702b183d81ac660773a6567def57e SHA512 7154abd8055f817665f5acbcf78625912b01bb3ce9f92dd64e9358ce8c1bff2e18530a0e902e86a068008f652f30bf80cd4a52801b4524890f7151fbec33e632

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..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}]"
BDEPEND="
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
}