Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package five-or-more for openSUSE:Factory checked in at 2022-03-23 20:17:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/five-or-more (Old) and /work/SRC/openSUSE:Factory/.five-or-more.new.25692 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "five-or-more" Wed Mar 23 20:17:25 2022 rev:32 rq:963566 version:3.32.2 Changes: -------- --- /work/SRC/openSUSE:Factory/five-or-more/five-or-more.changes 2020-04-23 18:30:50.232133600 +0200 +++ /work/SRC/openSUSE:Factory/.five-or-more.new.25692/five-or-more.changes 2022-03-23 20:19:08.398488612 +0100 @@ -1,0 +2,8 @@ +Sat Feb 19 19:21:36 UTC 2022 - Bj??rn Lie <bjorn....@gmail.com> + +- Add fix-build-vala-055.patch: Backport: Fix build with vala + 0.55.x. +- Add fix-ref-gtk-child-unowned.patch: Reference of [GtkChild] + fields is handled by GtkBuilder, type must be unowned. + +------------------------------------------------------------------- New: ---- fix-build-vala-055.patch fix-ref-gtk-child-unowned.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ five-or-more.spec ++++++ --- /var/tmp/diff_new_pack.SLkKDp/_old 2022-03-23 20:19:09.202489067 +0100 +++ /var/tmp/diff_new_pack.SLkKDp/_new 2022-03-23 20:19:09.206489070 +0100 @@ -1,7 +1,7 @@ # # spec file for package five-or-more # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,6 +24,10 @@ Group: Amusements/Games/Board/Puzzle URL: https://wiki.gnome.org/Apps/Five_or_more Source0: https://download.gnome.org/sources/five-or-more/3.32/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM fix-build-vala-055.patch -- Backport: Fix build with vala 0.55.x +Patch0: fix-build-vala-055.patch +# PATCH-FIX-UPSTREAM fix-ref-gtk-child-unowned.patch bjorn....@gmail.com -- Reference of [GtkChild] fields is handled by GtkBuilder, type must be unowned +Patch1: fix-ref-gtk-child-unowned.patch BuildRequires: fdupes BuildRequires: itstool ++++++ fix-build-vala-055.patch ++++++ ++++ 717 lines (skipped) ++++++ fix-ref-gtk-child-unowned.patch ++++++ Index: five-or-more-3.32.2/src/preferences-dialog.vala =================================================================== --- five-or-more-3.32.2.orig/src/preferences-dialog.vala +++ five-or-more-3.32.2/src/preferences-dialog.vala @@ -27,10 +27,10 @@ private class PreferencesDialog : Gtk.Di private Settings settings; [GtkChild] - private Gtk.ComboBoxText theme_box; + private unowned Gtk.ComboBoxText theme_box; [GtkChild] - private Gtk.ColorButton color_button; + private unowned Gtk.ColorButton color_button; private void theme_set_cb (Gtk.ComboBox self) { Index: five-or-more-3.32.2/src/window.vala =================================================================== --- five-or-more-3.32.2.orig/src/window.vala +++ five-or-more-3.32.2/src/window.vala @@ -25,16 +25,16 @@ private class GameWindow : Gtk.ApplicationWindow { [GtkChild] - private Gtk.HeaderBar headerbar; + private unowned Gtk.HeaderBar headerbar; [GtkChild] - private Gtk.Box preview_hbox; + private unowned Gtk.Box preview_hbox; [GtkChild] - private Gtk.MenuButton primary_menu_button; + private unowned Gtk.MenuButton primary_menu_button; [GtkChild] - private Games.GridFrame grid_frame; + private unowned Games.GridFrame grid_frame; private Settings? settings = null; private bool window_tiled;