Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package fyi for openSUSE:Factory checked in at 2026-05-09 12:59:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/fyi (Old) and /work/SRC/openSUSE:Factory/.fyi.new.1966 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "fyi" Sat May 9 12:59:55 2026 rev:3 rq:1352140 version:1.0.4 Changes: -------- --- /work/SRC/openSUSE:Factory/fyi/fyi.changes 2024-09-05 15:48:13.850670356 +0200 +++ /work/SRC/openSUSE:Factory/.fyi.new.1966/fyi.changes 2026-05-09 13:00:18.378299669 +0200 @@ -1,0 +2,6 @@ +Fri May 8 22:12:50 UTC 2026 - llyyr <[email protected]> + +- Add patch to resolve build failure with glibc >= 2.43: + fix-build-glibc2.43.diff + +------------------------------------------------------------------- New: ---- fix-build-glibc2.43.diff ----------(New B)---------- New:- Add patch to resolve build failure with glibc >= 2.43: fix-build-glibc2.43.diff ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ fyi.spec ++++++ --- /var/tmp/diff_new_pack.20xCgj/_old 2026-05-09 13:00:18.842318710 +0200 +++ /var/tmp/diff_new_pack.20xCgj/_new 2026-05-09 13:00:18.846318874 +0200 @@ -1,7 +1,7 @@ # # spec file for package fyi # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -23,6 +23,7 @@ License: MIT URL: https://codeberg.org/dnkl/fyi Source0: https://codeberg.org/dnkl/fyi/archive/%{version}.tar.gz +Patch1: fix-build-glibc2.43.diff BuildRequires: meson BuildRequires: scdoc BuildRequires: pkgconfig(dbus-1) ++++++ fix-build-glibc2.43.diff ++++++ diff --git a/main.c b/main.c index 9793bfe746c8..469278efa16b 100644 --- a/main.c +++ b/main.c @@ -551,8 +551,8 @@ main(int argc, char *const *argv) } case 'H': { - const char *type_str = optarg; - const char *name = NULL; + char *type_str = optarg; + char *name = NULL; const char *value = NULL; char *split = strchr(type_str, ':');
