Hello community,

here is the log from the commit of package gdm for openSUSE:Factory checked in 
at 2017-10-06 11:01:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gdm (Old)
 and      /work/SRC/openSUSE:Factory/.gdm.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gdm"

Fri Oct  6 11:01:39 2017 rev:197 rq:531696 version:3.26.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/gdm/gdm.changes  2017-09-29 11:54:09.873139867 
+0200
+++ /work/SRC/openSUSE:Factory/.gdm.new/gdm.changes     2017-10-06 
11:01:52.175686621 +0200
@@ -1,0 +2,14 @@
+Wed Oct  4 16:30:20 UTC 2017 - dims...@opensuse.org
+
+- Update to version 3.26.1:
+  + Check for Xwayland before agreeing to do wayland.
+  + Misc wayland fixes.
+  + Xdmcp fixes.
+  + Minor clean ups.
+  + Allow gnome initial-setup to be forced from kernel command
+    line.
+  + Updated translations.
+- Drop gdm-check-for-Xwayland.patch: fixed upstream.
+- Rebase gdm-plymouth-vt1.patch and gdm-xauthlocalhostname.patch.
+
+-------------------------------------------------------------------

Old:
----
  gdm-3.26.0.tar.xz
  gdm-check-for-Xwayland.patch

New:
----
  gdm-3.26.1.tar.xz

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

Other differences:
------------------
++++++ gdm.spec ++++++
--- /var/tmp/diff_new_pack.VWaXYf/_old  2017-10-06 11:01:52.935571714 +0200
+++ /var/tmp/diff_new_pack.VWaXYf/_new  2017-10-06 11:01:52.939571110 +0200
@@ -25,7 +25,7 @@
 %define enable_split_authentication 0
 
 Name:           gdm
-Version:        3.26.0
+Version:        3.26.1
 Release:        0
 Summary:        The GNOME Display Manager
 License:        GPL-2.0+
@@ -62,8 +62,6 @@
 Patch42:        gdm-fails-to-restart-gnome-shell.patch
 # PATCH-FIX-SLE gdm-default-wm-sle12.patch bnc#881659 cxi...@suse.com -- set 
default/fallback session type to SLE Classic
 Patch49:        gdm-default-wm-sle12.patch
-# PATCH-FIX-UPSTREAM gdm-check-for-Xwayland.patch bgo#787837 fcro...@suse.com 
-- Don't try Wayland if Xwayland isn't installed
-Patch50:        gdm-check-for-Xwayland.patch
 # PATCH-FIX-SLE gdm-ignore-SLE-CLASSIC-MODE.patch bsc#1060630 xw...@suse.com 
-- ignore env SLE_CLASSIC_MODE variable when switching from sle-classic session 
to gnome-classic session
 Patch51:        gdm-ignore-SLE-CLASSIC-MODE.patch
 BuildRequires:  check-devel
@@ -207,7 +205,6 @@
 %patch49 -p1
 %patch51 -p1
 %endif
-%patch50 -p1
 
 %build
 NOCONFIGURE=1 sh autogen.sh

++++++ gdm-3.26.0.tar.xz -> gdm-3.26.1.tar.xz ++++++
++++ 2216 lines of diff (skipped)

++++++ gdm-plymouth-vt1.patch ++++++
--- /var/tmp/diff_new_pack.VWaXYf/_old  2017-10-06 11:01:53.495487047 +0200
+++ /var/tmp/diff_new_pack.VWaXYf/_new  2017-10-06 11:01:53.495487047 +0200
@@ -1,7 +1,7 @@
-Index: gdm-3.12.2/daemon/main.c
+Index: gdm-3.26.1/daemon/main.c
 ===================================================================
---- gdm-3.12.2.orig/daemon/main.c
-+++ gdm-3.12.2/daemon/main.c
+--- gdm-3.26.1.orig/daemon/main.c
++++ gdm-3.26.1/daemon/main.c
 @@ -33,6 +33,8 @@
  #include <sys/wait.h>
  #include <locale.h>
@@ -11,7 +11,7 @@
  
  #include <glib.h>
  #include <glib/gi18n.h>
-@@ -308,6 +310,23 @@ block_sigusr1 (void)
+@@ -302,6 +304,23 @@ block_sigusr1 (void)
          sigprocmask (SIG_BLOCK, &mask, NULL);
  }
  
@@ -35,15 +35,15 @@
  int
  main (int    argc,
        char **argv)
-@@ -317,6 +336,7 @@ main (int    argc,
+@@ -310,6 +329,7 @@ main (int    argc,
+         GOptionContext     *context;
          GError             *error = NULL;
-         int                 ret;
          gboolean            res;
 +        gboolean            plymouth_running = FALSE;
          static gboolean     do_timed_exit    = FALSE;
          static gboolean     print_version    = FALSE;
          static gboolean     fatal_warnings   = FALSE;
-@@ -400,6 +420,8 @@ main (int    argc,
+@@ -383,6 +403,8 @@ main (int    argc,
  
          g_chdir ("/");
  
@@ -52,15 +52,14 @@
          main_loop = g_main_loop_new (NULL, FALSE);
  
          g_unix_signal_add (SIGTERM, on_shutdown_signal_cb, main_loop);
-@@ -429,6 +451,11 @@ main (int    argc,
-                 g_printerr ("%s\n", error->message);
-                 g_clear_error (&error);
-         }
-+
+@@ -405,6 +427,10 @@ main (int    argc,
+ 
+         g_main_loop_unref (main_loop);
+ 
 +        if (plymouth_running) {
 +            jump_to_vt (1);
 +        }
 +
-         return ret;
+         return EXIT_SUCCESS;
  }
  

++++++ gdm-xauthlocalhostname.patch ++++++
--- /var/tmp/diff_new_pack.VWaXYf/_old  2017-10-06 11:01:53.523482813 +0200
+++ /var/tmp/diff_new_pack.VWaXYf/_new  2017-10-06 11:01:53.523482813 +0200
@@ -1,8 +1,8 @@
-diff --git a/common/gdm-common.c b/common/gdm-common.c
-index 31fc810..fbf5978 100644
---- a/common/gdm-common.c
-+++ b/common/gdm-common.c
-@@ -591,6 +591,8 @@ gdm_get_script_environment (const char *username,
+Index: gdm-3.26.1/common/gdm-common.c
+===================================================================
+--- gdm-3.26.1.orig/common/gdm-common.c
++++ gdm-3.26.1/common/gdm-common.c
+@@ -591,6 +591,8 @@ gdm_get_script_environment (const char *
  
          if (display_hostname) {
                  g_hash_table_insert (hash, g_strdup ("REMOTE_HOST"), g_strdup 
(display_hostname));
@@ -26,11 +26,11 @@
 +                return g_strdup ("localhost");
 +        }
 +}
-diff --git a/common/gdm-common.h b/common/gdm-common.h
-index 8d83a12..bc13d70 100644
---- a/common/gdm-common.h
-+++ b/common/gdm-common.h
-@@ -54,6 +54,7 @@ const char *   gdm_make_temp_dir         (char    *template);
+Index: gdm-3.26.1/common/gdm-common.h
+===================================================================
+--- gdm-3.26.1.orig/common/gdm-common.h
++++ gdm-3.26.1/common/gdm-common.h
+@@ -54,6 +54,7 @@ const char *   gdm_make_temp_dir
  char          *gdm_generate_random_bytes (gsize          size,
                                            GError       **error);
  gboolean       gdm_goto_login_session    (GError **error);
@@ -38,11 +38,11 @@
  
  GPtrArray     *gdm_get_script_environment (const char *username,
                                             const char *display_name,
-diff --git a/daemon/gdm-display-access-file.c 
b/daemon/gdm-display-access-file.c
-index 02ec0a0..5cc18a4 100644
---- a/daemon/gdm-display-access-file.c
-+++ b/daemon/gdm-display-access-file.c
-@@ -443,13 +443,10 @@ _get_auth_info_for_display (GdmDisplayAccessFile *file,
+Index: gdm-3.26.1/daemon/gdm-display-access-file.c
+===================================================================
+--- gdm-3.26.1.orig/daemon/gdm-display-access-file.c
++++ gdm-3.26.1/daemon/gdm-display-access-file.c
+@@ -443,13 +443,10 @@ _get_auth_info_for_display (GdmDisplayAc
                   *
                   * https://bugs.freedesktop.org/show_bug.cgi?id=43425
                   */
@@ -59,11 +59,11 @@
          } else {
                  *family = FamilyWild;
                  gdm_display_get_remote_hostname (display, address, NULL);
-diff --git a/daemon/gdm-launch-environment.c b/daemon/gdm-launch-environment.c
-index a30276b..fded306 100644
---- a/daemon/gdm-launch-environment.c
-+++ b/daemon/gdm-launch-environment.c
-@@ -194,6 +194,11 @@ build_launch_environment (GdmLaunchEnvironment 
*launch_environment,
+Index: gdm-3.26.1/daemon/gdm-launch-environment.c
+===================================================================
+--- gdm-3.26.1.orig/daemon/gdm-launch-environment.c
++++ gdm-3.26.1/daemon/gdm-launch-environment.c
+@@ -201,6 +201,11 @@ build_launch_environment (GdmLaunchEnvir
                  g_hash_table_insert (hash, g_strdup ("GDM_SEAT_ID"), g_strdup 
(seat_id));
          }
  
@@ -75,11 +75,11 @@
          g_hash_table_insert (hash, g_strdup ("PATH"), g_strdup (g_getenv 
("PATH")));
  
          g_hash_table_insert (hash, g_strdup ("RUNNING_UNDER_GDM"), g_strdup 
("true"));
-diff --git a/daemon/gdm-session.c b/daemon/gdm-session.c
-index b839fea..83fb807 100644
---- a/daemon/gdm-session.c
-+++ b/daemon/gdm-session.c
-@@ -2548,6 +2548,14 @@ set_up_session_environment (GdmSession *self)
+Index: gdm-3.26.1/daemon/gdm-session.c
+===================================================================
+--- gdm-3.26.1.orig/daemon/gdm-session.c
++++ gdm-3.26.1/daemon/gdm-session.c
+@@ -2570,6 +2570,14 @@ set_up_session_environment (GdmSession *
                  }
          }
  


Reply via email to