aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py-influxdb
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2019-08-27 02:36:49 -0300
committerLeo <thinkabit.ukim@gmail.com>2019-08-27 02:49:41 -0300
commit6a7c664376d6e09640940c7ecf4f20b23fad36c1 (patch)
tree7262721af2db45b81aab4c0aab32907d80cab412 /testing/py-influxdb
parent9714ae08571c909a80ca48242b42f7ea212f6b2b (diff)
downloadaports-6a7c664376d6e09640940c7ecf4f20b23fad36c1.tar.bz2
aports-6a7c664376d6e09640940c7ecf4f20b23fad36c1.tar.xz
testing/py3-influxdb: rename from py-influxdb
Diffstat (limited to 'testing/py-influxdb')
-rw-r--r--testing/py-influxdb/APKBUILD46
1 files changed, 0 insertions, 46 deletions
diff --git a/testing/py-influxdb/APKBUILD b/testing/py-influxdb/APKBUILD
deleted file mode 100644
index 605a18185d..0000000000
--- a/testing/py-influxdb/APKBUILD
+++ /dev/null
@@ -1,46 +0,0 @@
-# Contributor: Olivier Mauras <olivier@mauras.ch>
-# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
-pkgname=py-influxdb
-_pkgname=influxdb-python
-pkgver=5.2.0
-pkgrel=1
-pkgdesc="Python bindings for InfluxDB"
-url="https://github.com/influxdata/influxdb-python"
-arch="all"
-license="MIT"
-subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
-depends=""
-makedepends="python2-dev python3-dev py-setuptools openssl-dev"
-source="$pkgname-$pkgver.tar.gz::https://github.com/influxdata/${_pkgname}/archive/v${pkgver}.tar.gz"
-builddir="$srcdir/$_pkgname-$pkgver"
-
-build() {
- cd "$builddir"
- python2 setup.py build
- python3 setup.py build
-}
-
-package() {
- mkdir -p "$pkgdir"
-}
-
-_py2() {
- replaces="$pkgname"
- _py python2
-}
-
-_py3() {
- _py python3
-}
-
-_py() {
- local python=$1
- pkgdesc="$pkgdesc - $python"
- depends="$depends $python"
- install_if="$pkgname=$pkgver-r$pkgrel $python"
-
- cd "$builddir"
- $python setup.py install --prefix=/usr --root="$subpkgdir"
-}
-
-sha512sums="de86037abd5b371480029ff0bb8935c551030e5954c34a2915829b916c62444ee67bce89f553c39ea4d73369ff3c8c8a4639f5c2bfcfc9ac8ddfe6919fd020fd py-influxdb-5.2.0.tar.gz"