bump python-mystrom-1.1.2

This commit is contained in:
Andreas Billmeier 2020-04-25 21:58:56 +02:00 committed by Andreas Billmeier
parent 8641e0fa5a
commit 59655580b5
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 35 additions and 0 deletions

View File

@ -23,6 +23,7 @@
* bump pyairvisual-4.3.0, remove unused
* bump simplisafe-python-9.1.0, remove unused
* bump tesla-powerwall-0.2.8
* update python-mystrom-1.1.2
2020-04-16 homeassistant-0.108.6
* add dep in bravia-tv-1.0.1

View File

@ -1,3 +1,5 @@
DIST python-mystrom-0.5.0.tar.gz 9633 BLAKE2B 6eab647742adc775532ef8a96395f6e4a4c52ec32f13c3db2b6b3f3f25ab4302436e0547f7c4ad726a4df754ee4389cd8898f9e1641abcc3db1d8de9e1b7931d SHA512 db330bbc0e304224b586caa9d2ea646cb25beff165268d68b52e6d470cd5fa2db71bfe7d21628f74679cd8480c7f0269c42ea3a3fc76636bec3ff184bf9a80d9
DIST python-mystrom-1.1.2.tar.gz 12692 BLAKE2B c3cd913dc600d691cf23ef1dc45eeefe7128a95e3559b8c138c2938987e8c173a5f32cd31f6101e81a81b3ff7f111786bb685ec7ded8b58b0d645c504ee39084 SHA512 54efa91fe8a81edde283387576dcb0c4fb8656dad4ef820d4b2371b956f881972dec08ba20efc1b09e8014003bd7d3f9471e5b2fb8092c5857604630131c3aa2
EBUILD python-mystrom-0.5.0.ebuild 697 BLAKE2B a824e1425a32826e5e1fab9b94e603ca90ff806aa87d05676430dbf6abffbd82e64f82f984cf2c201afe85e3c75ddbd0a5c192349183669d37ec3385b77d7f84 SHA512 341f1c5cfd1b6882e365689c3f409fd55f656ae972ae3aeddfc7409bce52a540c90742b2c5f8004815d5bc932c0cf85b6ff423780c3c13b6ec495f5906a09437
EBUILD python-mystrom-1.1.2.ebuild 774 BLAKE2B cfcee5499c30b5ebf89414f78ae33780097b94d4c50f9df8efa8ec358e486ec4f75be04c3ad4053a2871a574cee48ad9e7a96222ab381590c9c03cbb97bf19cd SHA512 feb3147f90891285ff729321ddaf326083cf1628432c9abf349e5629a149c5e5381dec869f6a7cd08f2a9f2e4f0276d7b0f2187616cd41605f1fd692b0ff1cd6
MISC metadata.xml 472 BLAKE2B 70ddd13abfb1f7308ddbc107dd006401b4f452c7d28140f2583f99f15a630d37f810e71ab0b8b95d281adb2a88408b2d2ffb8921e11de64dfc4fe8d486d7385c SHA512 055d4cfb64a128c7df73b0fd664427ca514580653629dda8c8e509d73432419137b17bf5da747218f133c2459796acdd9588fdb6247fe9604b691626601b9389

View File

@ -0,0 +1,32 @@
# 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 API for interacting with myStrom devices"
HOMEPAGE="https://github.com/fabaff/python-mystrom https://pypi.org/project/python-mystrom/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="
dev-python/click[${PYTHON_USEDEP}]
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
}