Hello community, here is the log from the commit of package gnome-boxes for openSUSE:Factory checked in at 2019-11-15 22:30:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-boxes (Old) and /work/SRC/openSUSE:Factory/.gnome-boxes.new.26869 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-boxes" Fri Nov 15 22:30:45 2019 rev:65 rq:747642 version:3.34.1 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-boxes/gnome-boxes.changes 2019-10-17 12:59:21.589294511 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-boxes.new.26869/gnome-boxes.changes 2019-11-15 22:30:50.700111030 +0100 @@ -1,0 +2,5 @@ +Mon Nov 11 20:40:22 UTC 2019 - Bjørn Lie <[email protected]> + +- Add gnome-boxes-fix-build-vala.patch: Fix build with new vala. + +------------------------------------------------------------------- New: ---- gnome-boxes-fix-build-vala.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-boxes.spec ++++++ --- /var/tmp/diff_new_pack.XoGIxi/_old 2019-11-15 22:30:51.348110746 +0100 +++ /var/tmp/diff_new_pack.XoGIxi/_new 2019-11-15 22:30:51.368110737 +0100 @@ -29,6 +29,8 @@ Group: System/GUI/GNOME URL: https://wiki.gnome.org/Design/Apps/Boxes Source0: https://download.gnome.org/sources/gnome-boxes/3.34/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM gnome-boxes-fix-build-vala.patch -- Fix build with new vala +Patch0: gnome-boxes-fix-build-vala.patch BuildRequires: fdupes BuildRequires: meson >= 0.47.0 ++++++ gnome-boxes-fix-build-vala.patch ++++++ >From 8aaf59870b9972f228e073a674b254b1e4cda2de Mon Sep 17 00:00:00 2001 From: Michael Catanzaro <[email protected]> Date: Mon, 28 Oct 2019 10:36:20 -0500 Subject: [PATCH] app-window: Fix build with vala master Cherry-picked from a1522749a9651915132fc1171d31a1c22df423ab See #431 --- src/app-window.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app-window.vala b/src/app-window.vala index 8a1ebb6a..82a9f834 100644 --- a/src/app-window.vala +++ b/src/app-window.vala @@ -438,7 +438,7 @@ public bool on_key_pressed (Widget widget, Gdk.EventKey event) { return true; } else if (event.keyval == Gdk.Key.A && - (event.state & default_modifiers) == Gdk.ModifierType.CONTROL_MASK | Gdk.ModifierType.SHIFT_MASK) { + (event.state & default_modifiers) == (Gdk.ModifierType.CONTROL_MASK | Gdk.ModifierType.SHIFT_MASK)) { foreach_view ((view) => { view.unselect_all (); }); return true; -- 2.22.0
