Upgrade ShredOS to buildroot v24.11

This commit is contained in:
PartialVolume
2025-01-10 19:31:27 +00:00
parent d5280fc4e1
commit f39f161d58
4813 changed files with 61163 additions and 34069 deletions

View File

@@ -2,7 +2,7 @@ config BR2_PACKAGE_SDBUS_CPP
bool "sdbus-c++"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_PACKAGE_SYSTEMD
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_8 # C++20
help
sdbus-c++ is a high-level C++ D-Bus library for Linux
designed to provide expressive, easy-to-use API in modern C++.
@@ -11,6 +11,6 @@ config BR2_PACKAGE_SDBUS_CPP
https://github.com/Kistler-Group/sdbus-cpp
comment "sdbus-c++ needs systemd and a toolchain w/ C++, gcc >= 7"
comment "sdbus-c++ needs systemd and a toolchain w/ C++, gcc >= 8"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_PACKAGE_SYSTEMD || \
!BR2_TOOLCHAIN_GCC_AT_LEAST_7
!BR2_TOOLCHAIN_GCC_AT_LEAST_8

View File

@@ -1,6 +1,6 @@
config BR2_PACKAGE_HOST_SDBUS_CPP
bool "host sdbus-c++"
depends on BR2_HOST_GCC_AT_LEAST_7
depends on BR2_HOST_GCC_AT_LEAST_8 # C++20
help
sdbus-c++ is a high-level C++ D-Bus library for Linux
designed to provide expressive, easy-to-use API in modern C++.

View File

@@ -1,4 +1,4 @@
# Locally computed:
sha256 ca7405c7f0f9ae3023dcfa37bc68974c4b8a1c9ea2909b970e0aedc3e8657ee6 sdbus-cpp-1.4.0.tar.gz
sha256 88af4569161a0d0192f0f4a94582a1af4e75722499d06984fb7f91f638f5afb3 sdbus-cpp-2.0.0.tar.gz
sha256 20c17d8b8c48a600800dfd14f95d5cb9ff47066a9641ddeab48dc54aec96e331 COPYING
sha256 a1c9e75e25d8f2ce18017c88978edab2f0dbc7814ad0697d4ff2e5e59959f657 COPYING-LGPL-Exception

View File

@@ -4,7 +4,7 @@
#
################################################################################
SDBUS_CPP_VERSION = 1.4.0
SDBUS_CPP_VERSION = 2.0.0
SDBUS_CPP_SITE = $(call github,Kistler-Group,sdbus-cpp,v$(SDBUS_CPP_VERSION))
SDBUS_CPP_INSTALL_STAGING = YES
SDBUS_CPP_DEPENDENCIES = host-pkgconf systemd
@@ -14,10 +14,10 @@ SDBUS_CPP_LICENSE_FILES = COPYING COPYING-LGPL-Exception
# Host build for sdbus-c++-xml2cpp
HOST_SDBUS_CPP_DEPENDENCIES = host-pkgconf host-systemd
HOST_SDBUS_CPP_CONF_OPTS = \
-DBUILD_CODE_GEN=ON \
-DBUILD_DOC=OFF \
-DBUILD_TESTS=OFF \
-DBUILD_LIBSYSTEMD=OFF
-DSDBUSCPP_BUILD_CODEGEN=ON \
-DSDBUSCPP_BUILD_DOCS=OFF \
-DSDBUSCPP_BUILD_TESTS=OFF \
-DSDBUSCPP_BUILD_LIBSYSTEMD=OFF
$(eval $(cmake-package))
$(eval $(host-cmake-package))