bump pyqvrpro-0.52

This commit is contained in:
Andreas Billmeier 2020-04-12 09:49:01 +02:00
parent 4362df2cd7
commit 5b260e5bb6
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 35 additions and 0 deletions

View File

@ -13,6 +13,7 @@
* bump hass-nabucasa-0.33.0
* bump hass-nabucasa-0.34.0
* bump home-assistant-frontend-20200407.1
* bump pyqvrpro-0.52
2020-04-05 homeassistant-0.108.0_beta3
* add tesla-powerwall-0.1.4

View File

@ -1,3 +1,5 @@
DIST pyqvrpro-0.51.tar.gz 3876 BLAKE2B 50d140b3bdb7845925bb1cf1d1f606544a6dc4b22c18818fe3250bd8d7127ac31ac3f648c21f16e5ecc17f5656212ab4907bb15dde8e74576bd0c73996bf7fe2 SHA512 0286b62f96ffcc2c189488da8f17b56e062e32219659bf93398abe40ab411e2036dbe423fa412638777d65944d43d4641f0ecb790376f218fcbcf161c7223b18
DIST pyqvrpro-0.52.tar.gz 3889 BLAKE2B d5d7fba21bfb0cd31017c406b204a713a659fed47352a392d2930a9af4af7801d7f0536822cb50703a1b08f45739ff15bad62b49b8622a6cb154cf21c0a652e6 SHA512 932232e141dc86c6d0cf729e819f8c2d8e74637bfc87e2ed39b8906ab0d63fd57b7a45d0aaafb122ce2279760c7c1f8f003ada007ba4039744dbe07c5c4d7018
EBUILD pyqvrpro-0.51.ebuild 773 BLAKE2B 7f8a377ce082f917823cb9659f56af2180ff75be6e3574f04faafb7eb5571e6b9db396acd96970de46d42de840b87771e76aa6c9763a382fd8c7400b200c723a SHA512 2dd6e5aabdaff15010814534327217b820a6ac2a808f6157693ba8f0dea0880365b6e83e4ec4f404833e7058a26bddc037e88c3a007726ae10b1b46dfd6da93d
EBUILD pyqvrpro-0.52.ebuild 773 BLAKE2B 7f8a377ce082f917823cb9659f56af2180ff75be6e3574f04faafb7eb5571e6b9db396acd96970de46d42de840b87771e76aa6c9763a382fd8c7400b200c723a SHA512 2dd6e5aabdaff15010814534327217b820a6ac2a808f6157693ba8f0dea0880365b6e83e4ec4f404833e7058a26bddc037e88c3a007726ae10b1b46dfd6da93d
MISC metadata.xml 453 BLAKE2B c3e11d45f82f7e50512ee07db93a6ee23eb8c6acc0a7a69b010c6ddaa54c8b7ff828fcef97e53239fa0d9dd024cf126c57647f90eb9a1088f97dfdfc99c94de7 SHA512 4f107b5adbaed60a14d63dfa8a4caebe8861ede17c63ae630a8abe99b89b74b42054b1f5de4d64d27bbc99ec0c4882d64f80937deeb7064ec9443396056bb016

View File

@ -0,0 +1,32 @@
# 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="QVR Pro API wrapper."
HOMEPAGE="https://github.com/oblogic7/pyqvrpro https://pypi.org/project/pyqvrpro/"
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"
RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/untangle[${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
}