Hello community, here is the log from the commit of package marco for openSUSE:Factory checked in at 2016-04-15 19:12:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/marco (Old) and /work/SRC/openSUSE:Factory/.marco.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "marco" Changes: -------- --- /work/SRC/openSUSE:Factory/marco/marco.changes 2016-01-12 16:13:52.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.marco.new/marco.changes 2016-04-15 19:12:03.000000000 +0200 @@ -1,0 +2,32 @@ +Tue Apr 12 14:00:14 UTC 2016 - sor.alexei@meowr.ru + +- Add marco-1.14.0-fix-thumb-crash.patch from upstream: fix a + crash on showing Alt-Tab thumbnails. + +------------------------------------------------------------------- +Sat Apr 9 11:24:53 UTC 2016 - sor.alexei@meowr.ru + +- Update to version 1.14.0: + * Correct description of compositing-fast-alt-tab GSettings key + (mention that it disables thumbnails). + * GTK+3: Re-add ability to show alt-tab thumbnails when + compositor is on. + * Update translations. + * Add Changelog generation. + +------------------------------------------------------------------- +Sun Feb 21 16:56:54 UTC 2016 - sor.alexei@meowr.ru + +- Update to version 1.13.1: + * Bump libmarco-private's sover for Gtk3 build. + +------------------------------------------------------------------- +Mon Jan 25 21:05:28 UTC 2016 - sor.alexei@meowr.ru + +- Update to version 1.13.0: + * Gtk3: Fix several deprecations. + * Drop MateConf migration script. + * Fix visual glitches appearing after unmaximising Chromium + window. + +------------------------------------------------------------------- Old: ---- marco-1.12.1.tar.xz New: ---- marco-1.14.0-fix-thumb-crash.patch marco-1.14.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ marco.spec ++++++ --- /var/tmp/diff_new_pack.g0RwlV/_old 2016-04-15 19:12:04.000000000 +0200 +++ /var/tmp/diff_new_pack.g0RwlV/_new 2016-04-15 19:12:04.000000000 +0200 @@ -18,15 +18,17 @@ %define soname libmarco-private %define sover 0 -%define _version 1.12 +%define _version 1.14 Name: marco -Version: 1.12.1 +Version: 1.14.0 Release: 0 Summary: MATE window manager License: GPL-2.0+ Group: System/GUI/Other Url: http://mate-desktop.org/ Source: http://pub.mate-desktop.org/releases/%{_version}/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM marco-1.14.0-fix-thumb-crash.patch -- Fix a crash on showing Alt-Tab thumbnails. +Patch0: %{name}-1.14.0-fix-thumb-crash.patch BuildRequires: fdupes BuildRequires: mate-common >= %{_version} BuildRequires: update-desktop-files @@ -90,10 +92,13 @@ %prep %setup -q +%patch0 -p1 %build +NOCONFIGURE=1 mate-autogen %configure \ --libexecdir=%{_libexecdir}/%{name} \ + --with-gtk=2.0 \ --disable-static \ --disable-scrollkeeper \ --disable-schemas-install ++++++ marco-1.14.0-fix-thumb-crash.patch ++++++ --- a/src/core/screen.c +++ b/src/core/screen.c @@ -1240,17 +1240,17 @@ get_window_pixbuf (MetaWindow *window, return NULL; #endif +#if GTK_CHECK_VERSION (3, 0, 0) meta_error_trap_push (NULL); -#if GTK_CHECK_VERSION (3, 0, 0) pixbuf = meta_ui_get_pixbuf_from_surface (surface); cairo_surface_destroy (surface); -#else - pixbuf = meta_ui_get_pixbuf_from_pixmap (pmap); -#endif if (meta_error_trap_pop_with_return (NULL, FALSE) != Success) g_clear_object (&pixbuf); +#else + pixbuf = meta_ui_get_pixbuf_from_pixmap (pmap); +#endif if (pixbuf == NULL) return NULL; ++++++ marco-1.12.1.tar.xz -> marco-1.14.0.tar.xz ++++++ ++++ 81542 lines of diff (skipped)