diff options
-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" |