Hello community, here is the log from the commit of package libhandy for openSUSE:Factory checked in at 2020-05-13 22:55:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libhandy (Old) and /work/SRC/openSUSE:Factory/.libhandy.new.2738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libhandy" Wed May 13 22:55:17 2020 rev:10 rq:802677 version:0.0.13 Changes: -------- --- /work/SRC/openSUSE:Factory/libhandy/libhandy.changes 2020-01-14 20:58:37.986522624 +0100 +++ /work/SRC/openSUSE:Factory/.libhandy.new.2738/libhandy.changes 2020-05-13 22:55:19.270919897 +0200 @@ -1,0 +2,6 @@ +Fri May 8 11:34:50 UTC 2020 - Bjørn Lie <[email protected]> + +- Add libhandy-adapt-glade-3-36.patch: Fix build with new glade + 3.36.0. + +------------------------------------------------------------------- New: ---- libhandy-adapt-glade-3-36.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libhandy.spec ++++++ --- /var/tmp/diff_new_pack.ua1DFB/_old 2020-05-13 22:55:19.954921232 +0200 +++ /var/tmp/diff_new_pack.ua1DFB/_new 2020-05-13 22:55:19.958921240 +0200 @@ -26,6 +26,8 @@ Group: Development/Libraries/GNOME URL: https://source.puri.sm/Librem5/libhandy/ Source0: %{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM libhandy-adapt-glade-3-36.patch -- Fix build with new glade 3.36 +Patch0: libhandy-adapt-glade-3-36.patch BuildRequires: gtk-doc BuildRequires: meson >= 0.47.0 ++++++ libhandy-adapt-glade-3-36.patch ++++++ >From be1843e1015779dd6c02160c140435e96db4da55 Mon Sep 17 00:00:00 2001 From: Alberto Fanjul <[email protected]> Date: Thu, 7 May 2020 12:43:51 +0200 Subject: [PATCH] glade: Adapt to 3.36 release --- glade/glade-hdy-header-group.c | 2 +- glade/glade-hdy-swipe-group.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/glade/glade-hdy-header-group.c b/glade/glade-hdy-header-group.c index be6a9de0..aa83c6b6 100644 --- a/glade/glade-hdy-header-group.c +++ b/glade/glade-hdy-header-group.c @@ -43,7 +43,7 @@ glade_hdy_header_group_read_widgets (GladeWidget *widget, GladeXmlNode *node) string = widget_name; } else if (widget_name != NULL) { tmp = - g_strdup_printf ("%s%s%s", string, GPC_OBJECT_DELIMITER, + g_strdup_printf ("%s%s%s", string, GLADE_PROPERTY_DEF_OBJECT_DELIMITER, widget_name); string = (g_free (string), tmp); g_free (widget_name); diff --git a/glade/glade-hdy-swipe-group.c b/glade/glade-hdy-swipe-group.c index 0b427986..ff909b01 100644 --- a/glade/glade-hdy-swipe-group.c +++ b/glade/glade-hdy-swipe-group.c @@ -45,7 +45,7 @@ glade_hdy_swipe_group_read_widgets (GladeWidget *widget, string = widget_name; } else if (widget_name != NULL) { tmp = - g_strdup_printf ("%s%s%s", string, GPC_OBJECT_DELIMITER, + g_strdup_printf ("%s%s%s", string, GLADE_PROPERTY_DEF_OBJECT_DELIMITER, widget_name); string = (g_free (string), tmp); g_free (widget_name); -- 2.26.2
