bump millheater-0.4.0

This commit is contained in:
Andreas Billmeier 2020-11-24 20:00:06 +01:00 committed by Andreas Billmeier
parent 4e70bb3a4b
commit fdeb3afbdd
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 36 additions and 3 deletions

View File

@ -3,7 +3,6 @@
* bump envoy-reader-0.17.0
* bump blinkpy-0.16.4
* bump pysonos-0.0.37
* bump millheater-0.4.0
* bump pydeconz-74
* bump solax-0.2.5
* update sentry-sdk-0.19.4
@ -11,6 +10,7 @@
* add motionblinds-0.1.6
* bump aioasuswrt-1.3.1
* bump google-nest-sdm-0.2.0
* bump millheater-0.4.0
2020-11-21 homeassistant-0.118.2
* bump pymyq-2.0.10

View File

@ -1,3 +1,5 @@
DIST millheater-0.3.4.tar.gz 5576 BLAKE2B 4c57c69026aebf46533fe335cad6b3719268e67e913ce9a426070b9cd389449bba8be4cb80e0716591bd0219c52f6fd728940b42d292c7551929dd29c945ca18 SHA512 b6b09570bf81b4a3d7853bd37ada88815b50e8c01f94fde22c072218c2ad2ad1455146670c029a2c314c04664add9a58b0e127e29f9ad0941ce4af29d1713fdb
DIST millheater-0.4.0.tar.gz 6057 BLAKE2B 02ca62ae1099dd6af1daad78a2133479ef3db0ba1a7019992b73f815cc27abc2b89d94933cbf42a36b56a527288216fc1b8014ac1b26c8aa95be2b07383936fd SHA512 68fba067093304555460adf8bc632fd576505bf46198a851062ee51d6b471fa7ecdea744d39a26cd86e61731bb3a7570a6b6e1b7d0bf153d5ae4b41fa9754205
EBUILD millheater-0.3.4.ebuild 789 BLAKE2B a44b6b0c463590cc0421d869059364c43c2d799301c5ab0b1a3efefe5cbefcd13eed554dae4767c0b43a9ecdb96a8342810304c1aa310b48a68abfedd2dabb72 SHA512 6d3a959cd4e02ec847093f09dba33fba08c68a98378e13ff0d74c325ed1e38c010758f3f42cc51e59ae0de9e832a840e28a0ef1c728cab1a68b4668cf16e7eed
MISC metadata.xml 458 BLAKE2B 890c074a03d8c809110f886886b1b0764e37d5ac653408f6a856b0e50b9530e13cd66022fc353d3dfd4d3e3499d01f65f67abefea90413f32da07b49c42101a2 SHA512 383ee9cc34eb2319109a3cf70eae8b0a84a9557555b1713df80ae31d817d62b852d1374428996406f5bcf8edd197917a805897ac75ab665ee902c8ec4236f159
EBUILD millheater-0.4.0.ebuild 778 BLAKE2B cb49c44796fa9b9025059a1b154888e02ce20ff420d466f4c78342d6d67d29e578141f8ce9d949c04319799407515d41f8184b4bd052d288121cd26fe47844f1 SHA512 d0a1dd27c4b5dba24808a909f83ba0a39400c3a87f2a4812342827eaacf5f0131749cc95c68e2efdd0388847aa17b263ba14668fe0b77ebd297ae67a3e57e0ad
MISC metadata.xml 459 BLAKE2B 26b09be51394d016a9b4be76356804be16b9e88d82fceac35e464ab2ff760c055c64686a7f6d88f0f6bae6d3c5c1d95e89f5d3868a7391de0cf1d53397894c39 SHA512 91263b54486160978e09383e3afcd118be65a61c347f5814513b2c213d4895a01c658f1472b118e51320b44674271261686bf3d2788f2deb831a0e1575a459f6

View File

@ -9,7 +9,7 @@
<remote-id type="pypi">millheater</remote-id>
<maintainer status="unknown">
<email>mail@dahoiv.net</email>
<name>Daniel Hoyer Iversen</name>
<name>Daniel Hjelseth Hoyer</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="A python3 library to communicate with Mill"
HOMEPAGE="https://github.com/Danielhiversen/pymill https://pypi.org/project/millheater/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/aiohttp-3.0.6[${PYTHON_USEDEP}]
>=dev-python/async_timeout-1.4.0[${PYTHON_USEDEP}]"
BDEPEND="
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
}