Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package accountsservice for openSUSE:Factory 
checked in at 2025-07-17 17:17:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/accountsservice (Old)
 and      /work/SRC/openSUSE:Factory/.accountsservice.new.8875 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "accountsservice"

Thu Jul 17 17:17:45 2025 rev:92 rq:1293459 version:23.13.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/accountsservice/accountsservice.changes  
2024-08-14 14:14:39.120040102 +0200
+++ 
/work/SRC/openSUSE:Factory/.accountsservice.new.8875/accountsservice.changes    
    2025-07-17 17:18:22.430774961 +0200
@@ -1,0 +2,7 @@
+Mon Jul 14 08:00:36 UTC 2025 - Alynx Zhou <alynx.z...@suse.com>
+
+- Update accountsservice-sysconfig.patch: Check whether sysconfig
+  is used and fallback to display manager settings if sysconfig is
+  not used (bsc#1246127).
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ accountsservice.spec ++++++
--- /var/tmp/diff_new_pack.GSdFOl/_old  2025-07-17 17:18:23.106803075 +0200
+++ /var/tmp/diff_new_pack.GSdFOl/_new  2025-07-17 17:18:23.106803075 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package accountsservice
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed

++++++ accountsservice-sysconfig.patch ++++++
--- /var/tmp/diff_new_pack.GSdFOl/_old  2025-07-17 17:18:23.146804739 +0200
+++ /var/tmp/diff_new_pack.GSdFOl/_new  2025-07-17 17:18:23.150804905 +0200
@@ -61,38 +61,42 @@
  gboolean
  load_autologin (Daemon   *daemon,
                  gchar   **name,
-@@ -1797,6 +1835,8 @@ load_autologin (Daemon   *daemon,
+@@ -1797,6 +1835,9 @@ load_autologin (Daemon   *daemon,
  {
          DisplayManagerType dm_type;
- 
-+        return load_autologin_suse (daemon, name, enabled, error);
+
++        if (g_file_test (SYSCONFIG_FILE, G_FILE_TEST_EXISTS))
++                return load_autologin_suse (daemon, name, enabled, error);
 +
          dm_type = get_current_system_dm_type ();
          if (dm_type == DISPLAY_MANAGER_TYPE_LIGHTDM)
                  return load_autologin_lightdm (daemon, name, enabled, error);
-@@ -1819,6 +1859,8 @@ save_autologin_gdm (Daemon      *daemon,
+@@ -1819,6 +1859,9 @@ save_autologin_gdm (Daemon      *daemon,
          gboolean result;
          g_autoptr (GError) local_error = NULL;
- 
-+        return save_autologin_suse (daemon, name, enabled, error);
+
++        if (g_file_test (SYSCONFIG_FILE, G_FILE_TEST_EXISTS))
++                return save_autologin_suse (daemon, name, enabled, error);
 +
          keyfile = g_key_file_new ();
          if (!g_key_file_load_from_file (keyfile,
                                          PATH_GDM_CUSTOM,
-@@ -1851,6 +1893,8 @@ save_autologin_lightdm (Daemon      *dae
+@@ -1851,6 +1893,9 @@ save_autologin_lightdm (Daemon      *dae
          gboolean result;
          g_autoptr (GError) local_error = NULL;
- 
-+        return save_autologin_suse (daemon, name, enabled, error);
+
++        if (g_file_test (SYSCONFIG_FILE, G_FILE_TEST_EXISTS))
++                return save_autologin_suse (daemon, name, enabled, error);
 +
          keyfile = g_key_file_new ();
          if (!g_key_file_load_from_file (keyfile,
                                          PATH_LIGHTDM_CONF,
-@@ -1879,6 +1923,8 @@ save_autologin (Daemon      *daemon,
+@@ -1879,6 +1923,9 @@ save_autologin (Daemon      *daemon,
  {
          DisplayManagerType dm_type;
- 
-+        return save_autologin_suse (daemon, name, enabled, error);
+
++        if (g_file_test (SYSCONFIG_FILE, G_FILE_TEST_EXISTS))
++                return save_autologin_suse (daemon, name, enabled, error);
 +
          dm_type = get_current_system_dm_type ();
          if (dm_type == DISPLAY_MANAGER_TYPE_LIGHTDM)

Reply via email to