Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package pipewire for openSUSE:Factory checked in at 2026-03-31 15:22:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pipewire (Old) and /work/SRC/openSUSE:Factory/.pipewire.new.1999 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pipewire" Tue Mar 31 15:22:18 2026 rev:152 rq:1343703 version:1.6.2 Changes: -------- --- /work/SRC/openSUSE:Factory/pipewire/pipewire.changes 2026-03-17 19:04:19.920260087 +0100 +++ /work/SRC/openSUSE:Factory/.pipewire.new.1999/pipewire.changes 2026-03-31 15:22:47.025563006 +0200 @@ -1,0 +2,6 @@ +Wed Mar 25 10:09:52 UTC 2026 - Richard Biener <[email protected]> + +- Add pipewire-const-correctness-1.patch and pipewire-const-correctness-2.patch + picking upstream changes to fix build with glibc 2.43 + +------------------------------------------------------------------- New: ---- pipewire-const-correctness-1.patch pipewire-const-correctness-2.patch ----------(New B)---------- New: - Add pipewire-const-correctness-1.patch and pipewire-const-correctness-2.patch picking upstream changes to fix build with glibc 2.43 New: - Add pipewire-const-correctness-1.patch and pipewire-const-correctness-2.patch picking upstream changes to fix build with glibc 2.43 ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pipewire.spec ++++++ --- /var/tmp/diff_new_pack.Db7pXm/_old 2026-03-31 15:22:51.757754697 +0200 +++ /var/tmp/diff_new_pack.Db7pXm/_new 2026-03-31 15:22:51.773755345 +0200 @@ -1,6 +1,7 @@ # # spec file for package pipewire # +# Copyright (c) 2026 SUSE LLC # Copyright (c) 2026 SUSE LLC and contributors # Copyright (c) 2018 Luciano Santos, [email protected]. # @@ -83,6 +84,8 @@ Patch0: reduce-meson-dependency.patch Patch1: 0001-pulse-server-add-client-props-to-sink_input_source_output.patch Patch3: 0003-modules-improve-error-reporting.patch +Patch4: pipewire-const-correctness-1.patch +Patch5: pipewire-const-correctness-2.patch BuildRequires: docutils %if 0%{suse_version} > 1500 ++++++ pipewire-const-correctness-1.patch ++++++ >From c847b8162959c29b783585e0dcadbfb096e7cb73 Mon Sep 17 00:00:00 2001 From: Ripley Tom <[email protected]> Date: Sat, 21 Feb 2026 19:33:11 +0100 Subject: [PATCH] spa/plugins/alsa/acp/compat.h: Fix missed -Wdiscarded-qualifiers warning --- spa/plugins/alsa/acp/compat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spa/plugins/alsa/acp/compat.h b/spa/plugins/alsa/acp/compat.h index f7592e1a6..0f7b959df 100644 --- a/spa/plugins/alsa/acp/compat.h +++ b/spa/plugins/alsa/acp/compat.h @@ -429,9 +429,9 @@ static PA_PRINTF_FUNC(1,0) inline char *pa_vsprintf_malloc(const char *fmt, va_l #define pa_fopen_cloexec(f,m) fopen(f,m"e") -static inline char *pa_path_get_filename(const char *p) +static inline const char *pa_path_get_filename(const char *p) { - char *fn; + const char *fn; if (!p) return NULL; if ((fn = strrchr(p, PA_PATH_SEP_CHAR))) -- 2.51.0 ++++++ pipewire-const-correctness-2.patch ++++++ >From 1a37f445a20e67976c83360ab5830887fffe37e2 Mon Sep 17 00:00:00 2001 From: Rudi Heitbaum <[email protected]> Date: Tue, 17 Mar 2026 03:17:15 +1100 Subject: [PATCH] spa/plugins/alsa/acp/compat.h: p is already const do not recast --- spa/plugins/alsa/acp/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/alsa/acp/compat.h b/spa/plugins/alsa/acp/compat.h index 0f7b959df..87151d197 100644 --- a/spa/plugins/alsa/acp/compat.h +++ b/spa/plugins/alsa/acp/compat.h @@ -436,7 +436,7 @@ static inline const char *pa_path_get_filename(const char *p) return NULL; if ((fn = strrchr(p, PA_PATH_SEP_CHAR))) return fn+1; - return (char*) p; + return p; } static inline bool pa_is_path_absolute(const char *fn) -- 2.51.0
