Date: Saturday, April 8, 2023 @ 02:41:40
Author: felixonmars
Revision: 1441500
archrelease: copy trunk to community-staging-any
Added:
python-influxdb/repos/community-staging-any/
python-influxdb/repos/community-staging-any/PKGBUILD
(from rev 1441497, python-influxdb/trunk/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: python-influxdb/repos/community-staging-any/PKGBUILD (from rev 1441497,
python-influxdb/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-08 02:41:40 UTC (rev 1441500)
@@ -0,0 +1,39 @@
+# Maintainer: Jelle van der Waa <[email protected]>
+# Contributor: Mateusz Galazyn <[email protected]>
+
+pkgname=python-influxdb
+pkgver=5.3.0
+pkgrel=5
+pkgdesc="Python client for InfluxDB"
+arch=('any')
+url="https://github.com/influxdata/influxdb-python/"
+license=('MIT')
+depends=('python' 'python-requests' 'python-dateutil' 'python-six'
'python-pytz' 'python-msgpack')
+makedepends=('python-setuptools')
+checkdepends=('python-nose' 'python-requests-mock' 'python-pandas' 'influxdb')
+optdepends=('influxdb')
+options=(!emptydirs)
+source=($pkgname-$pkgver.tar.gz::https://github.com/influxdata/influxdb-python/archive/v$pkgver.tar.gz)
+sha512sums=('87129544b5bef8062d452447626b639b675bf6ba5076f38d4616a364fa6dfea6aa73beece239aeb8f2294314c4fe6bc7e3ae5d7e463592bd0f77ed3aaaff5557')
+
+build() {
+ cd "$srcdir/influxdb-python-$pkgver"
+ python setup.py build
+}
+
+
+check() {
+ cd "$srcdir/influxdb-python-$pkgver/influxdb"
+ # TODO: fix one failing test
+ # https://github.com/influxdata/influxdb-python/issues/844
+#INFLUXDB_PYTHON_INFLUXD_PATH=/usr/bin/influxd nosetests -e
test_write_points_from_dataframe_with_numeric_precision tests
+}
+
+package() {
+ cd "$srcdir/influxdb-python-$pkgver"
+ python setup.py install --root="$pkgdir/" --optimize=1
+ install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+
+# vim:set ts=2 sw=2 et: