add pi4ioe5v9xxxx-0.0.2

This commit is contained in:
Andreas Billmeier 2020-04-12 09:35:22 +02:00
parent 61b422380a
commit 168b343c5a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 49 additions and 0 deletions

View File

@ -4,6 +4,7 @@
* bump HAP-python-2.8.1
* bump aioambient-1.1.1
* bump simplisafe-python-9.0.6
* add pi4ioe5v9xxxx-0.0.2
2020-04-05 homeassistant-0.108.0_beta3
* add tesla-powerwall-0.1.4

View File

@ -0,0 +1,3 @@
DIST pi4ioe5v9xxxx-0.0.2.tar.gz 2284 BLAKE2B 443dc3557035232c8ebfc986a0510b69c793741cf948c270748016ff661c97bcec3ae63d0296f27ea32e6f9a62964e962439dce6ca3c3537e58bc09c68bbf856 SHA512 87eb2a7d6a80c60637a46b48ea3aab9c603726db694d2cd57ceac163a6a4d1cfc71c15559aaf883a4e1a694b55ad764a3401a9ff035e266e0341f847c77e8373
EBUILD pi4ioe5v9xxxx-0.0.2.ebuild 738 BLAKE2B 7bcf41fa1b155af81c8d3630c764ea0007add64cc98076f7bbee7149c058efc36e64125a7116d30341fec115ef9a7cc9b4b700167d623596da531ce5b093db43 SHA512 e6bc31ede0de385adf95c0c8e1f7de1532dbc83643b9f7b8664d51c4cbf66196d159aeafb005495a1ff963ca840213ff8aeed7ba086c3d8dc9d7c100c5b5ee64
MISC metadata.xml 452 BLAKE2B 1ca4ae8188e2000b6ee911404f92fda5b955c1e38001224e6a5d9d32155807c7f2188548747e4a09e1a0a5b897cb6957341e77d0d0c4de3161e8b8de86f24609 SHA512 a940773f7cfe1a0f0c0dd686191c9e533e26642f8f03dbb521cb02132032ab228a72d0a09044df8d8d6f742c2877fa9c6253be773df881f60a53afa0523bd6bb

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">pi4ioe5v9xxxx</remote-id>
<maintainer status="unknown">
<email>info@tec-V.nl</email>
<name>Anton Verburg</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="Driver for pi4ioe5v0xxxx I2C IO expander chips"
HOMEPAGE="https://github.com/antonverburg/pi4ioe5v9xxxx https://pypi.org/project/pi4ioe5v9xxxx/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/smbus2[${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
}