update PyViCare-1.0.0

This commit is contained in:
Andreas Billmeier 2021-08-07 07:47:05 +02:00 committed by Andreas Billmeier
parent 75b2c9f39a
commit d3a30df69d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 40 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST PyViCare-0.2.5.tar.gz 14295 BLAKE2B 2b1c0966fb9200cc41ddfedbfdafe9a2b45e1f10e1a459d658f1415ec9ac4dbc3037c3a012b44b52db3123cc1df95b05f9eaf07b1802aeed6b8d504a872a84f2 SHA512 a9f7f68ce4193a01fb094e7d046f7d9928dd13adb43170b806fc9ca1e4e28051bfb45d700faf935ab3c518c9d063ec35ccc10cff5051ee50aca4a66042e08d09
DIST PyViCare-1.0.0.tar.gz 16311 BLAKE2B 628009a612640d74a9129fcbdfe8edc30e927d3d1d1a4ace692d75727358c353fa5daa2b28b8565b65cbaffbacbd2ef736cce4889c1058f6cccd8ca3d8ea917a SHA512 774d0875ca5b81b8f2247952f88a7bdd536ea98b5fad9d925a943388c52510f52cbac210f3ac5b0ae5378071df1dcfe6c07a3e2f5fe0578c83d1ddcc2bd83a7a
EBUILD PyViCare-0.2.5.ebuild 940 BLAKE2B 2c7cbc4243b81cc7d07d53a5722fe1059dc23bceb04a9fe847c057fd769300a04ab4f4c731f2a6ce78a216c66e78175b1f3c999e8fc7663f229e7c8bb12b610e SHA512 11612ab176970c52319f32307d500e04e0320e80bd62a728d4d7359b4ad7a6147c3afa237d850d08aa0c5688bffe488eabadd92ede10d933cf42f68e361d3913
EBUILD PyViCare-1.0.0.ebuild 926 BLAKE2B 57ad4e1ef1c15db19096656ea8e74375cc5bf631bd4799b92cd98fed0248f485801a02265ce3c70b1215be3a4d1a99300f24c1c8376c79717dad69c29e900c12 SHA512 ed6e52ac05d421780d90ab364d54c118b6106417fa54ced0a40320959ac5c86e76ccd1a6e8d37e50c06e3a76410fb977309002fa95651beabc9d1cfa5f8431db
MISC metadata.xml 459 BLAKE2B f4ad5b2d86e598398850e89524f5b2a536c08972d3226f8db225145dde7cb82b802ca5fb80c75e9766a342712e6f1c3010383e16627f83a26305a56b406563e4 SHA512 5d25d5aa24cb2a8e6bfd840c80b70823687dec39181220f5fe53b74822b98434d0c0b6f7cec8b1ef15ad229aa291bde5a31c10591c4107da052fbea98da6823c

View File

@ -0,0 +1,38 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Library to communicate with the Viessmann ViCare API"
HOMEPAGE="https://github.com/somm15/PyViCare https://pypi.org/project/PyViCare/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86 amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=">=dev-python/requests-oauthlib-1.1.0[${PYTHON_USEDEP}]
dev-python/simplejson[${PYTHON_USEDEP}]
dev-python/pkce[${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
}
src_prepare() {
sed -i "s/setuptools-git-versioning//g" -i setup.py || die
eapply_user
}