add pi4ioe5v9xxxx-0.0.2

This commit is contained in:
Andreas Billmeier 2020-04-07 17:17:21 +02:00
parent 2d6e401605
commit 01549da472
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -5,6 +5,7 @@
* HAP-python-2.8.1 bumped
* 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 736 BLAKE2B f47b5d28aa133a83b7e45b86b22feb0454c57e80fc6a58f91159f6a4bf5e3db3f43ec9aa0f874a3d9a17c64d1a57825be15ba77cc38ecef1ccfa87caa51d619a SHA512 91dfde1d802494fde27d03fdd7d7f1eb0aa9286728c4b515bd697ed5147dd9f9f8814f0b591ac1af7af7e7087f60d5b1396b757f9f2c21949bd67b9d769b76d1
MISC metadata.xml 459 BLAKE2B cbf25358375eff3da1b6239f87fe84857e7da349a15c43e3b371260fb52f5c73f0049faa275714fd4fae8e69e7b1a558c5864286f7e2a83bcb9ecf3f44430dbf SHA512 a8d6ab2c1ca4e5017a1d32974ffb005af0578caa0598bc12c7e5eda2995d7a6e6ca21080ecac3697c026fdabb1211d548534c6ff7558be3b9e340665181da60b

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<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} )
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
}