public inbox for buildroot@busybox.net
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/paho-mqtt-c: bump version to 1.3.16
@ 2026-03-10 13:41 Scott Fan
  2026-03-10 13:41 ` [Buildroot] [PATCH 2/2] package/paho-mqtt-cpp: bump to version 1.6.0 Scott Fan
  0 siblings, 1 reply; 2+ messages in thread
From: Scott Fan @ 2026-03-10 13:41 UTC (permalink / raw)
  To: buildroot; +Cc: Scott Fan, Julien Grossholtz

Release notes:
https://github.com/eclipse-paho/paho.mqtt.c/releases/tag/v1.3.16

Signed-off-by: Scott Fan <fancp2007@gmail.com>
---
 package/paho-mqtt-c/paho-mqtt-c.hash | 2 +-
 package/paho-mqtt-c/paho-mqtt-c.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/paho-mqtt-c/paho-mqtt-c.hash b/package/paho-mqtt-c/paho-mqtt-c.hash
index 8ca597c4f9..59c74cd044 100644
--- a/package/paho-mqtt-c/paho-mqtt-c.hash
+++ b/package/paho-mqtt-c/paho-mqtt-c.hash
@@ -1,5 +1,5 @@
 # Locally computed:
-sha256  60ce2cfdc146fcb81c621cb8b45874d2eb1d4693105d048f60e31b8f3468be90  paho-mqtt-c-1.3.15.tar.gz
+sha256  8b960f51edc7e03507637d987882bc486d8f4be6e79431bf99e2763344fd14c5  paho-mqtt-c-1.3.16.tar.gz
 sha256  83bbba033dc985487e321b6dfde111772affb73460be48726299fed3da684b1c  edl-v10
 sha256  0becf16567beb77fa252b7664631dd177c8f9a1889e48995b45379c7130e5303  epl-v20
 sha256  bc0f3f447097eb82a29ad6c2f4929572bb548b6bd4c9e38fde1bf131a771b7a0  LICENSE
diff --git a/package/paho-mqtt-c/paho-mqtt-c.mk b/package/paho-mqtt-c/paho-mqtt-c.mk
index acff7d5cc3..3a6a4e4b31 100644
--- a/package/paho-mqtt-c/paho-mqtt-c.mk
+++ b/package/paho-mqtt-c/paho-mqtt-c.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-PAHO_MQTT_C_VERSION = 1.3.15
+PAHO_MQTT_C_VERSION = 1.3.16
 PAHO_MQTT_C_SITE = $(call github,eclipse,paho.mqtt.c,v$(PAHO_MQTT_C_VERSION))
 PAHO_MQTT_C_LICENSE = EPL-2.0 or BSD-3-Clause
 PAHO_MQTT_C_LICENSE_FILES = epl-v20 edl-v10 LICENSE
-- 
2.43.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [Buildroot] [PATCH 2/2] package/paho-mqtt-cpp: bump to version 1.6.0
  2026-03-10 13:41 [Buildroot] [PATCH 1/2] package/paho-mqtt-c: bump version to 1.3.16 Scott Fan
@ 2026-03-10 13:41 ` Scott Fan
  0 siblings, 0 replies; 2+ messages in thread
From: Scott Fan @ 2026-03-10 13:41 UTC (permalink / raw)
  To: buildroot; +Cc: Scott Fan, Daniel Lang, Julien Grossholtz, Refik Tuzakli

This release bumped Paho C submodule to v1.3.16 and updated directory name
to externals/paho.mqtt.c

Release notes:
https://github.com/eclipse-paho/paho.mqtt.cpp/releases/tag/v1.6.0

Changelog:
https://github.com/eclipse-paho/paho.mqtt.cpp/blob/v1.6.0/CHANGELOG.md

As of 1.5.0, a C++17 compiler is required to compile the library.

Also add missing LICENSE to the list of license files.

Signed-off-by: Scott Fan <fancp2007@gmail.com>
---
 package/paho-mqtt-cpp/Config.in          | 6 ++++--
 package/paho-mqtt-cpp/paho-mqtt-cpp.hash | 3 ++-
 package/paho-mqtt-cpp/paho-mqtt-cpp.mk   | 4 ++--
 3 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/package/paho-mqtt-cpp/Config.in b/package/paho-mqtt-cpp/Config.in
index a46c1256e8..023487c45d 100644
--- a/package/paho-mqtt-cpp/Config.in
+++ b/package/paho-mqtt-cpp/Config.in
@@ -1,6 +1,7 @@
 config BR2_PACKAGE_PAHO_MQTT_CPP
 	bool "paho-mqtt-cpp"
 	depends on BR2_TOOLCHAIN_HAS_THREADS
+	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
 	depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # std::future
 	depends on BR2_INSTALL_LIBSTDCPP
 	select BR2_PACKAGE_PAHO_MQTT_C
@@ -9,8 +10,9 @@ config BR2_PACKAGE_PAHO_MQTT_CPP
 
 	  https://eclipse.org/paho/clients/cpp/
 
-comment "paho-mqtt-cpp needs a toolchain w/ threads, C++"
-	depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
+comment "paho-mqtt-cpp needs a toolchain w/ threads, gcc >= 7, C++"
+	depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP \
+		|| !BR2_TOOLCHAIN_GCC_AT_LEAST_7
 	depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735
 
 comment "paho-mqtt-cpp needs a toolchain not affected by GCC bug 64735"
diff --git a/package/paho-mqtt-cpp/paho-mqtt-cpp.hash b/package/paho-mqtt-cpp/paho-mqtt-cpp.hash
index a35cd102b3..16807257f1 100644
--- a/package/paho-mqtt-cpp/paho-mqtt-cpp.hash
+++ b/package/paho-mqtt-cpp/paho-mqtt-cpp.hash
@@ -1,4 +1,5 @@
 # Locally computed:
-sha256  c271d521287f417102b447b3d1e8d17be0e0f6a3b0b653334ebcd2ccd20d1e46  paho-mqtt-cpp-1.3.2.tar.gz
+sha256  73bdb408ae98812c5c2b7f00b2ae7c4fdb9798424abe5a7f7afb13c8fd462156  paho-mqtt-cpp-1.6.0.tar.gz
 sha256  83bbba033dc985487e321b6dfde111772affb73460be48726299fed3da684b1c  edl-v10
 sha256  0becf16567beb77fa252b7664631dd177c8f9a1889e48995b45379c7130e5303  epl-v20
+sha256  bc0f3f447097eb82a29ad6c2f4929572bb548b6bd4c9e38fde1bf131a771b7a0  LICENSE
diff --git a/package/paho-mqtt-cpp/paho-mqtt-cpp.mk b/package/paho-mqtt-cpp/paho-mqtt-cpp.mk
index 2e0f409b96..e42c2dffdf 100644
--- a/package/paho-mqtt-cpp/paho-mqtt-cpp.mk
+++ b/package/paho-mqtt-cpp/paho-mqtt-cpp.mk
@@ -4,10 +4,10 @@
 #
 ################################################################################
 
-PAHO_MQTT_CPP_VERSION = 1.3.2
+PAHO_MQTT_CPP_VERSION = 1.6.0
 PAHO_MQTT_CPP_SITE = $(call github,eclipse,paho.mqtt.cpp,v$(PAHO_MQTT_CPP_VERSION))
 PAHO_MQTT_CPP_LICENSE = EPL-2.0 or BSD-3-Clause
-PAHO_MQTT_CPP_LICENSE_FILES = epl-v20 edl-v10
+PAHO_MQTT_CPP_LICENSE_FILES = epl-v20 edl-v10 LICENSE
 PAHO_MQTT_CPP_INSTALL_STAGING = YES
 PAHO_MQTT_CPP_DEPENDENCIES = paho-mqtt-c
 
-- 
2.43.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-03-10 13:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-10 13:41 [Buildroot] [PATCH 1/2] package/paho-mqtt-c: bump version to 1.3.16 Scott Fan
2026-03-10 13:41 ` [Buildroot] [PATCH 2/2] package/paho-mqtt-cpp: bump to version 1.6.0 Scott Fan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox