downgrade volvooncall-0.8.7

This commit is contained in:
Andreas Billmeier 2020-07-26 09:48:52 +02:00 committed by Andreas Billmeier
parent bdc60ca8a5
commit 7099282a5a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2020-07-16
* update HAP-python-3.0.0
* downgrade volvooncall-0.8.7
2020-07-25 homeassistant-0.113.1
* bump zeroconf-0.28.0

View File

@ -1,3 +1,5 @@
DIST volvooncall-0.8.12.tar.gz 14274 BLAKE2B 3dd67ca8e9a838a6bf0f9935a2b0ed9b269bfc8cc8fdf74dd49d66f60083c7c4ed5622ceeecf5b30839bc1f86e52e0b994b8f0e15462049f054946132c9c9ec3 SHA512 11059d3e42b8753d6ea2d47f34f978aec63690c2b99c0d0779dc9846af54ec49f77c10d7f47cfd561d18b29d0492f4e969d7674c772cbde773b8c342d99f02ea
DIST volvooncall-0.8.7.tar.gz 14407 BLAKE2B 3a568d63d8a0fd9f75ecc101e4e19c859e7c11fa3248ff42303ce133d2f395358269798807e08d690fbe4241b3a5411e30c0d98d1410cfc466b3fb6a4598199b SHA512 1e9bbcebad189827520afec05c67e794cf5335124441cc5485f2aad02f5fcca306353add935d0f2ff5c8526c604c45995aa248b330e6f883ea9fb09681a18190
EBUILD volvooncall-0.8.12.ebuild 871 BLAKE2B 3325bbfb0e157576b7670421ecb4ddaeb913aa9fd47508430164320518aad0390c16d8610d9d2298769581a52720978015355b7bcb60fb45c93246641356ad28 SHA512 36cc4d0be0b60205ac204920d0c2bc9f107babb64f177ba2a0394e1017bc8b8890a9b71e599fe9cc8b8a97ad007344ee5ecadae07ae74328f0507a13e1d21377
EBUILD volvooncall-0.8.7.ebuild 871 BLAKE2B 3325bbfb0e157576b7670421ecb4ddaeb913aa9fd47508430164320518aad0390c16d8610d9d2298769581a52720978015355b7bcb60fb45c93246641356ad28 SHA512 36cc4d0be0b60205ac204920d0c2bc9f107babb64f177ba2a0394e1017bc8b8890a9b71e599fe9cc8b8a97ad007344ee5ecadae07ae74328f0507a13e1d21377
MISC metadata.xml 453 BLAKE2B c6d8952fb6c5060d616f0b0824a07f112c1fc973892b88474b1c9a5f57d65d77097e6e8f207f26687bbaea398147e8f0eb5a9749ffedfb3e5055a495374d3872 SHA512 d4bf8b64378a8bdc226875a8368fcf4ad41eade9c993f5acf410e5ffd5c3c2865c8b9a27135d3bb11dbedc9e5c55a1cc26c13c9db0f68eb4017463e08cbb6390

View File

@ -0,0 +1,34 @@
# 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="Communicate with VOC"
HOMEPAGE="https://github.com/molobrakos/volvooncall https://pypi.org/project/volvooncall/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]
>=dev-python/geopy-1.14.0[${PYTHON_USEDEP}]
dev-python/certifi[${PYTHON_USEDEP}]
dev-python/hbmqtt[${PYTHON_USEDEP}]
dev-python/aiohttp[${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
}