Hello community, here is the log from the commit of package gnome-pie for openSUSE:Factory checked in at 2017-03-02 19:34:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-pie (Old) and /work/SRC/openSUSE:Factory/.gnome-pie.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "gnome-pie" Thu Mar 2 19:34:54 2017 rev:2 rq:460321 version:0.7.0 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-pie/gnome-pie.changes 2016-09-11 00:53:59.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-pie.new/gnome-pie.changes 2017-03-02 19:34:55.372121542 +0100 @@ -1,0 +2,24 @@ +Fri Feb 24 22:36:23 UTC 2017 - zaitor@opensuse.org + +- Update to version 0.7.0: + + New Feature: Added the possibility to automatically fill the + fields “name”, “command” and “icon” of a new slice by selecting + an application from a list. + + Improvement: The library “bamf” which has been made optional + before is now completely removed from the dependencies. This + makes the code base easier to manage and it seems that there is + no improvement to the icon selection when using this library. + + Bugfix: + - It is now possible again to drag’n’drop URLs and URIs to the + pie preview. + - Long press for activation of slices works again. +- Add gnome-pie-fix-invalid-chainup.patch: Fix invalid chainup + discovered by valac 0.35.x + +------------------------------------------------------------------- +Fri Sep 2 12:58:26 UTC 2016 - zaitor@opensuse.org + +- Update to version 0.6.9: + + Assign icon name to preferences window. + +------------------------------------------------------------------- Old: ---- v0.6.8.tar.gz New: ---- gnome-pie-fix-invalid-chainup.patch v0.7.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-pie.spec ++++++ --- /var/tmp/diff_new_pack.CUq6Es/_old 2017-03-02 19:34:56.052025326 +0100 +++ /var/tmp/diff_new_pack.CUq6Es/_new 2017-03-02 19:34:56.056024760 +0100 @@ -1,7 +1,7 @@ # # spec file for package gnome-pie # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,32 +17,34 @@ Name: gnome-pie -Version: 0.6.8 +Version: 0.7.0 Release: 0 Summary: A circular application launcher for GNOME License: GPL-3.0+ Group: User Interface/Desktops Url: https://simmesimme.github.io/gnome-pie.html Source: https://github.com/Simmesimme/Gnome-Pie/archive/v%{version}.tar.gz +# PATCH-FIX-UPSTREAM gnome-pie-fix-invalid-chainup.patch zaitor@opensuse.org -- Fix invalid chainup discovered by valac 0.35.x +Patch0: gnome-pie-fix-invalid-chainup.patch BuildRequires: cmake +BuildRequires: fdupes +BuildRequires: hicolor-icon-theme +BuildRequires: hicolor-icon-theme +BuildRequires: update-desktop-files +BuildRequires: vala >= 0.22 +BuildRequires: pkgconfig(appindicator3-0.1) BuildRequires: pkgconfig(cairo) BuildRequires: pkgconfig(gee-0.8) -BuildRequires: pkgconfig(libxml-2.0) -BuildRequires: pkgconfig(xtst) -BuildRequires: pkgconfig(unique-3.0) +BuildRequires: pkgconfig(gio-unix-2.0) BuildRequires: pkgconfig(gtk+-3.0) +BuildRequires: pkgconfig(libarchive) +BuildRequires: pkgconfig(libbamf3) BuildRequires: pkgconfig(libgnome-menu-3.0) -BuildRequires: hicolor-icon-theme -BuildRequires: pkgconfig(appindicator3-0.1) BuildRequires: pkgconfig(libwnck-3.0) -BuildRequires: pkgconfig(libbamf3) -BuildRequires: pkgconfig(gio-unix-2.0) +BuildRequires: pkgconfig(libxml-2.0) +BuildRequires: pkgconfig(unique-3.0) BuildRequires: pkgconfig(x11) -BuildRequires: pkgconfig(libarchive) -BuildRequires: vala >= 0.22 -BuildRequires: update-desktop-files -BuildRequires: hicolor-icon-theme -BuildRequires: fdupes +BuildRequires: pkgconfig(xtst) BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -54,6 +56,7 @@ %prep %setup -q -n Gnome-Pie-%{version} +%patch0 -p1 %build %cmake ++++++ gnome-pie-fix-invalid-chainup.patch ++++++
From f0e32138945b4ca0285770c36868bf694b018d32 Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz <ricotz@ubuntu.com> Date: Thu, 16 Feb 2017 16:56:40 +0100 Subject: [PATCH] fix invalid chainup discovered by valac 0.35.x
--- src/utilities/color.vala | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/utilities/color.vala b/src/utilities/color.vala index 1e2baf3..5ee787e 100644 --- a/src/utilities/color.vala +++ b/src/utilities/color.vala @@ -41,7 +41,7 @@ public class Color: GLib.Object { ///////////////////////////////////////////////////////////////////// public Color() { - Color.from_rgb(1.0f, 1.0f, 1.0f); + this.from_rgb(1.0f, 1.0f, 1.0f); } ///////////////////////////////////////////////////////////////////// @@ -49,7 +49,7 @@ public class Color: GLib.Object { ///////////////////////////////////////////////////////////////////// public Color.from_rgb(float red, float green, float blue) { - Color.from_rgba(red, green, blue, 1.0f); + this.from_rgba(red, green, blue, 1.0f); } ///////////////////////////////////////////////////////////////////// @@ -68,7 +68,7 @@ public class Color: GLib.Object { ///////////////////////////////////////////////////////////////////// public Color.from_gdk(Gdk.RGBA color) { - Color.from_rgba( + this.from_rgba( (float)color.red, (float)color.green, (float)color.blue, @@ -86,7 +86,7 @@ public class Color: GLib.Object { if (!ctx.lookup_color(style_name, out color)) { warning("Failed to get style color for widget style \"" + style_name + "\"!"); } - Color.from_gdk(color); + this.from_gdk(color); } ///////////////////////////////////////////////////////////////////// @@ -96,7 +96,7 @@ public class Color: GLib.Object { public Color.from_string(string hex_string) { var color = Gdk.RGBA(); color.parse(hex_string); - Color.from_gdk(color); + this.from_gdk(color); } ///////////////////////////////////////////////////////////////////// @@ -134,7 +134,7 @@ public class Color: GLib.Object { } } - Color.from_rgb((float)(rtotal/total), (float)(gtotal/total), (float)(btotal/total)); + this.from_rgb((float)(rtotal/total), (float)(gtotal/total), (float)(btotal/total)); if (s > 0.15f) s = 0.65f; ++++++ v0.6.8.tar.gz -> v0.7.0.tar.gz ++++++ ++++ 2556 lines of diff (skipped)