bump influxdb-client-1.8.0

This commit is contained in:
Andreas Billmeier 2020-07-11 11:50:44 +02:00 committed by Andreas Billmeier
parent bcc1b895bf
commit 017e670d1b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 42 additions and 0 deletions

View File

@ -33,6 +33,7 @@
* bump coverage-5.2
* bump aiohomekit-0.2.41
* bump pyvizio-0.1.49
* bump influxdb-client-1.8.0
2020-06-29
* bump aioguardian-1.0.0

View File

@ -1,3 +1,5 @@
DIST influxdb-client-1.7.0.tar.gz 202365 BLAKE2B 991f87cc62fb9eb4d836828088bd24ff36dfb03f3b6a8b258aa6e170aaa787e661bb9700cc81bc94d74df68b690b38fd5630acd4e787ea8de95828099b60d6f5 SHA512 cf458a89dadf428f5d759cd13c50a7c091a6fa9012271eaea7e769e1cfaf6860a7817a89947280b8c565eb7b5970cc3e4787a8427782a8214d80190696712249
DIST influxdb-client-1.8.0.tar.gz 204454 BLAKE2B 160bf8f412e8db565b9883eada88ffbc30f52d6899aca58ca3216c6dd49142b747009c47bd5790d43904e6e4c1ac745822a909f316f3391b0228b4d3cd7f796a SHA512 5b420316d990d0bd04da2ccdb6dab5f8a08d6c31d94c8bdc91b4f1976ac942dad6452ee6a76a1401962c0e150479dbe6ee2355f28f67a60850e0d8d7e0fd399e
EBUILD influxdb-client-1.7.0.ebuild 965 BLAKE2B d6fc78bf43295614cb4da75dbb246def509f83a14d99df7be0595bdd60a54d91db8bf3201b93f6d8c234cf8321914f95a3a26be24f035b97154f647b3b778067 SHA512 5191759dd89bfcad2253310db61ac2a16cc329d2446ae38ffa9a9c3f1a8a1be46cbdccc71256d77d52d7880f3184b8d05fa508afc2b3785cbac375bb12a7a074
EBUILD influxdb-client-1.8.0.ebuild 965 BLAKE2B d6fc78bf43295614cb4da75dbb246def509f83a14d99df7be0595bdd60a54d91db8bf3201b93f6d8c234cf8321914f95a3a26be24f035b97154f647b3b778067 SHA512 5191759dd89bfcad2253310db61ac2a16cc329d2446ae38ffa9a9c3f1a8a1be46cbdccc71256d77d52d7880f3184b8d05fa508afc2b3785cbac375bb12a7a074
MISC metadata.xml 334 BLAKE2B 7026b7b0b15846a8b6558e7acb40f9d869475c91deb6543c25dbdc225c69e2446be5d00dc20744c1924a04b5c343e89916ba89afae36068d946965677a0329eb SHA512 16197682c7e473197d1fee49bb9fd8a9f7697d86fd5372ac097e62ef450d6cc101178ea342ea6949f8e5b2b0d9efb36a344bffff57db9055cae4ee75026a82af

View File

@ -0,0 +1,39 @@
# 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="InfluxDB 2.0 Python client library"
HOMEPAGE="https://github.com/influxdata/influxdb-client-python https://pypi.org/project/influxdb-client/"
MY_PN=${PN/-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/Rx-3.0.1
>=dev-python/certifi-14.05.14
>=dev-python/six-1.10
>=dev-python/python-dateutil-2.5.3
>=dev-python/urllib3-1.15.1
>=dev-python/ciso8601-2.1.1
>=dev-python/pytz-2019.1
"
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
}