From 408502ee0ad3049c2e9f8420166a342c819bc7c7 Mon Sep 17 00:00:00 2001 From: Quintin Hill Date: Thu, 6 Apr 2023 09:13:08 +0100 Subject: [PATCH] python3-ble2mqtt: add init script Note that init script won't do much without configuration provided. The init script comes from the upstream README file. Also add missing dependency. Signed-off-by: Quintin Hill --- lang/python/python-ble2mqtt/Makefile | 9 +++++++-- lang/python/python-ble2mqtt/files/ble2mqtt.init | 15 +++++++++++++++ 2 files changed, 22 insertions(+), 2 deletions(-) create mode 100755 lang/python/python-ble2mqtt/files/ble2mqtt.init diff --git a/lang/python/python-ble2mqtt/Makefile b/lang/python/python-ble2mqtt/Makefile index 9fff9beba4..7cd5c7eaa4 100644 --- a/lang/python/python-ble2mqtt/Makefile +++ b/lang/python/python-ble2mqtt/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=python-ble2mqtt PKG_VERSION:=0.1.5 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PYPI_NAME:=ble2mqtt PKG_HASH:=0015cae0c36badb48cbd4a1c8b1a8029e45ab0891a95363fe00624c2629b4510 @@ -27,7 +27,7 @@ define Package/python3-ble2mqtt SUBMENU:=Python TITLE:=Bluetooth to MQTT bridge URL:=https://github.com/devbis/ble2mqtt/ - DEPENDS:=+python3-light +python3-aio-mqtt-mod +python3-asyncio +python3-bleak +python3-logging + DEPENDS:=+python3-light +python3-aio-mqtt-mod +python3-asyncio +python3-bleak +python3-logging +python3-uuid endef define Package/python3-ble2mqtt/description @@ -35,6 +35,11 @@ define Package/python3-ble2mqtt/description devices to your smart home endef +define Py3Package/python3-ble2mqtt/install + $(INSTALL_DIR) $(1)/etc/init.d + $(INSTALL_BIN) ./files/ble2mqtt.init $(1)/etc/init.d/ble2mqtt +endef + $(eval $(call Py3Package,python3-ble2mqtt)) $(eval $(call BuildPackage,python3-ble2mqtt)) $(eval $(call BuildPackage,python3-ble2mqtt-src)) diff --git a/lang/python/python-ble2mqtt/files/ble2mqtt.init b/lang/python/python-ble2mqtt/files/ble2mqtt.init new file mode 100755 index 0000000000..e3651c0af5 --- /dev/null +++ b/lang/python/python-ble2mqtt/files/ble2mqtt.init @@ -0,0 +1,15 @@ +#!/bin/sh /etc/rc.common + +START=98 +USE_PROCD=1 + +start_service() +{ + procd_open_instance + + procd_set_param env BLE2MQTT_CONFIG=/etc/ble2mqtt.json + procd_set_param command /usr/bin/ble2mqtt + procd_set_param stdout 1 + procd_set_param stderr 1 + procd_close_instance +}