Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package farstream for openSUSE:Factory checked in at 2026-05-04 14:42:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/farstream (Old) and /work/SRC/openSUSE:Factory/.farstream.new.30200 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "farstream" Mon May 4 14:42:05 2026 rev:24 rq:1350659 version:0.2.9+5 Changes: -------- --- /work/SRC/openSUSE:Factory/farstream/farstream.changes 2022-09-21 14:39:34.789280280 +0200 +++ /work/SRC/openSUSE:Factory/.farstream.new.30200/farstream.changes 2026-05-04 14:42:09.126584117 +0200 @@ -1,0 +2,7 @@ +Mon May 4 10:15:11 UTC 2026 - Dominique Leuenberger <[email protected]> + +- Add farstream-const-discards.patch: fix build against glibc 2.43 + (initialization discards 'const' qualifier from pointer target + type). + +------------------------------------------------------------------- New: ---- _scmsync.obsinfo build.specials.obscpio farstream-const-discards.patch ----------(New B)---------- New: - Add farstream-const-discards.patch: fix build against glibc 2.43 (initialization discards 'const' qualifier from pointer target ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ farstream.spec ++++++ --- /var/tmp/diff_new_pack.FuxfV2/_old 2026-05-04 14:42:09.826612879 +0200 +++ /var/tmp/diff_new_pack.FuxfV2/_new 2026-05-04 14:42:09.826612879 +0200 @@ -36,6 +36,8 @@ Patch1: farstream-glib-non-volatile.patch # PATCH-FIX-OPENSUSE farstream-drop-examples.patch -- Drop building examples Patch2: farstream-drop-examples.patch +# PATCH-FIX-UPSTREAM https://gitlab.freedesktop.org/farstream/farstream/-/work_items/26 +Patch3: farstream-const-discards.patch BuildRequires: fdupes BuildRequires: glib2-devel >= 2.32 ++++++ _scmsync.obsinfo ++++++ mtime: 1777890751 commit: 1b0713687af600b67f21961eb6cdb2d497ba8245cbabe36729d53cd6593d581a url: https://src.opensuse.org/GNOME/farstream revision: 1b0713687af600b67f21961eb6cdb2d497ba8245cbabe36729d53cd6593d581a projectscmsync: https://src.opensuse.org/GNOME/_ObsPrj ++++++ build.specials.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.gitignore new/.gitignore --- old/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/.gitignore 2026-05-04 12:32:31.000000000 +0200 @@ -0,0 +1,4 @@ +*.obscpio +*.osc +_build.* +.pbuild ++++++ farstream-const-discards.patch ++++++ diff --git a/gst/fsrtpconference/fs-rtp-discover-codecs.c b/gst/fsrtpconference/fs-rtp-discover-codecs.c index e53fbdb2..39813d81 100644 --- a/gst/fsrtpconference/fs-rtp-discover-codecs.c +++ b/gst/fsrtpconference/fs-rtp-discover-codecs.c @@ -742,7 +742,7 @@ parse_codec_cap_list (GList *list, FsMediaType media_type) static gboolean klass_contains (const gchar *klass, const gchar *needle) { - gchar *found = strstr (klass, needle); + const gchar *found = strstr (klass, needle); if (!found) return FALSE;
