Hello community,

here is the log from the commit of package accountsservice for openSUSE:Factory 
checked in at 2013-11-24 11:24:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/accountsservice (Old)
 and      /work/SRC/openSUSE:Factory/.accountsservice.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "accountsservice"

Changes:
--------
--- /work/SRC/openSUSE:Factory/accountsservice/accountsservice.changes  
2013-10-09 14:42:28.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.accountsservice.new/accountsservice.changes     
2013-11-24 11:24:35.000000000 +0100
@@ -1,0 +2,16 @@
+Wed Oct 16 06:42:07 UTC 2013 - [email protected]
+
+- Update to version 0.6.35:
+  + Handle non-existent users better.
+  + Misc bug fixes.
+  + Misc clean ups.
+  + Emit "changed" signal when account type changes for user.
+  + Stop shipping vapi files.
+  + Avoid connecting to ConsoleKit on logind systems.
+  + Add extension interface.
+  + Add --enable-coverage option for gcov support.
+- Rebase accountsservice-sysconfig.patch and
+  accountsservice-filter-suse-accounts.patch.
+- Drop accountsservice-remotePW-verification.patch: fixed upstream.
+
+-------------------------------------------------------------------

Old:
----
  accountsservice-0.6.34.tar.xz
  accountsservice-remotePW-verification.patch

New:
----
  accountsservice-0.6.35.tar.xz

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

Other differences:
------------------
++++++ accountsservice.spec ++++++
--- /var/tmp/diff_new_pack.v5yFBC/_old  2013-11-24 11:24:36.000000000 +0100
+++ /var/tmp/diff_new_pack.v5yFBC/_new  2013-11-24 11:24:36.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           accountsservice
-Version:        0.6.34
+Version:        0.6.35
 Release:        0
 Summary:        D-Bus Service to Manipulate User Account Information
 License:        GPL-3.0+
@@ -29,8 +29,6 @@
 Patch0:         accountsservice-sysconfig.patch
 # PATCH-FIX-OPENSUSE accountsservice-filter-suse-accounts.patch 
[email protected] -- Filter out some system users that are specific to openSUSE
 Patch1:         accountsservice-filter-suse-accounts.patch
-# PATCH-FIX-UPSTREAM accountsservice-remotePW-verification.patch bnc#844933 
bgo#708997 fdo#70005 [email protected] -- treat NULL shadow entry as 
"password handled remotely"
-Patch2:         accountsservice-remotePW-verification.patch
 # needed for patch0
 BuildRequires:  gnome-common
 BuildRequires:  gobject-introspection-devel
@@ -91,7 +89,6 @@
 %setup -q
 %patch0 -p1
 %patch1 -p1
-%patch2 -p1
 
 %build
 # needed for patch0
@@ -154,9 +151,6 @@
 %{_libdir}/pkgconfig/accountsservice.pc
 %{_includedir}/accountsservice-1.0/
 %{_datadir}/gir-1.0/AccountsService-1.0.gir
-%dir %{_datadir}/vala
-%dir %{_datadir}/vala/vapi
-%{_datadir}/vala/vapi/accountsservice.*
 
 %files lang -f accounts-service.lang
 

++++++ accountsservice-0.6.34.tar.xz -> accountsservice-0.6.35.tar.xz ++++++
++++ 4566 lines of diff (skipped)

++++++ accountsservice-filter-suse-accounts.patch ++++++
--- /var/tmp/diff_new_pack.v5yFBC/_old  2013-11-24 11:24:37.000000000 +0100
+++ /var/tmp/diff_new_pack.v5yFBC/_new  2013-11-24 11:24:37.000000000 +0100
@@ -1,17 +1,19 @@
-Index: accountsservice-0.6.34/src/daemon.c
+Index: accountsservice-0.6.35/src/user-classify.c
 ===================================================================
---- accountsservice-0.6.34.orig/src/daemon.c
-+++ accountsservice-0.6.34/src/daemon.c
-@@ -83,6 +83,12 @@ static const char *default_excludes[] =
+--- accountsservice-0.6.35.orig/src/user-classify.c
++++ accountsservice-0.6.35/src/user-classify.c
+@@ -54,7 +54,13 @@ static const char *default_excludes[] =
+         "man",
          "at",
          "gdm",
-         "gnome-initial-setup",
+-        "gnome-initial-setup"
++        "gnome-initial-setup",
 +        "beagleindex",
 +        "fax",
 +        "suse-ncc",
 +        "mailman",
 +        "ldap",
-+        "cyrus",
-         NULL
++        "cyrus"
  };
  
+ #define PATH_NOLOGIN "/sbin/nologin"

++++++ accountsservice-sysconfig.patch ++++++
--- /var/tmp/diff_new_pack.v5yFBC/_old  2013-11-24 11:24:37.000000000 +0100
+++ /var/tmp/diff_new_pack.v5yFBC/_new  2013-11-24 11:24:37.000000000 +0100
@@ -4,10 +4,10 @@
 
     Use autologin configuration from sysconfig (SUSE-ism)
 
-Index: accountsservice-0.6.31/src/Makefile.am
+Index: accountsservice-0.6.35/src/Makefile.am
 ===================================================================
---- accountsservice-0.6.31.orig/src/Makefile.am
-+++ accountsservice-0.6.31/src/Makefile.am
+--- accountsservice-0.6.35.orig/src/Makefile.am
++++ accountsservice-0.6.35/src/Makefile.am
 @@ -31,6 +31,8 @@ libexec_PROGRAMS = accounts-daemon
  
  accounts_daemon_SOURCES =     \
@@ -17,19 +17,19 @@
        types.h                 \
        daemon.h                \
        daemon.c                \
-Index: accountsservice-0.6.31/src/daemon.c
+Index: accountsservice-0.6.35/src/daemon.c
 ===================================================================
---- accountsservice-0.6.31.orig/src/daemon.c
-+++ accountsservice-0.6.31/src/daemon.c
-@@ -44,6 +44,7 @@
- 
+--- accountsservice-0.6.35.orig/src/daemon.c
++++ accountsservice-0.6.35/src/daemon.c
+@@ -46,6 +46,7 @@
+ #include "user-classify.h"
  #include "daemon.h"
  #include "util.h"
 +#include "gdm-sysconfig.h"
  
  #define PATH_PASSWD "/etc/passwd"
  #define PATH_SHADOW "/etc/shadow"
-@@ -636,7 +637,7 @@ reload_autologin_timeout (Daemon *daemon
+@@ -547,7 +548,7 @@ reload_autologin_timeout (Daemon *daemon
          daemon->priv->autologin_id = 0;
  
          if (!load_autologin (daemon, &name, &enabled, &error)) {
@@ -38,7 +38,7 @@
                  g_error_free (error);
                  g_free (name);
  
-@@ -1515,6 +1516,43 @@ daemon_local_check_auth (Daemon
+@@ -1440,6 +1441,43 @@ daemon_local_check_auth (Daemon
          g_object_unref (subject);
  }
  
@@ -82,7 +82,7 @@
  gboolean
  load_autologin (Daemon      *daemon,
                  gchar      **name,
-@@ -1525,6 +1563,8 @@ load_autologin (Daemon      *daemon,
+@@ -1450,6 +1488,8 @@ load_autologin (Daemon      *daemon,
          GError *local_error;
          gchar *string;
  
@@ -91,7 +91,7 @@
          keyfile = g_key_file_new ();
          if (!g_key_file_load_from_file (keyfile,
                                          PATH_GDM_CUSTOM,
-@@ -1572,6 +1612,8 @@ save_autologin (Daemon      *daemon,
+@@ -1497,6 +1537,8 @@ save_autologin (Daemon      *daemon,
          gchar *data;
          gboolean result;
  
@@ -100,10 +100,10 @@
          keyfile = g_key_file_new ();
          if (!g_key_file_load_from_file (keyfile,
                                          PATH_GDM_CUSTOM,
-Index: accountsservice-0.6.31/src/gdm-sysconfig.c
+Index: accountsservice-0.6.35/src/gdm-sysconfig.c
 ===================================================================
 --- /dev/null
-+++ accountsservice-0.6.31/src/gdm-sysconfig.c
++++ accountsservice-0.6.35/src/gdm-sysconfig.c
 @@ -0,0 +1,484 @@
 +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
 + *
@@ -589,10 +589,10 @@
 +        g_strfreev (lines);
 +        return result;
 +}
-Index: accountsservice-0.6.31/src/gdm-sysconfig.h
+Index: accountsservice-0.6.35/src/gdm-sysconfig.h
 ===================================================================
 --- /dev/null
-+++ accountsservice-0.6.31/src/gdm-sysconfig.h
++++ accountsservice-0.6.35/src/gdm-sysconfig.h
 @@ -0,0 +1,43 @@
 +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
 + *

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to