From ebabcd6263bff13d2a809349c6a044191efc60b9 Mon Sep 17 00:00:00 2001 From: Bernd Kuhls Date: Tue, 30 Dec 2025 12:45:23 +0100 Subject: [PATCH] package/opentracing-cpp: remove package Quoting https://github.com/opentracing/opentracing-cpp "This library is DEPRECATED!" https://github.com/opentracing/specification/issues/163 https://github.com/opentracing/opentracing.io/pull/460 The package is broken with cmake 4 and no other package depends on it. Fixes: https://autobuild.buildroot.net/results/cbc80ffb0dc4d4407bb788cec05d13ae37d1eff4/ Signed-off-by: Bernd Kuhls Cc: Jan Heylen Signed-off-by: Thomas Petazzoni --- Config.in.legacy | 6 +++++ DEVELOPERS | 3 --- package/Config.in | 1 - package/opentracing-cpp/Config.in | 18 ------------- package/opentracing-cpp/opentracing-cpp.hash | 3 --- package/opentracing-cpp/opentracing-cpp.mk | 28 -------------------- 6 files changed, 6 insertions(+), 53 deletions(-) delete mode 100644 package/opentracing-cpp/Config.in delete mode 100644 package/opentracing-cpp/opentracing-cpp.hash delete mode 100644 package/opentracing-cpp/opentracing-cpp.mk diff --git a/Config.in.legacy b/Config.in.legacy index 8e6c4a37e8..a0dad6461d 100644 --- a/Config.in.legacy +++ b/Config.in.legacy @@ -146,6 +146,12 @@ endif comment "Legacy options removed in 2026.02" +config BR2_PACKAGE_OPENTRACING_CPP + bool "opentracing-cpp has been removed" + select BR2_LEGACY + help + opentracing-cpp was deprecated upstream and has been removed + config BR2_PACKAGE_OPENPOWERLINK bool "openpowerlink has been removed" select BR2_LEGACY diff --git a/DEVELOPERS b/DEVELOPERS index e157e98f79..9775c85556 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -1564,9 +1564,6 @@ N: Jan Havran F: board/pine64/pinecube/ F: configs/pine64_pinecube_defconfig -N: Jan Heylen -F: package/opentracing-cpp/ - N: Jan Kraval F: board/orangepi/orangepi-lite F: configs/orangepi_lite_defconfig diff --git a/package/Config.in b/package/Config.in index 330216fcf0..857266c8f8 100644 --- a/package/Config.in +++ b/package/Config.in @@ -1955,7 +1955,6 @@ menu "Logging" source "package/log4cpp/Config.in" source "package/log4cxx/Config.in" source "package/log4qt/Config.in" - source "package/opentracing-cpp/Config.in" source "package/spdlog/Config.in" source "package/ulog/Config.in" source "package/zlog/Config.in" diff --git a/package/opentracing-cpp/Config.in b/package/opentracing-cpp/Config.in deleted file mode 100644 index ff3067b7d1..0000000000 --- a/package/opentracing-cpp/Config.in +++ /dev/null @@ -1,18 +0,0 @@ -config BR2_PACKAGE_OPENTRACING_CPP - bool "opentracing-cpp" - depends on BR2_INSTALL_LIBSTDCPP - depends on BR2_TOOLCHAIN_HAS_THREADS - depends on !BR2_STATIC_LIBS - depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11 - depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr - help - OpenTracing API for C++ - - http://opentracing.io - -comment "opentracing-cpp needs a toolchain w/ C++, threads, dynamic library, gcc >= 4.8" - depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \ - || BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 - -comment "opentracing-cpp needs exception_ptr" - depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 diff --git a/package/opentracing-cpp/opentracing-cpp.hash b/package/opentracing-cpp/opentracing-cpp.hash deleted file mode 100644 index 8cfaf5fd47..0000000000 --- a/package/opentracing-cpp/opentracing-cpp.hash +++ /dev/null @@ -1,3 +0,0 @@ -# Locally calculated -sha256 5b170042da4d1c4c231df6594da120875429d5231e9baa5179822ee8d1054ac3 opentracing-cpp-1.6.0.tar.gz -sha256 076d03156735d5ff2df2ea0f8b12351ef65e5e9222b5c8c6a35101dadb41e717 LICENSE diff --git a/package/opentracing-cpp/opentracing-cpp.mk b/package/opentracing-cpp/opentracing-cpp.mk deleted file mode 100644 index 12ce40fbed..0000000000 --- a/package/opentracing-cpp/opentracing-cpp.mk +++ /dev/null @@ -1,28 +0,0 @@ -################################################################################ -# -# opentracing-cpp -# -################################################################################ - -OPENTRACING_CPP_VERSION = 1.6.0 -OPENTRACING_CPP_SITE = \ - $(call github,opentracing,opentracing-cpp,v$(OPENTRACING_CPP_VERSION)) -OPENTRACING_CPP_LICENSE = Apache-2.0 -OPENTRACING_CPP_LICENSE_FILES = LICENSE - -OPENTRACING_CPP_INSTALL_STAGING = YES - -# BUILD_SHARED_LIBS is handled in pkg-cmake.mk as it is a generic cmake variable -# although BUILD_STATIC_LIBS=ON is default, make it explicit, -# cmake and static/shared libs is confusing enough already. -ifeq ($(BR2_STATIC_LIBS),y) -OPENTRACING_CPP_CONF_OPTS += -DBUILD_STATIC_LIBS=ON -else ifeq ($(BR2_SHARED_STATIC_LIBS),y) -OPENTRACING_CPP_CONF_OPTS += -DBUILD_STATIC_LIBS=ON -else ifeq ($(BR2_SHARED_LIBS),y) -OPENTRACING_CPP_CONF_OPTS += -DBUILD_STATIC_LIBS=OFF -endif - -OPENTRACING_CPP_CONF_OPTS += -DENABLE_LINTING=OFF - -$(eval $(cmake-package))