bump homeconnect-0.6.3

This commit is contained in:
Andreas Billmeier 2020-10-18 15:25:28 +02:00 committed by Andreas Billmeier
parent b472fd3418
commit c21bd74d4b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 39 additions and 2 deletions

View File

@ -1,3 +1,6 @@
2020-10-18
* bump homeconnect-0.6.3
2020-10-17
* bump hass-nabucasa-0.37.1
* update httpcore-0.12.0
@ -9,10 +12,9 @@
* bump oemthermostat-1.1.1
* bump pychromecast-7.5.1
* bump pyEmby-1.7
* remove olds: elkm1-lib
* remove olds: elkm1-lib, bump elkm1-lib-0.8.3
2020-10-16 homeassistant-0.116.4
* bump elkm1-lib-0.8.3
* update homeassistant-0.116.4
* update onvif-zeep-async-0.6.0
* bump pyairvisual-5.0.3

View File

@ -1,3 +1,5 @@
DIST homeconnect-0.5.tar.gz 6462 BLAKE2B 8796d57b00c0fe9824421c405e1c70e8bb268b6c68577e366f5aca3057d42fe15efd7d1280fca22c20eaa11f0bcb1bd0e3d3defaaedd3a4c78da12fab74c72cc SHA512 5ed712f7aae92dd642091b98612546da74e3a27d1391c889fdf53749e12eb9f1fa02c9ebe0f49db36dc82f658ca0abbf415036c0ecd558568cbac034b5c4def3
DIST homeconnect-0.6.3.tar.gz 7694 BLAKE2B 3d277744f990295c58ec1cb757e14e9cbc40214ba9b96d9ed6696f8b32cd2ae709aa40107042d797349418275dd64a29b4f9e9184ff71c6a57876882d8a92920 SHA512 2556e8daaf48f2e010d6de1ec618f008c311efe4854310b67f48029ca88b0529889f8a67a0285980603d6a2af2e63a9ec9ddd271edcb34fa73089e4f3bd15f30
EBUILD homeconnect-0.5.ebuild 782 BLAKE2B ac16db3d02172c3984e757505ec08d7922f78f1b8b48055c29c08eb74d160860ec24c6c3cb6e9ff33095c3350fdc5e902e04ce658fa87f149de44d7413d656e3 SHA512 89e7b24a7bdc047223b48626dc4bfe420373394a90aa4a3787c3a2cd189f5c0305db46b7e48cc77629d50320c6aecbe2a8241d4c7f669e4ed2a776f831c13ec9
EBUILD homeconnect-0.6.3.ebuild 789 BLAKE2B a7367962e76ea51ac87d2448339689a79babab38612ea64fae85772fcf43a67cfa15031a2999f04462f24f342115d0ae4bef8a97b016dca2dacd6b120b95d94c SHA512 00ed5b829760264a5a6e35f4d992530175bf37d80dc733e3df40979f2a88e90dc7f82da7487255aeb44e5927d6e09d35f4284c65e0085936e26e699781d23927
MISC metadata.xml 458 BLAKE2B fa7b32908c10cd00ebaa2dc2a0840480a9bf9cc8b4675fe468bf5fab5d192693f5e964ccbe9ab6fe76564b808d68953574b2e0f368ea5ae2ff0da60ba8fd84c7 SHA512 9fd68dd6a4318a932fcf876ddbe278ab0c904dfe519bfad3c623d0846509b7b8a8a5ee4722b14406042378e5c3dd7f6342df40f898f28dbd2651710ca30482f9

View File

@ -0,0 +1,33 @@
# 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="Python client for the BSH Home Connect REST API"
HOMEPAGE="https://github.com/DavidMStraub/homeconnect https://pypi.org/project/homeconnect/"
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"
DOCS="README.md"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/requests-oauthlib[${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
}