Hello community, here is the log from the commit of package gnome-contacts for openSUSE:Factory checked in at 2019-06-22 11:23:28 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-contacts (Old) and /work/SRC/openSUSE:Factory/.gnome-contacts.new.4615 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-contacts" Sat Jun 22 11:23:28 2019 rev:56 rq:710352 version:3.32.1 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-contacts/gnome-contacts.changes 2019-05-03 22:20:05.960426202 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-contacts.new.4615/gnome-contacts.changes 2019-06-22 11:23:30.309343235 +0200 @@ -1,0 +2,6 @@ +Sat Jun 15 19:27:35 UTC 2019 - Bjørn Lie <[email protected]> + +- Add gnome-contacts-disambiguate_Gtk.HeaderBar.patch: window: + Disambiguate Gtk.HeaderBar, fix build with new libhandy. + +------------------------------------------------------------------- New: ---- gnome-contacts-disambiguate_Gtk.HeaderBar.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-contacts.spec ++++++ --- /var/tmp/diff_new_pack.Uu2Byl/_old 2019-06-22 11:23:30.833343806 +0200 +++ /var/tmp/diff_new_pack.Uu2Byl/_new 2019-06-22 11:23:30.841343814 +0200 @@ -24,6 +24,8 @@ Group: Productivity/Office/Other URL: https://wiki.gnome.org/Apps/Contacts Source0: https://download.gnome.org/sources/gnome-contacts/3.32/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM gnome-contacts-disambiguate_Gtk.HeaderBar.patch -- window: Disambiguate Gtk.HeaderBar +Patch0: gnome-contacts-disambiguate_Gtk.HeaderBar.patch BuildRequires: docbook-xsl-stylesheets BuildRequires: docbook_4 ++++++ gnome-contacts-disambiguate_Gtk.HeaderBar.patch ++++++ >From c5eee38cd2556403a640a0a4c11d36cbf9a5a798 Mon Sep 17 00:00:00 2001 From: Niels De Graef <[email protected]> Date: Thu, 30 May 2019 14:30:54 +0200 Subject: [PATCH] window: Disambiguate Gtk.HeaderBar Apparently libhandy also added a HeaderBar type, which means this clashes with that of Gtk. --- src/contacts-window.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/contacts-window.vala b/src/contacts-window.vala index 738228d..49f6995 100644 --- a/src/contacts-window.vala +++ b/src/contacts-window.vala @@ -35,9 +35,9 @@ public class Contacts.Window : Gtk.ApplicationWindow { [GtkChild] private TitleBar titlebar; [GtkChild] - private HeaderBar left_header; + private Gtk.HeaderBar left_header; [GtkChild] - private HeaderBar right_header; + private Gtk.HeaderBar right_header; [GtkChild] private Overlay notification_overlay; [GtkChild] -- 2.21.0
