Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package xfce4-session for openSUSE:Leap:16.0 checked in at 2025-08-12 11:33:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:16.0/xfce4-session (Old) and /work/SRC/openSUSE:Leap:16.0/.xfce4-session.new.1085 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xfce4-session" Tue Aug 12 11:33:40 2025 rev:5 rq:1298809 version:4.20.2 Changes: -------- --- /work/SRC/openSUSE:Leap:16.0/xfce4-session/xfce4-session.changes 2025-07-14 15:59:47.862733403 +0200 +++ /work/SRC/openSUSE:Leap:16.0/.xfce4-session.new.1085/xfce4-session.changes 2025-08-12 11:33:42.170897971 +0200 @@ -1,0 +2,6 @@ +Tue Aug 5 13:41:07 UTC 2025 - Takashi Iwai <ti...@suse.com> + +- Fix the audio mixer invocation on Wayland (bsc#1247640): + xfce4-session-drop-amixer-D-pulse-option.patch + +------------------------------------------------------------------- New: ---- xfce4-session-drop-amixer-D-pulse-option.patch ----------(New B)---------- New:- Fix the audio mixer invocation on Wayland (bsc#1247640): xfce4-session-drop-amixer-D-pulse-option.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xfce4-session.spec ++++++ --- /var/tmp/diff_new_pack.PmLyCq/_old 2025-08-12 11:33:42.490911373 +0200 +++ /var/tmp/diff_new_pack.PmLyCq/_new 2025-08-12 11:33:42.490911373 +0200 @@ -1,7 +1,7 @@ # # spec file for package xfce4-session # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2025 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 @@ -36,6 +36,8 @@ %endif # PATCH-FIX-OPENSUSE 0002-relax-x11-version.patch -- Allow build for Leap with its ancient but sufficient X11 packages. Patch2: 0002-relax-x11-version.patch +# PATCH-FIX-OPENSUSE xfce4-session-drop-amixer-D-pulse-option.patch -- Fix audio mixer invocation on Wayland +Patch3: xfce4-session-drop-amixer-D-pulse-option.patch BuildRequires: fdupes BuildRequires: gettext >= 0.19.8 BuildRequires: iceauth ++++++ xfce4-session-drop-amixer-D-pulse-option.patch ++++++ From: Takashi Iwai <ti...@suse.de> Subject: Drop '-D pulse' option from amixer invocations References: bsc#1247640 The option breaks when the system is running with pipewire without alsa-plugin-pulse stuff. Signed-off-by: Takashi Iwai <ti...@suse.de> --- labwc/labwc-rc.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/labwc/labwc-rc.xml +++ b/labwc/labwc-rc.xml @@ -33,13 +33,13 @@ Suggested Xfce key bindings. --> <keybind key="XF86_AudioLowerVolume"> - <action name="Execute" command="amixer -D pulse sset Master 5%-" /> + <action name="Execute" command="amixer sset Master 5%-" /> </keybind> <keybind key="XF86_AudioRaiseVolume"> - <action name="Execute" command="amixer -D pulse sset Master 5%+" /> + <action name="Execute" command="amixer sset Master 5%+" /> </keybind> <keybind key="XF86_AudioMute"> - <action name="Execute" command="amixer -D pulse sset Master toggle" /> + <action name="Execute" command="amixer sset Master toggle" /> </keybind> <keybind key="W-q"> <action name="Close" />