Accepting request 293031 from GNOME:Factory
Scripted push of project GNOME:Next (forwarded request 292847 from dimstar) OBS-URL: https://build.opensuse.org/request/show/293031 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/mutter?expand=0&rev=79
This commit is contained in:
commit
4e9ddbd282
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0b23a2d31980d9de8e92ef940e6f63e3ac0f6446e2afc69ecbc80163f6af3a23
|
||||
size 1608232
|
3
mutter-3.16.0.tar.xz
Normal file
3
mutter-3.16.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b2c052cee7edd1ef34d501c4203ec9bc5f15a52a157d1595f3bc5268ca840695
|
||||
size 1548808
|
70
mutter-nvidia-repaint-on-resume.patch
Normal file
70
mutter-nvidia-repaint-on-resume.patch
Normal file
@ -0,0 +1,70 @@
|
||||
From 6b3be51ca862b7c878a03c7ee730f3e3abaa2daa Mon Sep 17 00:00:00 2001
|
||||
From: Rui Matos <tiagomatos@gmail.com>
|
||||
Date: Thu, 19 Mar 2015 14:58:25 +0100
|
||||
Subject: meta-background: Add a function to refresh all background instances
|
||||
|
||||
We need to reload the FBOs under some circumstances, this adds a way
|
||||
to easily do so.
|
||||
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=739178
|
||||
|
||||
diff --git a/src/compositor/meta-background.c b/src/compositor/meta-background.c
|
||||
index 0370f55..75fbc28 100644
|
||||
--- a/src/compositor/meta-background.c
|
||||
+++ b/src/compositor/meta-background.c
|
||||
@@ -71,6 +71,8 @@ enum
|
||||
|
||||
G_DEFINE_TYPE (MetaBackground, meta_background, G_TYPE_OBJECT)
|
||||
|
||||
+static GSList *all_backgrounds = NULL;
|
||||
+
|
||||
static void
|
||||
free_fbos (MetaBackground *self)
|
||||
{
|
||||
@@ -291,6 +293,8 @@ meta_background_dispose (GObject *object)
|
||||
static void
|
||||
meta_background_finalize (GObject *object)
|
||||
{
|
||||
+ all_backgrounds = g_slist_remove (all_backgrounds, object);
|
||||
+
|
||||
G_OBJECT_CLASS (meta_background_parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
@@ -333,6 +337,7 @@ meta_background_init (MetaBackground *self)
|
||||
self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
|
||||
META_TYPE_BACKGROUND,
|
||||
MetaBackgroundPrivate);
|
||||
+ all_backgrounds = g_slist_prepend (all_backgrounds, self);
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -899,3 +904,12 @@ meta_background_set_blend (MetaBackground *self,
|
||||
free_wallpaper_texture (self);
|
||||
mark_changed (self);
|
||||
}
|
||||
+
|
||||
+void
|
||||
+meta_background_refresh_all (void)
|
||||
+{
|
||||
+ GSList *l;
|
||||
+
|
||||
+ for (l = all_backgrounds; l; l = l->next)
|
||||
+ mark_changed (l->data);
|
||||
+}
|
||||
diff --git a/src/meta/meta-background.h b/src/meta/meta-background.h
|
||||
index 38706dc..aa7c707 100644
|
||||
--- a/src/meta/meta-background.h
|
||||
+++ b/src/meta/meta-background.h
|
||||
@@ -57,6 +57,8 @@ struct _MetaBackground
|
||||
MetaBackgroundPrivate *priv;
|
||||
};
|
||||
|
||||
+void meta_background_refresh_all (void);
|
||||
+
|
||||
GType meta_background_get_type (void);
|
||||
|
||||
MetaBackground *meta_background_new (MetaScreen *screen);
|
||||
--
|
||||
cgit v0.10.2
|
||||
|
||||
|
106
mutter.changes
106
mutter.changes
@ -1,3 +1,109 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 23 20:31:42 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 3.16.0:
|
||||
+ wayland: Don't skip notifying about initial maximized state
|
||||
(bgo#745303).
|
||||
+ Updated translations.
|
||||
- Add mutter-nvidia-repaint-on-resume.patch: Add a function to
|
||||
refresh all background instances (boo#914149, bgo#739178).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 18 08:41:11 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 3.15.92:
|
||||
+ Ensure pointer visibility on monitor changes (bgo#745121,
|
||||
bgo#745752).
|
||||
+ Fix geometry of shaded windows (bgo#746145).
|
||||
+ Take over cursor visibility handling from gsd (bgo#712775).
|
||||
+ Fix touch interaction on window decorations (bgo#745335).
|
||||
+ Add options for libinput_config_click_method (bgo#746290).
|
||||
+ Scale window decorations on HiDPI displays (bgo#744354).
|
||||
+ Misc. bug fixes: bgo#745163, bgo#746295, bgo#746098,
|
||||
bgo#745734.
|
||||
+ Updated translations.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 5 01:19:59 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 3.15.91:
|
||||
+ wayland: Fix nested compositor mode (bgo#745401).
|
||||
+ wayland: Fix pointer constraining (bgo#727337).
|
||||
+ wayland: Fix input region on HiDPI (bgo#744933).
|
||||
+ Allow themes to style buttons differently based on function
|
||||
(bgo#745108).
|
||||
+ Misc. bug fixes and cleanups: bgo#745141, bgo#745118,
|
||||
bgo#745476, bgo#745442.
|
||||
+ Updated translations.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 20 20:36:15 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 3.15.90:
|
||||
+ Initialize MetaOutput even when we can't get the EDID
|
||||
(bgo#743412).
|
||||
+ Expose MetaMonitorManager to introspection (bgo#743745).
|
||||
+ Fix flash on unredirection (bgo#743858).
|
||||
+ Update xdg-shell implementation to v5 (bgo#744452).
|
||||
+ Do not try to use seat devices that aren't (yet) present
|
||||
(bgo#744640).
|
||||
+ Add keybindings for switching to VT8-VT12 (bgo#744800).
|
||||
+ Misc bug fixes: bgo#743678, bgo#744500.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 20 16:20:38 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Add pkgconfig(gudev-1.0) and pkgconfig(gbm) BuildRequires in case
|
||||
we're building with wayland support: Needed for the native (non
|
||||
nested support).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 23 21:24:20 UTC 2015 - zaitor@opensuse.org
|
||||
|
||||
- Update to version 3.15.4:
|
||||
+ Use GTK+ theme for window decorations instead of metacity
|
||||
(bgo#741917).
|
||||
+ Export the same EDID information on X11 and wayland
|
||||
(bgo#742882).
|
||||
+ Apply input device configuration on wayland (bgo#739397).
|
||||
+ Implement pointer barriers on wayland (bgo#706655).
|
||||
+ Bugs fixed: bgo#741829, bgo#738630, bgo#737463, bgo#698995,
|
||||
bgo#727893, bgo#742825, bgo#742824, bgo#742841, bgo#743173,
|
||||
bgo#743189, bgo#743217, bgo#743254.
|
||||
+ Updated translations.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 17:04:05 UTC 2014 - zaitor@opensuse.org
|
||||
|
||||
- Update to version 3.15.3:
|
||||
+ Don't leave left-over frames queued (bgo#738686).
|
||||
+ Set CRTC configuration even if it might be redundant
|
||||
(bgo#740838).
|
||||
+ Updated translations.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 16:49:47 UTC 2014 - zaitor@opensuse.org
|
||||
|
||||
- Update to version 3.15.2:
|
||||
+ Don't enable hiDPI on monitors with broken EDID (bgo##734839).
|
||||
+ Prevent crash applying monitor config for a closed lid
|
||||
(bgo#739450).
|
||||
+ Fix "flicker" during startup transition (bgo#740377).
|
||||
+ Bugs fixed: bgo#731521, bgo#740133, bgo#738890.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 16:44:35 UTC 2014 - zaitor@opensuse.org
|
||||
|
||||
- Update to version 3.15.1:
|
||||
+ Use GResources for theme loading (bgo#736936).
|
||||
+ Fix headerbar drag getting stuck on xwayland (bgo#738411).
|
||||
- Drop following patches: mutter-black-screen-during-login.patch,
|
||||
mutter-window-actor-unredirection-when-destroyed.patch,
|
||||
mutter-empty-input-shapes-windows.patch,
|
||||
mutter-left-over-queued-frames.patch,
|
||||
mutter-dont-overwrite-send_frame_messages_timer.patch, all fixed
|
||||
upstream.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 19 15:16:54 UTC 2014 - zaitor@opensuse.org
|
||||
|
||||
|
28
mutter.spec
28
mutter.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package mutter
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 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
|
||||
@ -23,13 +23,15 @@
|
||||
%endif
|
||||
|
||||
Name: mutter
|
||||
Version: 3.14.3
|
||||
Version: 3.16.0
|
||||
Release: 0
|
||||
Summary: Window and compositing manager based on Clutter
|
||||
License: GPL-2.0+
|
||||
Group: System/GUI/GNOME
|
||||
Url: http://www.gnome.org
|
||||
Source: http://download.gnome.org/sources/mutter/3.14/%{name}-%{version}.tar.xz
|
||||
Source: http://download.gnome.org/sources/mutter/3.16/%{name}-%{version}.tar.xz
|
||||
# PATCH-FIX-UPSTREAM mutter-nvidia-repaint-on-resume.patch boo#9141409 bgo#739178 dimstar@opensuse.org -- meta-background: Add a function to refresh all background instances
|
||||
Patch0: mutter-nvidia-repaint-on-resume.patch
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: gobject-introspection-devel >= 0.9.5
|
||||
BuildRequires: intltool
|
||||
@ -40,16 +42,11 @@ BuildRequires: translation-update-upstream
|
||||
BuildRequires: update-desktop-files
|
||||
BuildRequires: zenity
|
||||
BuildRequires: pkgconfig(cairo) >= 1.10.0
|
||||
BuildRequires: pkgconfig(clutter-1.0) >= 1.19.7
|
||||
%if %{build_wayland}
|
||||
BuildRequires: pkgconfig(clutter-egl-1.0)
|
||||
BuildRequires: pkgconfig(clutter-wayland-1.0)
|
||||
BuildRequires: pkgconfig(clutter-wayland-compositor-1.0)
|
||||
%endif
|
||||
BuildRequires: pkgconfig(clutter-1.0) >= 1.21.3
|
||||
BuildRequires: pkgconfig(cogl-1.0) >= 1.17.1
|
||||
BuildRequires: pkgconfig(gio-unix-2.0) >= 2.25.10
|
||||
BuildRequires: pkgconfig(gnome-desktop-3.0)
|
||||
BuildRequires: pkgconfig(gsettings-desktop-schemas) >= 3.7.3
|
||||
BuildRequires: pkgconfig(gsettings-desktop-schemas) >= 3.15.92
|
||||
BuildRequires: pkgconfig(gtk+-3.0) >= 3.9.11
|
||||
BuildRequires: pkgconfig(libcanberra-gtk3)
|
||||
BuildRequires: pkgconfig(libdrm)
|
||||
@ -58,9 +55,6 @@ BuildRequires: pkgconfig(libstartup-notification-1.0)
|
||||
BuildRequires: pkgconfig(libsystemd)
|
||||
BuildRequires: pkgconfig(pango) >= 1.2.0
|
||||
BuildRequires: pkgconfig(upower-glib) >= 0.99.0
|
||||
%if %{build_wayland}
|
||||
BuildRequires: pkgconfig(wayland-server) >= 1.4.93
|
||||
%endif
|
||||
BuildRequires: pkgconfig(x11-xcb)
|
||||
BuildRequires: pkgconfig(xcb-randr)
|
||||
BuildRequires: pkgconfig(xcomposite) >= 0.2
|
||||
@ -73,6 +67,14 @@ BuildRequires: pkgconfig(xkbcommon) >= 0.4.3
|
||||
BuildRequires: pkgconfig(xkbcommon-x11)
|
||||
BuildRequires: pkgconfig(xkbfile)
|
||||
BuildRequires: pkgconfig(xkeyboard-config)
|
||||
%if %{build_wayland}
|
||||
BuildRequires: pkgconfig(clutter-egl-1.0)
|
||||
BuildRequires: pkgconfig(clutter-wayland-1.0)
|
||||
BuildRequires: pkgconfig(clutter-wayland-compositor-1.0)
|
||||
BuildRequires: pkgconfig(gbm) >= 10.3
|
||||
BuildRequires: pkgconfig(gudev-1.0)
|
||||
BuildRequires: pkgconfig(wayland-server) >= 1.4.93
|
||||
%endif
|
||||
Requires: zenity
|
||||
Recommends: %{name}-lang
|
||||
Provides: windowmanager
|
||||
|
Loading…
Reference in New Issue
Block a user