Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package postfish for openSUSE:Factory checked in at 2024-12-16 19:17:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/postfish (Old) and /work/SRC/openSUSE:Factory/.postfish.new.29675 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "postfish" Mon Dec 16 19:17:38 2024 rev:23 rq:1231354 version:svn17492 Changes: -------- --- /work/SRC/openSUSE:Factory/postfish/postfish.changes 2024-04-19 19:25:58.945427882 +0200 +++ /work/SRC/openSUSE:Factory/.postfish.new.29675/postfish.changes 2024-12-16 19:17:43.511927709 +0100 @@ -1,0 +2,5 @@ +Mon Dec 16 09:14:59 UTC 2024 - Marcus Meissner <meiss...@suse.com> + +- postfix-fix-proto.patch: fix prototype + +------------------------------------------------------------------- New: ---- postfix-fix-proto.patch BETA DEBUG BEGIN: New: - postfix-fix-proto.patch: fix prototype BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ postfish.spec ++++++ --- /var/tmp/diff_new_pack.w4fII5/_old 2024-12-16 19:17:45.524011254 +0100 +++ /var/tmp/diff_new_pack.w4fII5/_new 2024-12-16 19:17:45.544012085 +0100 @@ -1,7 +1,7 @@ # # spec file for package postfish # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,7 +12,7 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # @@ -20,14 +20,15 @@ Version: svn17492 Release: 0 Summary: A digital audio post-processing tool -License: GPL-2.0+ +License: GPL-2.0-or-later Group: Productivity/Multimedia/Sound/Editors and Convertors -Url: https://trac.xiph.org/browser/trunk/postfish/ +URL: https://trac.xiph.org/browser/trunk/postfish/ Source: %{name}-%{version}.tar.bz2 Patch0: happy-gcc43.diff Patch1: bnc_536201_fclose.patch Patch2: postfish-gtk2.19.7.patch Patch3: reproducible.patch +Patch4: postfix-fix-proto.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fftw3-devel BuildRequires: gtk2-devel @@ -44,7 +45,6 @@ audio into a group of up to eight output channels. The third stage applies processing filters to the output group post-mixdown. - %prep %autosetup -p1 ++++++ postfix-fix-proto.patch ++++++ Index: postfish-svn17492/windowbutton.c =================================================================== --- postfish-svn17492.orig/windowbutton.c +++ postfish-svn17492/windowbutton.c @@ -116,7 +116,7 @@ static void windowbutton_draw_indicator gint focus_pad; gboolean interior_focus; - if (gtk_widget_is_drawable (check_button)){ + if (gtk_widget_is_drawable (GTK_WIDGET (check_button))){ widget = GTK_WIDGET (check_button); button = GTK_BUTTON (check_button);