Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package aseqview for openSUSE:Factory checked in at 2021-06-13 23:06:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/aseqview (Old) and /work/SRC/openSUSE:Factory/.aseqview.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "aseqview" Sun Jun 13 23:06:10 2021 rev:25 rq:899785 version:0.2.8 Changes: -------- --- /work/SRC/openSUSE:Factory/aseqview/aseqview.changes 2021-04-22 18:06:12.950719701 +0200 +++ /work/SRC/openSUSE:Factory/.aseqview.new.32437/aseqview.changes 2021-06-13 23:06:23.903696268 +0200 @@ -1,0 +2,7 @@ +Sun Jun 13 10:39:56 CEST 2021 - ti...@suse.de + +- Fix segfault at piano widget creation with the recent gtk2 + (boo#1187239): + aseqview-piano-segfault-fix.patch + +------------------------------------------------------------------- New: ---- aseqview-piano-segfault-fix.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aseqview.spec ++++++ --- /var/tmp/diff_new_pack.2IpK52/_old 2021-06-13 23:06:24.299696984 +0200 +++ /var/tmp/diff_new_pack.2IpK52/_new 2021-06-13 23:06:24.299696984 +0200 @@ -27,6 +27,7 @@ Source2: aseqview.png Patch0: aseqview-0.2.2.dif Patch1: aseqview-quote-macros.patch +Patch2: aseqview-piano-segfault-fix.patch BuildRequires: alsa-devel BuildRequires: automake BuildRequires: gtk2-devel @@ -42,6 +43,7 @@ %setup -q %patch0 %patch1 -p1 +%patch2 -p1 %build autoreconf --force --install ++++++ aseqview-piano-segfault-fix.patch ++++++ --- piano.c | 4 ++-- piano.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) --- a/piano.c +++ b/piano.c @@ -69,10 +69,10 @@ static GdkColor c60clr = { red : 18000, static GtkWidgetClass *parent_class = NULL; -guint +GType piano_get_type (void) { - static guint piano_type = 0; + static GType piano_type = 0; if (!piano_type) { --- a/piano.h +++ b/piano.h @@ -71,7 +71,7 @@ struct _PianoClass }; GtkWidget *piano_new (gboolean * selkeys); -guint piano_get_type (void); +GType piano_get_type (void); void piano_note_on (Piano * piano, guint8 keynum); void piano_note_off (Piano * piano, guint8 keynum);