add pystiebeleltron-0.0.1

This commit is contained in:
Andreas Billmeier 2019-11-24 17:42:15 +01:00
parent 9a0cd0b2cd
commit cb11e4637b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 46 additions and 1 deletions

View File

@ -1,5 +1,5 @@
2019-11 23 (reverse added today)
* add steamodd-4.22
* add steamodd-4.22, pystiebeleltron-0.0.1
* add spotipy-homeassistant-2.4.4, starlingbank-3.1
* update python-songpal-0.11.2
* add socialbladeclient-0.2, solaredge-0.0.2, somfy-mylink-synergy-1.0.6

View File

@ -0,0 +1,3 @@
DIST pystiebeleltron-0.0.1.tar.gz 8970 BLAKE2B da5b43a4d86c6d4a0f6eb5965298a164db05d9125556cde59b3b0bd6730d4344a232730b991dfc9f57bdb5f7093e90deff4426e518e3b8f6ca92489eb70ac0fe SHA512 adc878bfe4e2a5167e3a30f1720ea383e4ff8efd4d0825095ab7c86b6e2de0da341b389ded4ae5cdcf281dbc7025e3908ab7b40cc937d65e9652793a8b93a49e
EBUILD pystiebeleltron-0.0.1.ebuild 848 BLAKE2B 2d103477a889ded36770a1c47537bdf0796130d76eb744e2e035838c062b9f69662bd93024877ff8a78860a8c4aa1984878c2f1bf3e7afc4c124858854585bc6 SHA512 7a9e64f3847e9df953211ce16433be2029c5f6b69c5dbf4958fa662f2df72998452a6122f6d213a2d8abcc941213b28b9b6d4fdff4136a3d076b7b27726a26af
MISC metadata.xml 341 BLAKE2B 8d1706f6d040d8bc74ed4b2977840f5d73e54c866c05518e0529e16a181f77d06be69beecb65cf86d0b40caa1c352f3ebf5e1321037f99239b03da12d3834c2d SHA512 c4ae02e7b1d7b1de790274424485c3e49137a7a03685a624ea1c361829ecf8889e486671dbff846b1374e71d4307080d9f3e1bfa920c7a485ce816a21d943700

View File

@ -0,0 +1,12 @@
<?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">pystiebeleltron</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="Python API for interacting with the Stiebel Eltron ISG web gateway via Modbus for controlling integral ventilation units and heat pumps."
HOMEPAGE="https://github.com/fucm/python-stiebel-eltron https://pypi.org/project/pystiebeleltron/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.dev2.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/pymodbus-2.1.0[${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
}