Accepting request 1111678 from GNOME:Next
New stable release OBS-URL: https://build.opensuse.org/request/show/1111678 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/mutter?expand=0&rev=467
This commit is contained in:
parent
1ebbd51ab8
commit
0ce183c0cc
4
_service
4
_service
@ -3,7 +3,7 @@
|
|||||||
<service name="obs_scm" mode="manual">
|
<service name="obs_scm" mode="manual">
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="url">https://gitlab.gnome.org/GNOME/mutter.git</param>
|
<param name="url">https://gitlab.gnome.org/GNOME/mutter.git</param>
|
||||||
<param name="revision">refs/tags/45.rc</param>
|
<param name="revision">refs/tags/45.0</param>
|
||||||
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
|
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
|
||||||
<param name="versionrewrite-pattern">(.*)\+0</param>
|
<param name="versionrewrite-pattern">(.*)\+0</param>
|
||||||
<param name="versionrewrite-replacement">\1</param>
|
<param name="versionrewrite-replacement">\1</param>
|
||||||
@ -12,7 +12,7 @@
|
|||||||
<service name="tar" mode="buildtime"/>
|
<service name="tar" mode="buildtime"/>
|
||||||
<service name="recompress" mode="buildtime">
|
<service name="recompress" mode="buildtime">
|
||||||
<param name="file">*.tar</param>
|
<param name="file">*.tar</param>
|
||||||
<param name="compression">xz</param>
|
<param name="compression">zst</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="set_version" mode="manual" />
|
<service name="set_version" mode="manual" />
|
||||||
</services>
|
</services>
|
||||||
|
3
mutter-45.0.obscpio
Normal file
3
mutter-45.0.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:aacd946971d4bbed9c028fbf85f5e4edc4f037ff70d3709eddc48aface71bf6f
|
||||||
|
size 26426893
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:2dfd29d1a516d50f1987a35d209f57f260078ff3cd31cea81039aeee22472ce5
|
|
||||||
size 26412557
|
|
@ -1,41 +0,0 @@
|
|||||||
From 4749c073ebef7160af94b9a622090ec922d26aef Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Jonas=20=C3=85dahl?= <jadahl@gmail.com>
|
|
||||||
Date: Mon, 7 Aug 2023 22:42:18 +0200
|
|
||||||
Subject: [PATCH] monitor-manager/xrandr: Trap DPMS changes
|
|
||||||
|
|
||||||
Apparently DPMSForceLevel() can fail to force a valid level sometimes.
|
|
||||||
|
|
||||||
Closes: https://gitlab.gnome.org/GNOME/mutter/-/issues/2857
|
|
||||||
Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/6883
|
|
||||||
Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3160>
|
|
||||||
---
|
|
||||||
src/backends/x11/meta-monitor-manager-xrandr.c | 4 +++-
|
|
||||||
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/src/backends/x11/meta-monitor-manager-xrandr.c b/src/backends/x11/meta-monitor-manager-xrandr.c
|
|
||||||
index c50006200a..128a34b9fb 100644
|
|
||||||
--- a/src/backends/x11/meta-monitor-manager-xrandr.c
|
|
||||||
+++ b/src/backends/x11/meta-monitor-manager-xrandr.c
|
|
||||||
@@ -58,7 +58,7 @@
|
|
||||||
#include "backends/x11/meta-output-xrandr.h"
|
|
||||||
#include "clutter/clutter.h"
|
|
||||||
#include "meta/main.h"
|
|
||||||
-#include "meta/meta-x11-errors.h"
|
|
||||||
+#include "mtk/mtk-x11.h"
|
|
||||||
|
|
||||||
/* Look for DPI_FALLBACK in:
|
|
||||||
* http://git.gnome.org/browse/gnome-settings-daemon/tree/plugins/xsettings/gsd-xsettings-manager.c
|
|
||||||
@@ -185,8 +185,10 @@ meta_monitor_manager_xrandr_set_power_save_mode (MetaMonitorManager *manager,
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
+ mtk_x11_error_trap_push (manager_xrandr->xdisplay);
|
|
||||||
DPMSForceLevel (manager_xrandr->xdisplay, state);
|
|
||||||
DPMSSetTimeouts (manager_xrandr->xdisplay, 0, 0, 0);
|
|
||||||
+ mtk_x11_error_trap_pop (manager_xrandr->xdisplay);
|
|
||||||
}
|
|
||||||
|
|
||||||
static xcb_randr_rotation_t
|
|
||||||
--
|
|
||||||
GitLab
|
|
||||||
|
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Sep 16 22:09:37 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||||
|
|
||||||
|
- Update to version 45.0:
|
||||||
|
+ Fix focus-follows-mouse mode
|
||||||
|
+ Optimize applying relative transformation matrix
|
||||||
|
+ Add support for P010 YCbCr format
|
||||||
|
+ Fix hardware cursor stuttering on Raspberry Pi
|
||||||
|
+ Fix input in multi-monitor remote desktop sessions with libei
|
||||||
|
+ Fixed crashes
|
||||||
|
+ Misc. bug fixes and cleanups
|
||||||
|
+ Updated translations.
|
||||||
|
- Drop mutter-trap-dpms-errors.patch: Fixed upstream.
|
||||||
|
- Change compression of tarball in service and spec to zst from xz.
|
||||||
|
- Add pkgconfig(libdisplay-info) BuildRequires and pass
|
||||||
|
libdisplay_info=true to meson setup: New optional dependency,
|
||||||
|
build libdisplay-info support.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Sep 14 02:51:54 UTC 2023 - Alynx Zhou <alynx.zhou@suse.com>
|
Thu Sep 14 02:51:54 UTC 2023 - Alynx Zhou <alynx.zhou@suse.com>
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
name: mutter
|
name: mutter
|
||||||
version: 45.rc
|
version: 45.0
|
||||||
mtime: 1694001501
|
mtime: 1694897463
|
||||||
commit: 493e799398991e832f3cec38f376e2ec26fc7bda
|
commit: 4f6c91847088d7d6476b88575b3a6601b819b443
|
||||||
|
@ -22,13 +22,13 @@
|
|||||||
%define api_minor 0
|
%define api_minor 0
|
||||||
%define libmutter libmutter-%{api_major}-%{api_minor}
|
%define libmutter libmutter-%{api_major}-%{api_minor}
|
||||||
Name: mutter
|
Name: mutter
|
||||||
Version: 45.rc
|
Version: 45.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Window and compositing manager based on Clutter
|
Summary: Window and compositing manager based on Clutter
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
Group: System/GUI/GNOME
|
Group: System/GUI/GNOME
|
||||||
URL: https://www.gnome.org
|
URL: https://www.gnome.org
|
||||||
Source0: %{name}-%{version}.tar.xz
|
Source0: %{name}-%{version}.tar.zst
|
||||||
|
|
||||||
# PATCH-FIX-UPSTREAM mutter-disable-cvt-s390x.patch bsc#1158128 fcrozat@suse.com -- Do not search for cvt on s390x, it doesn't exist there
|
# PATCH-FIX-UPSTREAM mutter-disable-cvt-s390x.patch bsc#1158128 fcrozat@suse.com -- Do not search for cvt on s390x, it doesn't exist there
|
||||||
Patch1: mutter-disable-cvt-s390x.patch
|
Patch1: mutter-disable-cvt-s390x.patch
|
||||||
@ -36,8 +36,6 @@ Patch1: mutter-disable-cvt-s390x.patch
|
|||||||
Patch2: mutter-window-actor-Special-case-shaped-Java-windows.patch
|
Patch2: mutter-window-actor-Special-case-shaped-Java-windows.patch
|
||||||
# PATCH-FIX-UPSTREAM mutter-crash-meta_context_terminate.patch bsc#1199382 glgo#GNOME/mutter#2267 xwang@suse.com -- Fix SIGSEGV in meta_context_terminate
|
# PATCH-FIX-UPSTREAM mutter-crash-meta_context_terminate.patch bsc#1199382 glgo#GNOME/mutter#2267 xwang@suse.com -- Fix SIGSEGV in meta_context_terminate
|
||||||
Patch3: mutter-crash-meta_context_terminate.patch
|
Patch3: mutter-crash-meta_context_terminate.patch
|
||||||
# PATCH-FIX-UPSTERAM mutter-trap-dpms-errors.patch bsc#1215273 glgo#GNOME/mutter!3160 alynx.zhou@suse.com -- Trap non-critical DPMS errors
|
|
||||||
Patch4: mutter-trap-dpms-errors.patch
|
|
||||||
|
|
||||||
## SLE-only patches start at 1000
|
## SLE-only patches start at 1000
|
||||||
# PATCH-FEATURE-SLE mutter-SLE-bell.patch FATE#316042 bnc#889218 idonmez@suse.com -- make audible bell work out of the box.
|
# PATCH-FEATURE-SLE mutter-SLE-bell.patch FATE#316042 bnc#889218 idonmez@suse.com -- make audible bell work out of the box.
|
||||||
@ -74,6 +72,7 @@ BuildRequires: pkgconfig(gudev-1.0) >= 232
|
|||||||
BuildRequires: pkgconfig(json-glib-1.0) >= 0.12.0
|
BuildRequires: pkgconfig(json-glib-1.0) >= 0.12.0
|
||||||
BuildRequires: pkgconfig(lcms2) >= 2.6
|
BuildRequires: pkgconfig(lcms2) >= 2.6
|
||||||
BuildRequires: pkgconfig(libcanberra-gtk3) >= 0.26
|
BuildRequires: pkgconfig(libcanberra-gtk3) >= 0.26
|
||||||
|
BuildRequires: pkgconfig(libdisplay-info)
|
||||||
BuildRequires: pkgconfig(libdrm) >= 2.4.83
|
BuildRequires: pkgconfig(libdrm) >= 2.4.83
|
||||||
BuildRequires: pkgconfig(libeis-1.0)
|
BuildRequires: pkgconfig(libeis-1.0)
|
||||||
BuildRequires: pkgconfig(libinput) >= 1.15.0
|
BuildRequires: pkgconfig(libinput) >= 1.15.0
|
||||||
@ -149,7 +148,6 @@ applications that want to make use of the mutter library.
|
|||||||
%patch1 -p1
|
%patch1 -p1
|
||||||
%patch2 -p1
|
%patch2 -p1
|
||||||
%patch3 -p1
|
%patch3 -p1
|
||||||
%patch4 -p1
|
|
||||||
%endif
|
%endif
|
||||||
# SLE-only patches and translations.
|
# SLE-only patches and translations.
|
||||||
%if 0%{?sle_version}
|
%if 0%{?sle_version}
|
||||||
@ -167,6 +165,7 @@ applications that want to make use of the mutter library.
|
|||||||
-Dtests=false \
|
-Dtests=false \
|
||||||
-Dinstalled_tests=false \
|
-Dinstalled_tests=false \
|
||||||
-Dxwayland_initfd=auto \
|
-Dxwayland_initfd=auto \
|
||||||
|
-Dlibdisplay_info=true \
|
||||||
%if %{with profiler}
|
%if %{with profiler}
|
||||||
-Dprofiler=true \
|
-Dprofiler=true \
|
||||||
%else
|
%else
|
||||||
|
Loading…
Reference in New Issue
Block a user