From 8c693b789bba8cf05fd12664edb8ad5ca4006e36 Mon Sep 17 00:00:00 2001 From: hauke Date: Wed, 5 Feb 2014 22:41:37 +0000 Subject: [PATCH] mosquitto: bump 1.2 to 1.2.3 This includes UCI support for a new config option, bridge_tls_version. Add bridge tls vesion support Updates mosquitto, the MQTT broker, and client libraries to version 1.2.2, from version 1.2.0. Changes are bugfixes, most relevant to OpenWrt being that the -nossl package variant actually builds again, and greatly improved SSL performance. This includes the full changes for 1.2.3: http://mosquitto.org/2013/12/version-1-2-3-released/ This includes the full changes for 1.2.2: http://mosquitto.org/2013/10/version-1-2-2-released/ This includes the full changes for 1.2.1: http://mosquitto.org/2013/09/version-1-2-1-released/ Signed-off-by: Karl Palsson git-svn-id: svn://svn.openwrt.org/openwrt/packages@39495 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- net/mosquitto/Makefile | 4 ++-- net/mosquitto/files/mosquitto.uci.convert | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/net/mosquitto/Makefile b/net/mosquitto/Makefile index f4ba8ed8f..45250c872 100644 --- a/net/mosquitto/Makefile +++ b/net/mosquitto/Makefile @@ -9,12 +9,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mosquitto -PKG_VERSION:=1.2 +PKG_VERSION:=1.2.3 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://mosquitto.org/files/source/ -PKG_MD5SUM:=424bfd84a7c923ccc2ea36c8bee558b2 +PKG_MD5SUM:=0874beeff51b3c64d4a7b2d5f9498288 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION) diff --git a/net/mosquitto/files/mosquitto.uci.convert b/net/mosquitto/files/mosquitto.uci.convert index f8991a33b..7932ef18f 100644 --- a/net/mosquitto/files/mosquitto.uci.convert +++ b/net/mosquitto/files/mosquitto.uci.convert @@ -80,5 +80,9 @@ if [ $HATE_SECTION_COUNT -gt 0 ]; then if [ $? -eq 0 ]; then echo "bridge_psk $BRIDGEPSK" >> $TCONF fi + BRIDGETLSVERSION=$(uci -q get mosquitto.@bridge[-$i].tls_version) + if [ $? -eq 0 ]; then + echo "bridge_tls_version $BRIDGETLSVERSION" >> $TCONF + fi done fi