Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package bladeRF for openSUSE:Factory checked in at 2026-05-04 12:55:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/bladeRF (Old) and /work/SRC/openSUSE:Factory/.bladeRF.new.30200 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "bladeRF" Mon May 4 12:55:05 2026 rev:22 rq:1350627 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/bladeRF/bladeRF.changes 2025-10-07 18:31:19.032936164 +0200 +++ /work/SRC/openSUSE:Factory/.bladeRF.new.30200/bladeRF.changes 2026-05-04 12:58:53.986771531 +0200 @@ -1,0 +2,5 @@ +Mon May 4 08:13:25 UTC 2026 - Marcus Meissner <[email protected]> + +- bladeRF-build-fix.patch: fix build with new gcc + +------------------------------------------------------------------- New: ---- bladeRF-build-fix.patch ----------(New B)---------- New: - bladeRF-build-fix.patch: fix build with new gcc ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ bladeRF.spec ++++++ --- /var/tmp/diff_new_pack.Yhlh6V/_old 2026-05-04 12:58:54.670799682 +0200 +++ /var/tmp/diff_new_pack.Yhlh6V/_new 2026-05-04 12:58:54.674799847 +0200 @@ -1,7 +1,7 @@ # # spec file for package bladeRF # -# Copyright (c) 2025 SUSE LLC and contributors +# Copyright (c) 2026 SUSE LLC and contributors # Copyright (c) 2013-2015 Wojciech Kazubski, [email protected] # # All modifications and additions to the file contributed by third parties @@ -34,6 +34,7 @@ #Git-Clone: https://github.com/Nuand/bladeRF.git Source0: %{name}-%{release_name}.tar.xz Patch0: bladeRF-doxygen-no-timestamp.patch +Patch1: bladeRF-build-fix.patch BuildRequires: cmake >= 3.5 BuildRequires: doxygen BuildRequires: fdupes ++++++ bladeRF-build-fix.patch ++++++ Index: bladeRF-2025.10/host/utilities/bladeRF-cli/src/input/tecla.c =================================================================== --- bladeRF-2025.10.orig/host/utilities/bladeRF-cli/src/input/tecla.c +++ bladeRF-2025.10/host/utilities/bladeRF-cli/src/input/tecla.c @@ -35,7 +35,7 @@ WordCompletion *tab_complete = NULL; int tab_completion(WordCompletion *cpl, void *data, const char *line, int w_end) { static const char file_param[] = "file="; - char *param = strstr(line, file_param); + const char *param = strstr(line, file_param); int ret; if (param != NULL) {
