Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package osdlyrics for openSUSE:Factory checked in at 2026-02-16 13:13:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/osdlyrics (Old) and /work/SRC/openSUSE:Factory/.osdlyrics.new.1977 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "osdlyrics" Mon Feb 16 13:13:19 2026 rev:15 rq:1333268 version:0.5.15 Changes: -------- --- /work/SRC/openSUSE:Factory/osdlyrics/osdlyrics.changes 2025-05-05 22:58:52.706731590 +0200 +++ /work/SRC/openSUSE:Factory/.osdlyrics.new.1977/osdlyrics.changes 2026-02-16 13:18:50.733882869 +0100 @@ -1,0 +2,5 @@ +Mon Feb 16 07:34:36 UTC 2026 - Hillwood Yang <[email protected]> + +- Add fix-build-with-gcc15.patch + +------------------------------------------------------------------- New: ---- fix-build-with-gcc15.patch ----------(New B)---------- New: - Add fix-build-with-gcc15.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ osdlyrics.spec ++++++ --- /var/tmp/diff_new_pack.WzkQKO/_old 2026-02-16 13:18:51.621919790 +0100 +++ /var/tmp/diff_new_pack.WzkQKO/_new 2026-02-16 13:18:51.625919956 +0100 @@ -1,7 +1,7 @@ # # spec file for package osdlyrics # -# 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 @@ -25,6 +25,7 @@ URL: https://github.com/osdlyrics/osdlyrics Source0: https://github.com/osdlyrics/osdlyrics/archive/%{version}/%{name}-%{version}.tar.gz Source1: %{name}.appdata.xml +Patch0: fix-build-with-gcc15.patch BuildRequires: fdupes BuildRequires: gettext-devel BuildRequires: glibc-devel @@ -66,7 +67,7 @@ %lang_package %prep -%setup -q -n %{name}-%{version} +%autosetup -p1 %build NOCONFIGURE=1 ./autogen.sh ++++++ fix-build-with-gcc15.patch ++++++ >From 66166e51ab2eddee5d9a0f036b9d30899a4d0dcf Mon Sep 17 00:00:00 2001 From: nekoside <[email protected]> Date: Mon, 19 Jan 2026 14:04:33 +0800 Subject: [PATCH] Fix Build Error this fixes my build error on archlinux, gcc --- src/ol_keybindings.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ol_keybindings.c b/src/ol_keybindings.c index 135e8cd9..ff3510fa 100644 --- a/src/ol_keybindings.c +++ b/src/ol_keybindings.c @@ -51,8 +51,8 @@ ol_keybinding_init () gtk_accel_group_connect_by_path (accel, "<OSD Lyrics>/Switch OSD", hide_closure); - ol_keybinder_bind ("<Ctrl><Shift>H", ol_osd_switch_display, NULL); - ol_keybinder_bind ("<Ctrl><Shift>L", ol_osd_lock_unlock, NULL); + ol_keybinder_bind ("<Ctrl><Shift>H", (OlBindkeyHandler)ol_osd_switch_display, NULL); + ol_keybinder_bind ("<Ctrl><Shift>L", (OlBindkeyHandler)ol_osd_lock_unlock, NULL); } GtkAccelGroup*
