Accepting request 378645 from GNOME:Factory
Update to 3.20.0 (forwarded request 378381 from dimstar) OBS-URL: https://build.opensuse.org/request/show/378645 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gnome-session?expand=0&rev=155
This commit is contained in:
commit
1062f7dd8e
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b37d823d57ff2e3057401a426279954699cfe1e44e59a4cbdd941687ff928a45
|
|
||||||
size 758552
|
|
3
gnome-session-3.20.0.tar.xz
Normal file
3
gnome-session-3.20.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:66ff72379a2e7ee11ab7fcec37ad911d36f12471845dc7755e1ce55d29301b34
|
||||||
|
size 784388
|
@ -1,99 +0,0 @@
|
|||||||
From 5449174a1618cc7637f8c3a96c0eeae679c55248 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ray Strode <rstrode@redhat.com>
|
|
||||||
Date: Thu, 5 Nov 2015 09:41:16 -0500
|
|
||||||
Subject: autostart-app: give ever app its own journal id
|
|
||||||
|
|
||||||
Right now all session output gets attributed to
|
|
||||||
gnome-session which isn't very useful.
|
|
||||||
|
|
||||||
This commit makes sure launched apps each get
|
|
||||||
their own journal identifier.
|
|
||||||
|
|
||||||
https://bugzilla.gnome.org/show_bug.cgi?id=757571
|
|
||||||
---
|
|
||||||
gnome-session/gsm-autostart-app.c | 44 ++++++++++++++++++++++++++++++++++++++-
|
|
||||||
1 file changed, 43 insertions(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/gnome-session/gsm-autostart-app.c b/gnome-session/gsm-autostart-app.c
|
|
||||||
index 75008fe..08a434b 100644
|
|
||||||
--- a/gnome-session/gsm-autostart-app.c
|
|
||||||
+++ b/gnome-session/gsm-autostart-app.c
|
|
||||||
@@ -32,6 +32,11 @@
|
|
||||||
#include <gconf/gconf-client.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
+#ifdef HAVE_SYSTEMD
|
|
||||||
+#include <systemd/sd-journal.h>
|
|
||||||
+#include <systemd/sd-daemon.h>
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
#include "gsm-autostart-app.h"
|
|
||||||
#include "gsm-util.h"
|
|
||||||
|
|
||||||
@@ -1014,6 +1019,34 @@ app_launched (GAppLaunchContext *ctx,
|
|
||||||
app->priv->startup_id = sn_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
+#ifdef HAVE_SYSTEMD
|
|
||||||
+static void
|
|
||||||
+on_child_setup (GsmAutostartApp *app)
|
|
||||||
+{
|
|
||||||
+ int standard_output, standard_error;
|
|
||||||
+
|
|
||||||
+ /* The FALSE means programs aren't expected to prefix each
|
|
||||||
+ * line with <n> prefix to specify priority.
|
|
||||||
+ */
|
|
||||||
+ standard_output = sd_journal_stream_fd (app->priv->desktop_id,
|
|
||||||
+ LOG_INFO,
|
|
||||||
+ FALSE);
|
|
||||||
+ standard_error = sd_journal_stream_fd (app->priv->desktop_id,
|
|
||||||
+ LOG_WARNING,
|
|
||||||
+ FALSE);
|
|
||||||
+
|
|
||||||
+ if (standard_output >= 0) {
|
|
||||||
+ dup2 (standard_output, STDOUT_FILENO);
|
|
||||||
+ close (standard_output);
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ if (standard_error >= 0) {
|
|
||||||
+ dup2 (standard_error, STDERR_FILENO);
|
|
||||||
+ close (standard_error);
|
|
||||||
+ }
|
|
||||||
+}
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
static gboolean
|
|
||||||
autostart_app_start_spawn (GsmAutostartApp *app,
|
|
||||||
GError **error)
|
|
||||||
@@ -1022,6 +1055,8 @@ autostart_app_start_spawn (GsmAutostartApp *app,
|
|
||||||
GError *local_error;
|
|
||||||
const char *startup_id;
|
|
||||||
GAppLaunchContext *ctx;
|
|
||||||
+ GSpawnChildSetupFunc child_setup_func = NULL;
|
|
||||||
+ gpointer child_setup_data = NULL;
|
|
||||||
guint handler;
|
|
||||||
|
|
||||||
startup_id = gsm_app_peek_startup_id (GSM_APP (app));
|
|
||||||
@@ -1041,12 +1076,19 @@ autostart_app_start_spawn (GsmAutostartApp *app,
|
|
||||||
g_app_launch_context_setenv (ctx, "DESKTOP_AUTOSTART_ID", startup_id);
|
|
||||||
}
|
|
||||||
|
|
||||||
+#ifdef HAVE_SYSTEMD
|
|
||||||
+ if (sd_booted () > 0) {
|
|
||||||
+ child_setup_func = (GSpawnChildSetupFunc) on_child_setup;
|
|
||||||
+ child_setup_data = app;
|
|
||||||
+ }
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
handler = g_signal_connect (ctx, "launched", G_CALLBACK (app_launched), app);
|
|
||||||
success = g_desktop_app_info_launch_uris_as_manager (app->priv->app_info,
|
|
||||||
NULL,
|
|
||||||
ctx,
|
|
||||||
G_SPAWN_DO_NOT_REAP_CHILD | G_SPAWN_SEARCH_PATH,
|
|
||||||
- NULL, NULL,
|
|
||||||
+ child_setup_func, child_setup_data,
|
|
||||||
NULL, NULL,
|
|
||||||
&local_error);
|
|
||||||
g_signal_handler_disconnect (ctx, handler);
|
|
||||||
--
|
|
||||||
cgit v0.11.2
|
|
@ -1,3 +1,57 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 23 08:20:15 UTC 2016 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 3.20.0:
|
||||||
|
+ Updated translations.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Mar 19 12:12:27 UTC 2016 - zaitor@opensuse.org
|
||||||
|
|
||||||
|
- Stop pretending we still support a non systemd setup: Remove
|
||||||
|
define with_systemd and conditional ConsoleKit Requires.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 16 08:51:54 UTC 2016 - zaitor@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 3.19.92:
|
||||||
|
+ More logout fixes.
|
||||||
|
+ Switch back to Xorg by default.
|
||||||
|
+ Crasher fix.
|
||||||
|
+ Updated translations.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 4 22:24:39 UTC 2016 - zaitor@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 3.19.91:
|
||||||
|
+ Logout fixes.
|
||||||
|
+ Setup Qt to be themed right.
|
||||||
|
+ Use individual dbus watches instead of one one global
|
||||||
|
NameOwnerChanged handler, to avoid spurious wake ups.
|
||||||
|
+ Updated translations.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 21 15:38:31 UTC 2016 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 3.19.4:
|
||||||
|
+ Give every app its own journal id.
|
||||||
|
+ Rework startup files as part of the wayland effort.
|
||||||
|
+ Fix command line help output.
|
||||||
|
- Drop gnome-session-gnome-shell-renamed.patch: fixed upstream.
|
||||||
|
- Drop gnome-session-autostart-app-give-every-app-journal-id.patch:
|
||||||
|
fixed upstream.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 4 16:16:53 UTC 2016 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Add gnome-session-gnome-shell-renamed.patch: gnome-shell.desktop
|
||||||
|
has been renamed to org.gnome.Shell.desktop.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 23 15:41:08 UTC 2015 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- No longer require gnome-shell-wayland: the package no longer
|
||||||
|
exists as the wayland session is being promoted to be default.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 26 03:09:47 UTC 2015 - zaitor@opensuse.org
|
Thu Nov 26 03:09:47 UTC 2015 - zaitor@opensuse.org
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package gnome-session
|
# spec file for package gnome-session
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,22 +16,18 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define with_systemd 1
|
|
||||||
|
|
||||||
Name: gnome-session
|
Name: gnome-session
|
||||||
Version: 3.18.1.2
|
Version: 3.20.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Session Tools for the GNOME Desktop
|
Summary: Session Tools for the GNOME Desktop
|
||||||
License: GPL-2.0+
|
License: GPL-2.0+
|
||||||
Group: System/GUI/GNOME
|
Group: System/GUI/GNOME
|
||||||
Url: http://www.gnome.org
|
Url: http://www.gnome.org
|
||||||
Source: http://download.gnome.org/sources/gnome-session/3.18/%{name}-%{version}.tar.xz
|
Source: http://download.gnome.org/sources/gnome-session/3.20/%{name}-%{version}.tar.xz
|
||||||
Source1: gnome
|
Source1: gnome
|
||||||
Source2: gnome.desktop
|
Source2: gnome.desktop
|
||||||
# PATCH-FIX-UPSTREAM gnome-session-ice-auth-for-suid.patch hpj@novell.com -- Carries ICE auth over to other UIDs in this session using an env var.
|
# PATCH-FIX-UPSTREAM gnome-session-ice-auth-for-suid.patch hpj@novell.com -- Carries ICE auth over to other UIDs in this session using an env var.
|
||||||
Patch0: gnome-session-ice-auth-for-suid.patch
|
Patch0: gnome-session-ice-auth-for-suid.patch
|
||||||
# PATCH-FIX-UPSTREAM gnome-session-autostart-app-give-every-app-journal-id.patch zaitor@opensuse.org -- Patch from upstream git.
|
|
||||||
Patch1: gnome-session-autostart-app-give-every-app-journal-id.patch
|
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: gnome-common
|
BuildRequires: gnome-common
|
||||||
BuildRequires: hicolor-icon-theme
|
BuildRequires: hicolor-icon-theme
|
||||||
@ -47,10 +43,8 @@ BuildRequires: pkgconfig(gnome-desktop-3.0) >= 3.9.91
|
|||||||
BuildRequires: pkgconfig(gtk+-3.0) >= 2.90.7
|
BuildRequires: pkgconfig(gtk+-3.0) >= 2.90.7
|
||||||
BuildRequires: pkgconfig(ice)
|
BuildRequires: pkgconfig(ice)
|
||||||
BuildRequires: pkgconfig(json-glib-1.0) >= 0.10
|
BuildRequires: pkgconfig(json-glib-1.0) >= 0.10
|
||||||
%if 0%{?suse_version} >= 1220
|
|
||||||
BuildRequires: pkgconfig(libsystemd-daemon)
|
BuildRequires: pkgconfig(libsystemd-daemon)
|
||||||
BuildRequires: pkgconfig(libsystemd-login)
|
BuildRequires: pkgconfig(libsystemd-login)
|
||||||
%endif
|
|
||||||
BuildRequires: pkgconfig(sm)
|
BuildRequires: pkgconfig(sm)
|
||||||
BuildRequires: pkgconfig(x11)
|
BuildRequires: pkgconfig(x11)
|
||||||
BuildRequires: pkgconfig(xau)
|
BuildRequires: pkgconfig(xau)
|
||||||
@ -94,7 +88,6 @@ Summary: Session Manager for GNOME -- Wayland session
|
|||||||
Group: System/GUI/GNOME
|
Group: System/GUI/GNOME
|
||||||
Requires: %{name} = %{version}
|
Requires: %{name} = %{version}
|
||||||
Requires: gnome-settings-daemon
|
Requires: gnome-settings-daemon
|
||||||
Requires: gnome-shell-wayland
|
|
||||||
|
|
||||||
%description wayland
|
%description wayland
|
||||||
This package contains the definition of the default GNOME session on Wayland.
|
This package contains the definition of the default GNOME session on Wayland.
|
||||||
@ -102,9 +95,6 @@ This package contains the definition of the default GNOME session on Wayland.
|
|||||||
%package core
|
%package core
|
||||||
Summary: Session Manager for GNOME -- Minimal Version
|
Summary: Session Manager for GNOME -- Minimal Version
|
||||||
Group: System/GUI/GNOME
|
Group: System/GUI/GNOME
|
||||||
%if ! %{with_systemd}
|
|
||||||
Requires: ConsoleKit
|
|
||||||
%endif
|
|
||||||
Requires: dbus-1-x11
|
Requires: dbus-1-x11
|
||||||
Requires: gsettings-desktop-schemas >= 0.1.7
|
Requires: gsettings-desktop-schemas >= 0.1.7
|
||||||
Requires: hicolor-icon-theme
|
Requires: hicolor-icon-theme
|
||||||
@ -116,34 +106,31 @@ used for specific cases. The gnome-session package is needed for a fully
|
|||||||
functional GNOME desktop.
|
functional GNOME desktop.
|
||||||
|
|
||||||
%lang_package
|
%lang_package
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
# Disabled, as it fails
|
# Disabled, as it fails
|
||||||
#translation-update-upstream
|
#translation-update-upstream
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
%patch1 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
NOCONFIGURE=1 gnome-autogen.sh
|
NOCONFIGURE=1 gnome-autogen.sh
|
||||||
%configure \
|
%configure \
|
||||||
--enable-systemd \
|
--enable-systemd \
|
||||||
--disable-gconf
|
--disable-gconf
|
||||||
%__make %{?jobs:-j%jobs} V=1
|
make %{?_smp_mflags} V=1
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%makeinstall
|
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
||||||
# install startup script and xsession file
|
# install startup script and xsession file
|
||||||
install -d -m755 %{buildroot}%{_bindir}
|
install -d -m755 %{buildroot}%{_bindir}
|
||||||
install -m755 %SOURCE1 %{buildroot}%{_bindir}/gnome
|
install -m755 %{SOURCE1} %{buildroot}%{_bindir}/gnome
|
||||||
install -d -m755 %{buildroot}%{_datadir}/xsessions
|
install -d -m755 %{buildroot}%{_datadir}/xsessions
|
||||||
install -m644 %SOURCE2 %{buildroot}%{_datadir}/xsessions/gnome.desktop
|
install -m644 %{SOURCE2} %{buildroot}%{_datadir}/xsessions/gnome.desktop
|
||||||
%suse_update_desktop_file %{buildroot}%{_datadir}/xsessions/gnome.desktop
|
%suse_update_desktop_file %{buildroot}%{_datadir}/xsessions/gnome.desktop
|
||||||
%find_lang %{name}-3.0 %{?no_lang_C}
|
%find_lang %{name}-3.0 %{?no_lang_C}
|
||||||
%fdupes %{buildroot}
|
%fdupes %{buildroot}
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf %{buildroot}
|
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%desktop_database_post
|
%desktop_database_post
|
||||||
%icon_theme_cache_post
|
%icon_theme_cache_post
|
||||||
@ -164,6 +151,8 @@ rm -rf %{buildroot}
|
|||||||
%defattr (-, root, root)
|
%defattr (-, root, root)
|
||||||
%{_bindir}/gnome
|
%{_bindir}/gnome
|
||||||
%{_datadir}/xsessions/gnome.desktop
|
%{_datadir}/xsessions/gnome.desktop
|
||||||
|
# XOrg session is again default, hence this is disabled for now.
|
||||||
|
#{_datadir}/xsessions/gnome-xorg.desktop
|
||||||
%{_datadir}/icons/hicolor/*/apps/session-properties*
|
%{_datadir}/icons/hicolor/*/apps/session-properties*
|
||||||
%{_datadir}/gnome-session/session-properties.ui
|
%{_datadir}/gnome-session/session-properties.ui
|
||||||
|
|
||||||
@ -174,8 +163,9 @@ rm -rf %{buildroot}
|
|||||||
|
|
||||||
%files wayland
|
%files wayland
|
||||||
%defattr (-, root, root)
|
%defattr (-, root, root)
|
||||||
%{_datadir}/gnome-session/sessions/gnome-wayland.session
|
|
||||||
%dir %{_datadir}/wayland-sessions
|
%dir %{_datadir}/wayland-sessions
|
||||||
|
# XOrg session is again default, hence this is disabled for now.
|
||||||
|
#{_datadir}/wayland-sessions/gnome.desktop
|
||||||
%{_datadir}/wayland-sessions/gnome-wayland.desktop
|
%{_datadir}/wayland-sessions/gnome-wayland.desktop
|
||||||
|
|
||||||
%files core
|
%files core
|
||||||
@ -188,9 +178,9 @@ rm -rf %{buildroot}
|
|||||||
%{_datadir}/glib-2.0/schemas/org.gnome.SessionManager.gschema.xml
|
%{_datadir}/glib-2.0/schemas/org.gnome.SessionManager.gschema.xml
|
||||||
%dir %{_datadir}/gnome-session
|
%dir %{_datadir}/gnome-session
|
||||||
%dir %{_datadir}/gnome-session/sessions
|
%dir %{_datadir}/gnome-session/sessions
|
||||||
%doc %{_mandir}/man1/gnome-session.1%{?ext_man}
|
%{_mandir}/man1/gnome-session.1%{?ext_man}
|
||||||
%doc %{_mandir}/man1/gnome-session-inhibit.1%{?ext_man}
|
%{_mandir}/man1/gnome-session-inhibit.1%{?ext_man}
|
||||||
%doc %{_mandir}/man1/gnome-session-quit.1%{?ext_man}
|
%{_mandir}/man1/gnome-session-quit.1%{?ext_man}
|
||||||
%{_libexecdir}/gnome-session-binary
|
%{_libexecdir}/gnome-session-binary
|
||||||
# Helper for the session definitions, to know if hardware is accelerated
|
# Helper for the session definitions, to know if hardware is accelerated
|
||||||
%{_libexecdir}/gnome-session-check-accelerated
|
%{_libexecdir}/gnome-session-check-accelerated
|
||||||
@ -199,5 +189,6 @@ rm -rf %{buildroot}
|
|||||||
%{_datadir}/gnome-session/hardware-compatibility
|
%{_datadir}/gnome-session/hardware-compatibility
|
||||||
|
|
||||||
%files lang -f %{name}-3.0.lang
|
%files lang -f %{name}-3.0.lang
|
||||||
|
%defattr(-,root,root)
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user