Hello community,

here is the log from the commit of package gnome-session for openSUSE:Factory 
checked in at 2016-08-22 10:49:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-session (Old)
 and      /work/SRC/openSUSE:Factory/.gnome-session.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnome-session"

Changes:
--------
--- /work/SRC/openSUSE:Factory/gnome-session/gnome-session.changes      
2016-08-06 20:34:54.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-session.new/gnome-session.changes 
2016-08-22 10:49:58.000000000 +0200
@@ -1,0 +2,15 @@
+Thu Aug 18 13:08:30 UTC 2016 - [email protected]
+
+- Update
+  gnome-session-check-dbus-update-activation-environment.patch: use
+  the upstream commited solution
+
+-------------------------------------------------------------------
+Tue Aug 16 10:19:26 UTC 2016 - [email protected]
+
+- Add gnome-session-check-dbus-update-activation-environment.patch:
+  Check if dbus-update-activation-environment exists before calling
+  it to silence warnings for SLE12 SP2 and LEAP 42.2 (bsc#993342,
+  bgo#768036).
+
+-------------------------------------------------------------------

New:
----
  gnome-session-check-dbus-update-activation-environment.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ gnome-session.spec ++++++
--- /var/tmp/diff_new_pack.LFnNp3/_old  2016-08-22 10:49:59.000000000 +0200
+++ /var/tmp/diff_new_pack.LFnNp3/_new  2016-08-22 10:49:59.000000000 +0200
@@ -30,6 +30,8 @@
 Patch0:         gnome-session-ice-auth-for-suid.patch
 # PATCH-FEATURE-UPSTREAM 
gnome-session-logging-to-systemd-journal-configurable.patch bsc#876685 
bgo#768982 [email protected] -- Add a new configure switch for systemd journal 
support.
 Patch1:         gnome-session-logging-to-systemd-journal-configurable.patch
+# PATCH-FIX-UPSTREAM 
gnome-session-check-dbus-update-activation-environment.patch bsc#993342 
bgo#768036 [email protected] -- Check existence of 
dbus-update-activation-environment before calling it to avoid warnings.
+Patch2:         gnome-session-check-dbus-update-activation-environment.patch
 BuildRequires:  autoconf
 BuildRequires:  fdupes
 BuildRequires:  intltool
@@ -107,6 +109,7 @@
 %patch0 -p1
 %endif
 %patch1 -p1
+%patch2 -p1
 
 %build
 autoconf

++++++ gnome-session-check-dbus-update-activation-environment.patch ++++++
commit 4abdb7925c3bf91e0802e42bab6c90d9a3086b2e
Author: Dominique Leuenberger <[email protected]>
Date:   Tue Aug 16 16:15:21 2016 +0200

    Do not report errors in absence of dbus-update-activation-environment
    
    dbus-update-activation-environment was introduced with dbus 1.10.4
    gnome-session by itself does not depend on any specific version of
    dbus at all - but on dbus-glib-1 (DBUS_GLIB_REQUIRED=0.76)
    
    The latest version of dbus-glib (ver 106) requires dbus-1 1.8: it is
    thus a valid setup to run not have dbus-update-activation-environment
    on the system. Warning the user about its absence is alerting users
    for not reason.

diff --git a/gnome-session/gnome-session.in b/gnome-session/gnome-session.in
index 6b2ba18..5f4b303 100644
--- a/gnome-session/gnome-session.in
+++ b/gnome-session/gnome-session.in
@@ -12,6 +12,6 @@ if [ -n "$REGION" ]; then
   export LC_PAPER=$REGION
 fi
 
-dbus-update-activation-environment --all ||:
+dbus-update-activation-environment --all >& /dev/null ||:
 
 exec @libexecdir@/gnome-session-binary "$@"

Reply via email to