[Buildroot] [PATCH 4/7] package/domoticz: bump version to 2026.3
From: Bernd Kuhls <hidden>
Date: 2026-09-14 19:21:34
Subsystem:
the rest · Maintainer:
Linus Torvalds
Added new dependency jwt-cpp needed since 2025.1: https://github.com/domoticz/domoticz/commit/b30d9e9436ad428a2cbfd1fbb273461bdbf50a82 Added _EXTRA_DOWNLOAD for libwebem after its split from domoticz: https://github.com/domoticz/domoticz/commit/7de4834e9959e8a9a21a2b82bb7700ea5af6e618 to avoid fetching git submodules. Use version number from upstream repo: https://github.com/domoticz/domoticz/tree/2026.3/extern Raised minimum gcc version because libwebem depends on c++17: https://github.com/domoticz/libwebem/blob/master/README.md Removed configure option USE_BUILTIN_MQTT due to its upstream removal: https://github.com/domoticz/domoticz/commit/be95eec094bf524c1ab011eebcd797d3b19b17fc Link to libatomic to fix a build error output/per-package/domoticz/host/opt/ext-toolchain/bin/../lib/gcc/arc-buildroot-linux-uclibc/15.3.0/../../../../arc-buildroot-linux-uclibc/bin/ld: CMakeFiles/domoticz.dir/hardware/Matter.cpp.o: undefined reference to symbol '__atomic_load_8@@LIBATOMIC_1.0' detected by the Gitlab pipelines which is introduced by upstream commit https://github.com/domoticz/domoticz/commit/ec5488a7df963af4b260a92bfecea53edc20b136 that added hardware/Matter.cpp in version 2026.2. Signed-off-by: Bernd Kuhls <redacted> --- Gitlab pipelines passed for this patch: https://gitlab.com/bkuhls/buildroot/-/commits/3bf0746866cb1710fab45e7c57a3dc5e0ad9334c package/domoticz/Config.in | 7 ++++--- package/domoticz/domoticz.hash | 3 ++- package/domoticz/domoticz.mk | 27 +++++++++++++++++++++++---- 3 files changed, 29 insertions(+), 8 deletions(-)
diff --git a/package/domoticz/Config.in b/package/domoticz/Config.in
index a0e69a7601..2af63baecf 100644
--- a/package/domoticz/Config.in
+++ b/package/domoticz/Config.in@@ -2,7 +2,7 @@ config BR2_PACKAGE_DOMOTICZ bool "domoticz" depends on BR2_USE_MMU # fork() depends on !BR2_STATIC_LIBS - depends on BR2_TOOLCHAIN_GCC_AT_LEAST_6 # C++14 + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17 # pthread_condattr_setclock depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # mosquitto depends on BR2_INSTALL_LIBSTDCPP
@@ -17,6 +17,7 @@ config BR2_PACKAGE_DOMOTICZ select BR2_PACKAGE_BOOST_THREAD select BR2_PACKAGE_CEREAL select BR2_PACKAGE_JSONCPP + select BR2_PACKAGE_JWT_CPP select BR2_PACKAGE_LIBCURL select BR2_PACKAGE_MINIZIP_ZLIB select BR2_PACKAGE_MOSQUITTO
@@ -32,11 +33,11 @@ config BR2_PACKAGE_DOMOTICZ http://domoticz.com -comment "domoticz needs lua 5.3 and a toolchain w/ C++, gcc >= 6, NPTL, wchar, dynamic library" +comment "domoticz needs lua 5.3 and a toolchain w/ C++, gcc >= 7, NPTL, wchar, dynamic library" depends on BR2_USE_MMU depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS depends on !BR2_INSTALL_LIBSTDCPP || \ - !BR2_TOOLCHAIN_GCC_AT_LEAST_6 || \ + !BR2_TOOLCHAIN_GCC_AT_LEAST_7 || \ !BR2_TOOLCHAIN_HAS_THREADS_NPTL || \ !BR2_USE_WCHAR || BR2_STATIC_LIBS || \ !BR2_PACKAGE_LUA_5_3
diff --git a/package/domoticz/domoticz.hash b/package/domoticz/domoticz.hash
index ae86a67b79..fc3904ade7 100644
--- a/package/domoticz/domoticz.hash
+++ b/package/domoticz/domoticz.hash@@ -1,3 +1,4 @@ # Locally computed: -sha256 d87113d7cacd0b52b9126fcc1ef24e140a4f7042d5bc6262e86e4b4752f5cf38 domoticz-2024.4.tar.gz +sha256 10053191b4f6becdf244d2a416b9e655c91d357b51dd8280832c6e36f7d5d5c7 domoticz-2026.3.tar.gz +sha256 937e31bfb4b414bb33e70cad1403afd023dfff6cebba3213ec62a9c91525dcab libwebem-9126af0ce3456c24b936dfb20d1b5a8bdb797104.tar.gz sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 License.txt
diff --git a/package/domoticz/domoticz.mk b/package/domoticz/domoticz.mk
index 95d3335adb..5387076b97 100644
--- a/package/domoticz/domoticz.mk
+++ b/package/domoticz/domoticz.mk@@ -4,16 +4,30 @@ # ################################################################################ -DOMOTICZ_VERSION = 2024.4 +DOMOTICZ_VERSION = 2026.3 DOMOTICZ_SITE = $(call github,domoticz,domoticz,$(DOMOTICZ_VERSION)) DOMOTICZ_LICENSE = GPL-3.0 DOMOTICZ_LICENSE_FILES = License.txt DOMOTICZ_CPE_ID_VENDOR = domoticz + +DOMOTICZ_LIBWEBEM_VERSION = 9126af0ce3456c24b936dfb20d1b5a8bdb797104 +DOMOTICZ_EXTRA_DOWNLOADS = \ + $(call github,domoticz,libwebem,$(DOMOTICZ_LIBWEBEM_VERSION))/libwebem-$(DOMOTICZ_LIBWEBEM_VERSION).tar.gz + +define DOMOTICZ_INSTALL_SUBPROJECTS + rm -rf $(@D)/extern/libwebem + mkdir -p $(@D)/extern/libwebem + $(TAR) --strip-components=1 -C $(@D)/extern/libwebem \ + -xf $(DOMOTICZ_DL_DIR)/libwebem-$(DOMOTICZ_LIBWEBEM_VERSION).tar.gz +endef +DOMOTICZ_POST_EXTRACT_HOOKS += DOMOTICZ_INSTALL_SUBPROJECTS + DOMOTICZ_DEPENDENCIES = \ boost \ cereal \ host-pkgconf \ jsoncpp \ + jwt-cpp \ libcurl \ lua \ minizip-zlib \
@@ -25,6 +39,11 @@ DOMOTICZ_DEPENDENCIES = \ # Disable precompiled header as it needs cmake >= 3.16 DOMOTICZ_CONF_OPTS = -DUSE_PRECOMPILED_HEADER=OFF +# Uses __atomic_load_8 +ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y) +DOMOTICZ_CONF_OPTS += -DCMAKE_EXE_LINKER_FLAGS=-latomic +endif + # Due to the dependency on mosquitto, domoticz depends on # !BR2_STATIC_LIBS so set USE_STATIC_BOOST and USE_OPENSSL_STATIC to OFF DOMOTICZ_CONF_OPTS += \
@@ -32,12 +51,12 @@ DOMOTICZ_CONF_OPTS += \ -DUSE_OPENSSL_STATIC=OFF # Do not use any built-in libraries which are enabled by default for -# jsoncpp, fmt, minizip, sqlite and mqtt +# jsoncpp, jwt-cpp, minizip and sqlite DOMOTICZ_CONF_OPTS += \ -DUSE_BUILTIN_JSONCPP=OFF \ + -DUSE_BUILTIN_JWTCPP=OFF \ -DUSE_BUILTIN_MINIZIP=OFF \ - -DUSE_BUILTIN_SQLITE=OFF \ - -DUSE_BUILTIN_MQTT=OFF + -DUSE_BUILTIN_SQLITE=OFF ifeq ($(BR2_PACKAGE_LIBEXECINFO),y) DOMOTICZ_DEPENDENCIES += libexecinfo
--
2.47.3
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot