Move all to deprecated folder.
This commit is contained in:
21
deprecated/firmware/buildroot/package/mosquitto/Config.in
Normal file
21
deprecated/firmware/buildroot/package/mosquitto/Config.in
Normal file
@@ -0,0 +1,21 @@
|
||||
config BR2_PACKAGE_MOSQUITTO
|
||||
bool "mosquitto"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
depends on !BR2_STATIC_LIBS # builds .so
|
||||
# Triggers the _gp link issue
|
||||
depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII
|
||||
help
|
||||
Mosquitto is an open source message broker that implements
|
||||
the MQ Telemetry Transport protocol versions 3.1 and
|
||||
3.1.1. MQTT provides a lightweight method of carrying out
|
||||
messaging using a publish/subscribe model. This makes it
|
||||
suitable for "machine to machine" messaging such as with low
|
||||
power sensors or mobile devices such as phones, embedded
|
||||
computers or microcontrollers like the Arduino.
|
||||
|
||||
http://mosquitto.org/
|
||||
|
||||
comment "mosquitto needs a toolchain w/ dynamic library"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_STATIC_LIBS
|
||||
depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII
|
||||
35
deprecated/firmware/buildroot/package/mosquitto/S50mosquitto
Normal file
35
deprecated/firmware/buildroot/package/mosquitto/S50mosquitto
Normal file
@@ -0,0 +1,35 @@
|
||||
#!/bin/sh
|
||||
|
||||
start() {
|
||||
printf "Starting mosquitto: "
|
||||
start-stop-daemon -S -q -m -b -p /var/run/mosquitto.pid \
|
||||
--exec /usr/sbin/mosquitto \
|
||||
-- -c /etc/mosquitto/mosquitto.conf
|
||||
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
||||
}
|
||||
stop() {
|
||||
printf "Stopping mosquitto: "
|
||||
start-stop-daemon -K -q -p /var/run/mosquitto.pid
|
||||
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
||||
}
|
||||
restart() {
|
||||
stop
|
||||
start
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
start
|
||||
;;
|
||||
stop)
|
||||
stop
|
||||
;;
|
||||
restart|reload)
|
||||
restart
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|restart}"
|
||||
exit 1
|
||||
esac
|
||||
|
||||
exit $?
|
||||
@@ -0,0 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 d96eb5610e57cc3e273f4527d3f54358ab7711459941a9e64bc4d0a85c2acfda mosquitto-1.4.8.tar.gz
|
||||
98
deprecated/firmware/buildroot/package/mosquitto/mosquitto.mk
Normal file
98
deprecated/firmware/buildroot/package/mosquitto/mosquitto.mk
Normal file
@@ -0,0 +1,98 @@
|
||||
################################################################################
|
||||
#
|
||||
# mosquitto
|
||||
#
|
||||
################################################################################
|
||||
|
||||
MOSQUITTO_VERSION = 1.4.8
|
||||
MOSQUITTO_SITE = http://mosquitto.org/files/source
|
||||
MOSQUITTO_LICENSE = EPLv1.0 or EDLv1.0
|
||||
MOSQUITTO_LICENSE_FILES = LICENSE.txt epl-v10 edl-v10
|
||||
MOSQUITTO_INSTALL_STAGING = YES
|
||||
|
||||
MOSQUITTO_MAKE_OPTS = \
|
||||
UNAME=Linux \
|
||||
STRIP=true \
|
||||
prefix=/usr \
|
||||
WITH_WRAP=no \
|
||||
WITH_DOCS=no
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
||||
MOSQUITTO_MAKE_OPTS += WITH_THREADING=yes
|
||||
else
|
||||
MOSQUITTO_MAKE_OPTS += WITH_THREADING=no
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
MOSQUITTO_DEPENDENCIES += openssl
|
||||
MOSQUITTO_MAKE_OPTS += WITH_TLS=yes
|
||||
else
|
||||
MOSQUITTO_MAKE_OPTS += WITH_TLS=no
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_C_ARES),y)
|
||||
MOSQUITTO_DEPENDENCIES += c-ares
|
||||
MOSQUITTO_MAKE_OPTS += WITH_SRV=yes
|
||||
else
|
||||
MOSQUITTO_MAKE_OPTS += WITH_SRV=no
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)
|
||||
MOSQUITTO_DEPENDENCIES += util-linux
|
||||
MOSQUITTO_MAKE_OPTS += WITH_UUID=yes
|
||||
else
|
||||
MOSQUITTO_MAKE_OPTS += WITH_UUID=no
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBWEBSOCKETS),y)
|
||||
MOSQUITTO_DEPENDENCIES += libwebsockets
|
||||
MOSQUITTO_MAKE_OPTS += WITH_WEBSOCKETS=yes
|
||||
else
|
||||
MOSQUITTO_MAKE_OPTS += WITH_WEBSOCKETS=no
|
||||
endif
|
||||
|
||||
# C++ support is only used to create a wrapper library
|
||||
ifneq ($(BR2_INSTALL_LIBSTDCPP),y)
|
||||
define MOSQUITTO_DISABLE_CPP
|
||||
$(SED) '/-C cpp/d' $(@D)/lib/Makefile
|
||||
endef
|
||||
|
||||
MOSQUITTO_POST_PATCH_HOOKS += MOSQUITTO_DISABLE_CPP
|
||||
endif
|
||||
|
||||
define MOSQUITTO_BUILD_CMDS
|
||||
$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) \
|
||||
$(MOSQUITTO_MAKE_OPTS)
|
||||
endef
|
||||
|
||||
define MOSQUITTO_INSTALL_STAGING_CMDS
|
||||
$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) \
|
||||
$(MOSQUITTO_MAKE_OPTS) DESTDIR=$(STAGING_DIR) install
|
||||
endef
|
||||
|
||||
define MOSQUITTO_INSTALL_TARGET_CMDS
|
||||
$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) \
|
||||
$(MOSQUITTO_MAKE_OPTS) DESTDIR=$(TARGET_DIR) install
|
||||
rm -f $(TARGET_DIR)/etc/mosquitto/*.example
|
||||
$(INSTALL) -D -m 0644 $(@D)/mosquitto.conf \
|
||||
$(TARGET_DIR)/etc/mosquitto/mosquitto.conf
|
||||
endef
|
||||
|
||||
define MOSQUITTO_INSTALL_INIT_SYSV
|
||||
$(INSTALL) -D -m 0755 package/mosquitto/S50mosquitto \
|
||||
$(TARGET_DIR)/etc/init.d/S50mosquitto
|
||||
endef
|
||||
|
||||
define MOSQUITTO_INSTALL_INIT_SYSTEMD
|
||||
$(INSTALL) -D -m 644 package/mosquitto/mosquitto.service \
|
||||
$(TARGET_DIR)/usr/lib/systemd/system/mosquitto.service
|
||||
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
||||
ln -fs ../../../../usr/lib/systemd/system/mosquitto.service \
|
||||
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/mosquitto.service
|
||||
endef
|
||||
|
||||
define MOSQUITTO_USERS
|
||||
mosquitto -1 nogroup -1 * - - - Mosquitto user
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
@@ -0,0 +1,10 @@
|
||||
[Unit]
|
||||
Description=Mosquitto MQTT broker
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/sbin/mosquitto -c /etc/mosquitto/mosquitto.conf
|
||||
ExecReload=/bin/kill -HUP $MAINPID
|
||||
Restart=always
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
Reference in New Issue
Block a user