Accepting request 736558 from GNOME:Factory
Scripted push from {project} OBS-URL: https://build.opensuse.org/request/show/736558 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gnome-session?expand=0&rev=185
This commit is contained in:
commit
ed6360240c
5
_service
5
_service
@ -2,9 +2,8 @@
|
|||||||
<service name="obs_scm" mode="disabled">
|
<service name="obs_scm" mode="disabled">
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="url">https://gitlab.gnome.org/GNOME/gnome-session.git</param>
|
<param name="url">https://gitlab.gnome.org/GNOME/gnome-session.git</param>
|
||||||
<param name="revision">gnome-3-32</param>
|
<param name="revision">refs/tags/3.34.1</param>
|
||||||
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="changesgenerate">enable</param>
|
|
||||||
</service>
|
</service>
|
||||||
<service name="tar" mode="buildtime"/>
|
<service name="tar" mode="buildtime"/>
|
||||||
<service name="recompress" mode="buildtime">
|
<service name="recompress" mode="buildtime">
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
<servicedata>
|
|
||||||
<service name="tar_scm">
|
|
||||||
<param name="url">https://gitlab.gnome.org/GNOME/gnome-session.git</param>
|
|
||||||
<param name="changesrevision">2550833a37250cee889ac12ce1e52965166169ff</param></service></servicedata>
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:2c9528d997857686ac7d518a14506999103f9aa3a0551471c01072d68323b908
|
|
||||||
size 3615756
|
|
3
gnome-session-3.34.1.obscpio
Normal file
3
gnome-session-3.34.1.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:68f85a1378642afd8799b1fa58dbf74e402f660f30fa59d16b2798124b77f997
|
||||||
|
size 3590156
|
@ -1,43 +0,0 @@
|
|||||||
From 8676d77beb46e5a1f52ca0196ebebcd9890be5c2 Mon Sep 17 00:00:00 2001
|
|
||||||
From: xiaoguang wang <xwang@suse.com>
|
|
||||||
Date: Tue, 12 Mar 2019 10:59:46 +0800
|
|
||||||
Subject: [PATCH] presence: Enable idle detection while screensaver is active
|
|
||||||
|
|
||||||
Dim screen function depends on signal STATUS_CHANGED. To dim screen when
|
|
||||||
screensaver is active, need to enable idle detection at that time.
|
|
||||||
|
|
||||||
https://gitlab.gnome.org/GNOME/gnome-shell/issues/900
|
|
||||||
---
|
|
||||||
gnome-session/gsm-presence.c | 9 ++-------
|
|
||||||
1 file changed, 2 insertions(+), 7 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/gnome-session/gsm-presence.c b/gnome-session/gsm-presence.c
|
|
||||||
index fa476abc..cdfa3ccd 100644
|
|
||||||
--- a/gnome-session/gsm-presence.c
|
|
||||||
+++ b/gnome-session/gsm-presence.c
|
|
||||||
@@ -173,10 +173,7 @@ idle_became_idle_cb (GnomeIdleMonitor *idle_monitor,
|
|
||||||
gpointer user_data)
|
|
||||||
{
|
|
||||||
GsmPresence *presence = user_data;
|
|
||||||
- /* We should already be idle,
|
|
||||||
- * see on_screensaver_active_changed() */
|
|
||||||
- if (!presence->priv->screensaver_active)
|
|
||||||
- set_session_idle (presence, TRUE);
|
|
||||||
+ set_session_idle (presence, TRUE);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
@@ -185,9 +182,7 @@ idle_became_active_cb (GnomeIdleMonitor *idle_monitor,
|
|
||||||
gpointer user_data)
|
|
||||||
{
|
|
||||||
GsmPresence *presence = user_data;
|
|
||||||
- /* We can only be non-idle if the screensaver is gone */
|
|
||||||
- if (!presence->priv->screensaver_active)
|
|
||||||
- set_session_idle (presence, FALSE);
|
|
||||||
+ set_session_idle (presence, FALSE);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
--
|
|
||||||
2.16.4
|
|
||||||
|
|
@ -1,3 +1,53 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 7 09:57:51 UTC 2019 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||||
|
|
||||||
|
- Update to version 3.34.1:
|
||||||
|
+ Drop accidentally included `--debug` when launching
|
||||||
|
`gnome-session-binary`.
|
||||||
|
+ Introduce a list of variables to potentially unset in launched
|
||||||
|
sessions.
|
||||||
|
+ Updated translations.
|
||||||
|
- Drop gnome-session-no-debug.patch: Fixed upstream.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Sep 17 22:16:07 UTC 2019 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||||
|
|
||||||
|
- Add gnome-session-no-debug.patch: Disable debug log spam in
|
||||||
|
journald. Patch/bug to be sent upstream.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 11 16:33:05 UTC 2019 - bjorn.lie@gmail.com
|
||||||
|
|
||||||
|
- Update to version 3.34.0:
|
||||||
|
+ Updated translations.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 5 11:52:46 NZST 2019 - luke@ljones.dev
|
||||||
|
|
||||||
|
- Update to version 3.33.92:
|
||||||
|
+ More systemd --user fixes
|
||||||
|
+ Updated translations.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Sep 1 13:53:21 CDT 2019 - mgorse@suse.com
|
||||||
|
|
||||||
|
- Update to version 3.33.90:
|
||||||
|
+ Add support to manage the session using the systemd user
|
||||||
|
instance.
|
||||||
|
+ Update session definitions to match new gnome-settings-daemon.
|
||||||
|
+ Don't show logout button in fail whale when not logged in.
|
||||||
|
+ Handle apps exiting abruptly at log out better.
|
||||||
|
+ Updated translations.
|
||||||
|
- Changes from version 3.33.4:
|
||||||
|
+ Fix warning in log spew with dbus activated services.
|
||||||
|
+ Fix idle detection.
|
||||||
|
+ Advertize support for GDM's session registration API
|
||||||
|
+ Updated translations.
|
||||||
|
- Drop
|
||||||
|
gnome-session-presence-Enable-idle-detection-when-screen-locked.patch:
|
||||||
|
fixed upstream.
|
||||||
|
- Add systemd user unit files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 02 18:53:38 UTC 2019 - bjorn.lie@gmail.com
|
Fri Aug 02 18:53:38 UTC 2019 - bjorn.lie@gmail.com
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: gnome-session
|
name: gnome-session
|
||||||
version: 3.32.0+5
|
version: 3.34.1
|
||||||
mtime: 1558614418
|
mtime: 1570436901
|
||||||
commit: 2550833a37250cee889ac12ce1e52965166169ff
|
commit: 984dce35f9b59c016cbf21542c642da9e2e7d77b
|
||||||
|
|
||||||
|
@ -17,21 +17,18 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: gnome-session
|
Name: gnome-session
|
||||||
Version: 3.32.0+5
|
Version: 3.34.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Session Tools for the GNOME Desktop
|
Summary: Session Tools for the GNOME Desktop
|
||||||
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
|
||||||
# We are using source services, so no download url for source
|
|
||||||
Source0: %{name}-%{version}.tar.xz
|
Source0: %{name}-%{version}.tar.xz
|
||||||
Source1: gnome
|
Source1: gnome
|
||||||
Source2: gnome.desktop
|
Source2: gnome.desktop
|
||||||
|
|
||||||
# PATCH-FIX-UPSTREAM gnome-session-better-handle-empty-xdg_session_type.patch bsc#1084756 bgo#794256 yfjiang@suse.com -- solution provided by msrb@suse.com using a more reasonable way to handle gpu acceleration check
|
# PATCH-FIX-UPSTREAM gnome-session-better-handle-empty-xdg_session_type.patch bsc#1084756 bgo#794256 yfjiang@suse.com -- solution provided by msrb@suse.com using a more reasonable way to handle gpu acceleration check
|
||||||
Patch0: gnome-session-better-handle-empty-xdg_session_type.patch
|
Patch0: gnome-session-better-handle-empty-xdg_session_type.patch
|
||||||
# PATCH-FIX-UPSTREAM gnome-session-presence-Enable-idle-detection-when-screen-locked.patch bsc#1118286 glgo#GNOME/gnome-shell#900 xwang@suse.com -- Enable dimming screen when screen is locked
|
|
||||||
Patch1: gnome-session-presence-Enable-idle-detection-when-screen-locked.patch
|
|
||||||
# PATCH-FIX-OPENSUSE gnome-session-s390-not-require-g-s-d_wacom.patch bsc#1129412 yfjiang@suse.com -- Remove the runtime requirement of g-s-d Wacom plugin
|
# PATCH-FIX-OPENSUSE gnome-session-s390-not-require-g-s-d_wacom.patch bsc#1129412 yfjiang@suse.com -- Remove the runtime requirement of g-s-d Wacom plugin
|
||||||
Patch2: gnome-session-s390-not-require-g-s-d_wacom.patch
|
Patch2: gnome-session-s390-not-require-g-s-d_wacom.patch
|
||||||
|
|
||||||
@ -109,7 +106,6 @@ functional GNOME desktop.
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
%patch1 -p1
|
|
||||||
%ifarch s390 s390x
|
%ifarch s390 s390x
|
||||||
%patch2 -p1
|
%patch2 -p1
|
||||||
%endif
|
%endif
|
||||||
@ -204,8 +200,28 @@ ln -s %{_sysconfdir}/alternatives/default-waylandsession.desktop %{buildroot}%{_
|
|||||||
%{_libexecdir}/gnome-session-check-accelerated
|
%{_libexecdir}/gnome-session-check-accelerated
|
||||||
%{_libexecdir}/gnome-session-check-accelerated-gl-helper
|
%{_libexecdir}/gnome-session-check-accelerated-gl-helper
|
||||||
%{_libexecdir}/gnome-session-check-accelerated-gles-helper
|
%{_libexecdir}/gnome-session-check-accelerated-gles-helper
|
||||||
|
%{_libexecdir}/gnome-session-ctl
|
||||||
%{_libexecdir}/gnome-session-failed
|
%{_libexecdir}/gnome-session-failed
|
||||||
%{_datadir}/gnome-session/hardware-compatibility
|
%{_datadir}/gnome-session/hardware-compatibility
|
||||||
|
%{_userunitdir}/gnome-session-failed.service
|
||||||
|
%{_userunitdir}/gnome-session-failed.target
|
||||||
|
%{_userunitdir}/gnome-session-initialized.target
|
||||||
|
%{_userunitdir}/gnome-session-manager.target
|
||||||
|
%{_userunitdir}/gnome-session-manager@.service
|
||||||
|
%{_userunitdir}/gnome-session-monitor.service
|
||||||
|
%{_userunitdir}/gnome-session-pre.target
|
||||||
|
%{_userunitdir}/gnome-session-restart-dbus.service
|
||||||
|
%{_userunitdir}/gnome-session-shutdown.target
|
||||||
|
%{_userunitdir}/gnome-session-signal-init.service
|
||||||
|
%{_userunitdir}/gnome-session-stable.target
|
||||||
|
%{_userunitdir}/gnome-session-stable.timer
|
||||||
|
%{_userunitdir}/gnome-session-wayland.target
|
||||||
|
%{_userunitdir}/gnome-session-wayland@.target
|
||||||
|
%{_userunitdir}/gnome-session-x11.target
|
||||||
|
%{_userunitdir}/gnome-session-x11@.target
|
||||||
|
%{_userunitdir}/gnome-session-x11-services.target
|
||||||
|
%{_userunitdir}/gnome-session.target
|
||||||
|
%{_userunitdir}/gnome-session@.target
|
||||||
|
|
||||||
%files lang -f %{name}-3.0.lang
|
%files lang -f %{name}-3.0.lang
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user