diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2018-09-06 07:03:47 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-09-07 15:03:13 +0000 |
commit | 9306e7f8909a4437d8bc802512465b1e5322da35 (patch) | |
tree | 7461813c03ae6694dec6ec6cba36015ebef2fbb6 /testing/py-influxdb | |
parent | d44f3efce78ee52611e4de50db62d2f7f04d2461 (diff) | |
download | aports-9306e7f8909a4437d8bc802512465b1e5322da35.tar.bz2 aports-9306e7f8909a4437d8bc802512465b1e5322da35.tar.xz |
testing/py-influxdb: upgrade to 5.2.0
Diffstat (limited to 'testing/py-influxdb')
-rw-r--r-- | testing/py-influxdb/APKBUILD | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/testing/py-influxdb/APKBUILD b/testing/py-influxdb/APKBUILD index 1b88bc093b..c3d5e2268a 100644 --- a/testing/py-influxdb/APKBUILD +++ b/testing/py-influxdb/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> pkgname=py-influxdb _pkgname=influxdb-python -pkgver=4.1.1 +pkgver=5.2.0 pkgrel=0 pkgdesc="Python bindings for InfluxDB" url="https://github.com/influxdata/influxdb-python" @@ -16,8 +16,8 @@ builddir="$srcdir/$_pkgname-$pkgver" build() { cd "$builddir" - python2 setup.py build || return 1 - python3 setup.py build || return 1 + python2 setup.py build + python3 setup.py build } package() { @@ -40,7 +40,7 @@ _py() { install_if="$pkgname=$pkgver-r$pkgrel $python" cd "$builddir" - $python setup.py install --prefix=/usr --root="$subpkgdir" || return 1 + $python setup.py install --prefix=/usr --root="$subpkgdir" } -sha512sums="15b8f508acdffcd9ef4e2cdbfd3ebf58edcfd70c70655c8d7b7bdbbd3a698f1518759638d1475f219c29a72485c3a89206a829602dd0098820d3594971864320 py-influxdb-4.1.1.tar.gz" +sha512sums="de86037abd5b371480029ff0bb8935c551030e5954c34a2915829b916c62444ee67bce89f553c39ea4d73369ff3c8c8a4639f5c2bfcfc9ac8ddfe6919fd020fd py-influxdb-5.2.0.tar.gz" |