diff --git a/lang/python/python-influxdb/Makefile b/lang/python/python-influxdb/Makefile deleted file mode 100644 index a71d9fd476002..0000000000000 --- a/lang/python/python-influxdb/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# - -include $(TOPDIR)/rules.mk - -PKG_NAME:=python-influxdb -PKG_VERSION:=5.3.1 -PKG_RELEASE:=1 -PKG_MAINTAINER:=Josef Schlehofer   - -PYPI_NAME:=influxdb -PKG_HASH:=46f85e7b04ee4b3dee894672be6a295c94709003a7ddea8820deec2ac4d8b27a - -PKG_LICENSE:=MIT -PKG_LICENSE_FILES:=LICENSE - -include ../pypi.mk -include $(INCLUDE_DIR)/package.mk -include ../python3-package.mk - -define Package/python3-influxdb - SECTION:=lang - CATEGORY:=Languages - SUBMENU:=Python - URL:=https://github.com/influxdb/influxdb-python - TITLE:=InfluxDB client - DEPENDS:=\ - +python3-light \ - +python3-requests \ - +python3-pytz \ - +python3-six \ - +python3-dateutil \ - +python3-msgpack -endef - -define Package/python3-influxdb/description - Python client for InfluxDB -endef - -$(eval $(call Py3Package,python3-influxdb)) -$(eval $(call BuildPackage,python3-influxdb)) -$(eval $(call BuildPackage,python3-influxdb-src)) diff --git a/utils/bigclown/bigclown-mqtt2influxdb/Makefile b/utils/bigclown/bigclown-mqtt2influxdb/Makefile deleted file mode 100644 index 89b5dca654999..0000000000000 --- a/utils/bigclown/bigclown-mqtt2influxdb/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# - -include $(TOPDIR)/rules.mk - -PKG_NAME:=bigclown-mqtt2influxdb -PKG_VERSION:=1.4.0 -PKG_RELEASE:=1 - -PYPI_NAME:=mqtt2influxdb -PKG_HASH:=9fd98d2239c0b9a2482db8e55e3e5a310c5b644aa7d42c57d35ed775adb0101a - -PKG_MAINTAINER:=Josef Schlehofer   -PKG_LICENSE:=MIT -PKG_LICENSE_FILES:=LICENSE - -include ../../../lang/python/pypi.mk -include $(INCLUDE_DIR)/package.mk -include ../../../lang/python/python3-package.mk - -define Package/bigclown-mqtt2influxdb - SECTION:=utils - CATEGORY:=Utilities - SUBMENU:=BigClown - TITLE:=BigCLown MQTT to Influxdb bridge - URL:=https://github.com/bigclownlabs/bch-mqtt2influxdb - DEPENDS:= \ - +python3-paho-mqtt \ - +python3-yaml \ - +python3-influxdb \ - +python3-jsonpath-ng \ - +python3-schema -endef - -define Py3Package/bigclown-mqtt2influxdb/install - $(INSTALL_DIR) $(1)/usr/bin - $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/ - - $(INSTALL_DIR) $(1)/etc/init.d - $(INSTALL_BIN) ./files/init $(1)/etc/init.d/bigclown-mqtt2influxdb - $(INSTALL_DATA) ./files/config.yml $(1)/etc/bigclown-mqtt2influxdb.yml -endef - -define Package/bigclown-mqtt2influxdb/conffiles -/etc/bigclown-mqtt2influxdb.yml -endef - -$(eval $(call Py3Package,bigclown-mqtt2influxdb)) -$(eval $(call BuildPackage,bigclown-mqtt2influxdb)) diff --git a/utils/bigclown/bigclown-mqtt2influxdb/files/config.yml b/utils/bigclown/bigclown-mqtt2influxdb/files/config.yml deleted file mode 100644 index 350c85a107d0d..0000000000000 --- a/utils/bigclown/bigclown-mqtt2influxdb/files/config.yml +++ /dev/null @@ -1,67 +0,0 @@ -## Example bigclown-mqtt2influxdb configuration - -# MQTT configuration -mqtt: - #host: 127.0.0.1 - #port: 1883 - -# InfluxDB configuration -influxdb: - #host: 127.0.0.1 - #port: 8086 - #database: node - -# This is default configuration used to mirror all values produced by default -# BigClown modules firmware. You might want to add your topics or drop those for -# modules you don't own. -points: - - measurement: temperature - topic: node/+/thermometer/+/temperature - fields: - value: $.payload - tags: - id: $.topic[1] - channel: $.topic[3] - - - measurement: relative-humidity - topic: node/+/hygrometer/0:4/relative-humidity - fields: - value: $.payload - tags: - id: $.topic[1] - - - measurement: illuminance - topic: node/+/lux-meter/0:0/illuminance - fields: - value: $.payload - tags: - id: $.topic[1] - - - measurement: pressure - topic: node/+/barometer/0:0/pressure - fields: - value: $.payload - tags: - id: $.topic[1] - - - measurement: co2 - topic: node/+/co2-meter/-/concentration - fields: - value: $.payload - tags: - id: $.topic[1] - - - measurement: voltage - topic: node/+/battery/+/voltage - fields: - value: $.payload - tags: - id: $.topic[1] - - - measurement: button - topic: node/+/push-button/+/event-count - fields: - value: $.payload - tags: - id: $.topic[1] - channel: $.topic[3] diff --git a/utils/bigclown/bigclown-mqtt2influxdb/files/init b/utils/bigclown/bigclown-mqtt2influxdb/files/init deleted file mode 100644 index 5c95600ffd8e3..0000000000000 --- a/utils/bigclown/bigclown-mqtt2influxdb/files/init +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh /etc/rc.common - -START=99 -STOP=1 - -USE_PROCD=1 - -PROG=/usr/bin/mqtt2influxdb -CONF=/etc/bigclown-mqtt2influxdb.yml - -start_service() { - procd_open_instance - procd_set_param command "$PROG" -d -c "$CONF" - procd_set_param stdout 1 - procd_set_param stderr 1 - procd_close_instance -} - -stop_service() { - service_stop "$PROG" -}