bump twentemilieu-0.2.0

This commit is contained in:
Andreas Billmeier 2020-01-05 09:16:13 +01:00
parent ff2a0fb15f
commit 31d04b3b02
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 34 additions and 0 deletions

View File

@ -3,6 +3,7 @@
* bump elgato-0.2.0
* bump adguardhome-0.4.0
* bump wled-0.2.1
* bump twentemilieu-0.2.0
2020-01-03
* add gios-0.0.3

View File

@ -1,3 +1,5 @@
DIST twentemilieu-0.1.0.tar.gz 7083 BLAKE2B 907e40bb8381341b8d98759913e07c5865506391c7df2680ef91f1ebd9172ab5324dd15d3d2b7baca50cae70d92194465fbbabedce5f92921f3a6cd22a801374 SHA512 c26adaaf70f72e570bb278b8d472273ee4920ac6b7c7dde852b18b48408818ef87e2073bfd1b92e579452e13f9a574a145b0f4d7cba21a673366ce61605271b7
DIST twentemilieu-0.2.0.tar.gz 10116 BLAKE2B a8459945dcccf3e4ff9b2005fb9decd5c4497c4f45391dc89c8322b131f53e7200540c2a34757eb16370afe09c850c11fddba7ffbe626a1b3df65f4b711baee2 SHA512 7bcfead41af9cdf7dc66bbab98401ac531c61b9904ebf6239544ec511bba4186afebd425729d381077bc113b887e71576ae51918b69d47d80850aea907f1d94d
EBUILD twentemilieu-0.1.0.ebuild 746 BLAKE2B 1e243176a8f8faaedad4031603da900d08a9d9688c3fdf9392a8d7f55d1da53d79440d70bf5713c4f0815ded03bf932e7f1cdb131762e18430b046fa2cbf6333 SHA512 bd8c948b198c4919963d97353835423c31172bbfc7534effcdc4dc9b7f44517c6dbee7e52050d8d764178d6fe734e189ab547fc3c1b537a20372c8910672b0ad
EBUILD twentemilieu-0.2.0.ebuild 746 BLAKE2B 1e243176a8f8faaedad4031603da900d08a9d9688c3fdf9392a8d7f55d1da53d79440d70bf5713c4f0815ded03bf932e7f1cdb131762e18430b046fa2cbf6333 SHA512 bd8c948b198c4919963d97353835423c31172bbfc7534effcdc4dc9b7f44517c6dbee7e52050d8d764178d6fe734e189ab547fc3c1b537a20372c8910672b0ad
MISC metadata.xml 466 BLAKE2B d1b5621ac95f110dcc51e13008fc9ea382b636329777d11c51e9b288f68724bdd5509d671168814a4a76d1fc7b5f09efe896e0ff125f115515b3783dc3fdb248 SHA512 ba91dd169d255857a97a2564b20d3c69ac947f6c823be4ddd7126016b7209fa7bb4410b4ea7b7ddc411858e543bd49e95fd964040e7bbca352fb94893200bf30

View File

@ -0,0 +1,31 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Asynchronous Python client for Twente Milieu API."
HOMEPAGE="https://github.com/frenck/python-twentemilieu https://pypi.org/project/twentemilieu/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="~dev-python/aiohttp-3.5.4
~dev-python/yarl-1.3.0"
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
}