Download raw body.
update/clarify influxdb python client ports
- clarify the ports description and make it clear which on is for InfluxDB 1.x
and 2.x (there is also a separate 3.x client already)
- update the 2.x port to the latest release 1.40.0
- take maintainer for the 2.x port
OK?
Index: py-influxdb/Makefile
===================================================================
RCS file: /cvs/ports/databases/py-influxdb/Makefile,v
retrieving revision 1.17
diff -u -p -r1.17 Makefile
--- py-influxdb/Makefile 14 Nov 2022 15:50:13 -0000 1.17
+++ py-influxdb/Makefile 28 Feb 2024 14:01:37 -0000
@@ -1,11 +1,13 @@
-COMMENT = Python client for interacting with InfluxDB
+COMMENT = Python client library for InfluxDB 1.x
MODPY_EGG_VERSION = 5.3.1
DISTNAME = influxdb-${MODPY_EGG_VERSION}
PKGNAME = py-${DISTNAME}
-REVISION = 3
+REVISION = 4
CATEGORIES = databases
+
+HOMEPAGE= https://github.com/influxdata/influxdb-python
# MIT
PERMIT_PACKAGE = Yes
Index: py-influxdb/pkg/DESCR
===================================================================
RCS file: /cvs/ports/databases/py-influxdb/pkg/DESCR,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 DESCR
--- py-influxdb/pkg/DESCR 17 Sep 2018 21:15:10 -0000 1.1.1.1
+++ py-influxdb/pkg/DESCR 28 Feb 2024 14:01:37 -0000
@@ -1 +1,3 @@
-InfluxDB-Python is a client for interacting with InfluxDB.
+InfluxDB-Python is a client for interacting with InfluxDB 1.x. For
+connecting to InfluxDB 2.x instances, use the
+databases/py-influxdb_client port.
Index: py-influxdb_client/Makefile
===================================================================
RCS file: /cvs/ports/databases/py-influxdb_client/Makefile,v
retrieving revision 1.6
diff -u -p -r1.6 Makefile
--- py-influxdb_client/Makefile 30 Mar 2023 10:22:05 -0000 1.6
+++ py-influxdb_client/Makefile 28 Feb 2024 14:01:37 -0000
@@ -1,12 +1,14 @@
-COMMENT= Python client library for InfluxDB 1.8/2.0+/Cloud
+COMMENT= Python client library for InfluxDB 2.x and Flux
-MODPY_EGG_VERSION= 1.36.1
+MODPY_EGG_VERSION= 1.40.0
DISTNAME= influxdb_client-${MODPY_EGG_VERSION}
PKGNAME= py-${DISTNAME}
CATEGORIES= databases
HOMEPAGE= https://github.com/influxdata/influxdb-client-python
+
+MAINTAINER= Martin Reindl <martin@catai.org>
# MIT
PERMIT_PACKAGE= Yes
Index: py-influxdb_client/distinfo
===================================================================
RCS file: /cvs/ports/databases/py-influxdb_client/distinfo,v
retrieving revision 1.5
diff -u -p -r1.5 distinfo
--- py-influxdb_client/distinfo 30 Mar 2023 10:22:05 -0000 1.5
+++ py-influxdb_client/distinfo 28 Feb 2024 14:01:37 -0000
@@ -1,2 +1,2 @@
-SHA256 (influxdb_client-1.36.1.tar.gz) = WWVK9PcTPw7PkWQRk1tQ9C5cS8El0hjhk4SPNhW1e/w=
-SIZE (influxdb_client-1.36.1.tar.gz) = 365631
+SHA256 (influxdb_client-1.40.0.tar.gz) = An+XCvFRhHnYgG8c31uiAoD5Q+G2IcKs2/nKjcm98cs=
+SIZE (influxdb_client-1.40.0.tar.gz) = 335997
Index: py-influxdb_client/pkg/DESCR
===================================================================
RCS file: /cvs/ports/databases/py-influxdb_client/pkg/DESCR,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 DESCR
--- py-influxdb_client/pkg/DESCR 29 Jun 2022 01:35:45 -0000 1.1.1.1
+++ py-influxdb_client/pkg/DESCR 28 Feb 2024 14:01:37 -0000
@@ -1,3 +1,2 @@
-Python client library for the InfluxDB 1.8, 2.0+, and InfluxDB
-Cloud. To connect to InfluxDB 1.7 or earlier instances, use the
-databases/py-influxdb port.
+Python client library for use with InfluxDB 2.x and Flux. To connect
+to InfluxDB 1.x instances, use the databases/py-influxdb port.
update/clarify influxdb python client ports