diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..55d18be --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/gnome-online-accounts-3.26.2.tar.xz diff --git a/.gnome-online-accounts.metadata b/.gnome-online-accounts.metadata new file mode 100644 index 0000000..f122992 --- /dev/null +++ b/.gnome-online-accounts.metadata @@ -0,0 +1 @@ +83e398bcd915573fed79844029058d4ea43ef902 SOURCES/gnome-online-accounts-3.26.2.tar.xz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/0001-Avoid-bumping-the-GLib-version.patch b/SOURCES/0001-Avoid-bumping-the-GLib-version.patch new file mode 100644 index 0000000..bf46817 --- /dev/null +++ b/SOURCES/0001-Avoid-bumping-the-GLib-version.patch @@ -0,0 +1,46 @@ +From 51768c1446808f17e3ae7ded1dcd75f6e5f3d561 Mon Sep 17 00:00:00 2001 +From: Debarshi Ray +Date: Wed, 18 Oct 2017 17:08:13 +0200 +Subject: [PATCH] Avoid bumping the GLib version + +Commit ba9cc7bf2af77b4 add a Todoist provider that is not used in RHEL. +Therefore, one can avoid requiring a GLib 2.52 by not using +g_uuid_string_random. + +Don't use this patch if Todoist is ever enabled. + +https://bugzilla.redhat.com/show_bug.cgi?id=1503726 +--- + configure.ac | 2 +- + src/goabackend/goatodoistprovider.c | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 520ad03b0a8d..10126db02cee 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -85,7 +85,7 @@ GTK_DOC_CHECK([1.3]) + # Libraries + # + +-PKG_CHECK_MODULES(GLIB, [glib-2.0 gio-2.0 gio-unix-2.0 >= 2.52]) ++PKG_CHECK_MODULES(GLIB, [glib-2.0 gio-2.0 gio-unix-2.0 >= 2.44]) + AC_SUBST(GLIB_CFLAGS) + AC_SUBST(GLIB_LIBS) + +diff --git a/src/goabackend/goatodoistprovider.c b/src/goabackend/goatodoistprovider.c +index f0d3e43602d8..bcfa7cd94882 100644 +--- a/src/goabackend/goatodoistprovider.c ++++ b/src/goabackend/goatodoistprovider.c +@@ -116,7 +116,7 @@ build_authorization_uri (GoaOAuth2Provider *oauth2_provider, + gchar *state; + gchar *uri; + +- state = g_uuid_string_random (); ++ state = g_strdup ("this-is-not-a-real-uuid"); + uri = g_strdup_printf ("%s" + "?response_type=token" + "&client_id=%s" +-- +2.14.3 + diff --git a/SOURCES/gnome-online-accounts-remove-the-option-to-preseed-the-providers.patch b/SOURCES/gnome-online-accounts-remove-the-option-to-preseed-the-providers.patch new file mode 100644 index 0000000..d0f3919 --- /dev/null +++ b/SOURCES/gnome-online-accounts-remove-the-option-to-preseed-the-providers.patch @@ -0,0 +1,367 @@ +From a9185de7d6566061eb4989049ce787db3f5d059a Mon Sep 17 00:00:00 2001 +From: Debarshi Ray +Date: Wed, 25 Oct 2017 14:12:43 +0200 +Subject: [PATCH] Remove the option to preseed the providers & deprecate + associated API + +It's been more than four years and nobody ended up using this feature. +However, the extra cookie management that's necessary to implement this +feature has now exposed code, which people actually use, to a +WebKitGTK+ bug that's taking quite some time to be fixed. Therefore, +this is a good an excuse as any to remove this code. + +This reverts commits 01447f6de49b640b7e298210aeb84390c804e9b3 and +1f714a8d536ea08fb9df0d3ce1250b4a67f35bba + +https://bugzilla.gnome.org/show_bug.cgi?id=781005 +--- + doc/goa-sections.txt | 1 - + src/goabackend/goaoauth2provider.c | 67 -------------------------------------- + src/goabackend/goaprovider.c | 52 ++++++----------------------- + src/goabackend/goaprovider.h | 2 ++ + src/goabackend/goawebview.c | 28 ---------------- + src/goabackend/goawebview.h | 2 -- + 6 files changed, 12 insertions(+), 140 deletions(-) + +diff --git a/doc/goa-sections.txt b/doc/goa-sections.txt +index f944ead207b4..306846eec370 100644 +--- a/doc/goa-sections.txt ++++ b/doc/goa-sections.txt +@@ -465,7 +465,6 @@ GOA_PROVIDER_GET_CLASS + GOA_IS_PROVIDER + GOA_IS_PROVIDER_CLASS + GOA_TYPE_PROVIDER +-GoaProviderPrivate + goa_provider_get_type + + +diff --git a/src/goabackend/goaoauth2provider.c b/src/goabackend/goaoauth2provider.c +index 35fbf9161a1a..909260515d3f 100644 +--- a/src/goabackend/goaoauth2provider.c ++++ b/src/goabackend/goaoauth2provider.c +@@ -571,66 +571,6 @@ goa_oauth2_provider_is_identity_node (GoaOAuth2Provider *self, WebKitDOMHTMLInpu + return GOA_OAUTH2_PROVIDER_GET_CLASS (self)->is_identity_node (self, element); + } + +-/* ---------------------------------------------------------------------------------------------------- */ +- +-static SoupCookie* +-create_cookie_from_variant (GVariant *variant) +-{ +- SoupCookie *cookie; +- gchar *name, *value, *domain, *path; +- gboolean secure, http_only; +- +- g_return_val_if_fail (g_variant_is_of_type (variant, G_VARIANT_TYPE_VARDICT), NULL); +- +- g_variant_lookup (variant, "name", "&s", &name); +- g_variant_lookup (variant, "value", "&s", &value); +- g_variant_lookup (variant, "domain", "&s", &domain); +- g_variant_lookup (variant, "path", "&s", &path); +- g_variant_lookup (variant, "secure", "b", &secure); +- g_variant_lookup (variant, "http_only", "b", &http_only); +- +- cookie = soup_cookie_new (name, value, domain, path, -1); +- soup_cookie_set_secure (cookie, secure); +- soup_cookie_set_http_only (cookie, http_only); +- +- return cookie; +-} +- +-static GSList* +-extract_cookies_from_preseed_data (GVariant *preseed) +-{ +- GVariant *cookies_v, *cookie_v; +- GSList *cookies = NULL; +- GVariantIter iter; +- +- if (preseed == NULL) +- return NULL; +- +- cookies_v = g_variant_lookup_value (preseed, "cookies", NULL); +- if (cookies_v == NULL) +- return NULL; +- +- if (!g_variant_is_of_type (cookies_v, G_VARIANT_TYPE ("av"))) +- { +- g_warning ("Wrong type for the 'cookies' GVariant, expected 'av' but got '%s'", +- (gchar *)g_variant_get_type (cookies_v)); +- goto out; +- } +- +- g_variant_iter_init (&iter, cookies_v); +- while ((cookie_v = g_variant_iter_next_value (&iter)) != NULL) +- { +- SoupCookie *cookie = create_cookie_from_variant (g_variant_get_variant (cookie_v)); +- if (cookie != NULL) +- cookies = g_slist_prepend (cookies, cookie); +- g_variant_unref(cookie_v); +- } +-out: +- g_variant_unref(cookies_v); +- return cookies; +-} +- +- + /* ---------------------------------------------------------------------------------------------------- */ + + static gchar * +@@ -969,10 +909,8 @@ get_tokens_and_identity (GoaOAuth2Provider *self, + GoaOAuth2ProviderPrivate *priv; + gboolean ret = FALSE; + gchar *url; +- GSList *cookies; + GtkWidget *embed; + GtkWidget *grid; +- GVariant *preseed_data; + GtkWidget *web_view; + const gchar *scope; + gchar *escaped_redirect_uri = NULL; +@@ -1026,11 +964,6 @@ get_tokens_and_identity (GoaOAuth2Provider *self, + gtk_widget_set_vexpand (web_view, TRUE); + embed = goa_web_view_get_view (GOA_WEB_VIEW (web_view)); + +- preseed_data = goa_provider_get_preseed_data (GOA_PROVIDER (self)); +- cookies = extract_cookies_from_preseed_data (preseed_data); +- goa_web_view_add_cookies (GOA_WEB_VIEW (web_view), cookies); +- soup_cookies_free (cookies); +- + if (goa_oauth2_provider_get_use_mobile_browser (self)) + goa_web_view_fake_mobile (GOA_WEB_VIEW (web_view)); + +diff --git a/src/goabackend/goaprovider.c b/src/goabackend/goaprovider.c +index c59122a75ff9..dfae77ffb3ec 100644 +--- a/src/goabackend/goaprovider.c ++++ b/src/goabackend/goaprovider.c +@@ -51,11 +51,6 @@ + * #GoaProvider is the base type for all providers. + */ + +-struct _GoaProviderPrivate +-{ +- GVariant *preseed_data; +-}; +- + enum { + PROP_0, + PROP_PRESEED_DATA, +@@ -102,7 +97,7 @@ static void goa_provider_show_account_real (GoaProvider *provider, + GtkGrid *dummy1, + GtkGrid *dummy2); + +-G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (GoaProvider, goa_provider, G_TYPE_OBJECT); ++G_DEFINE_ABSTRACT_TYPE (GoaProvider, goa_provider, G_TYPE_OBJECT); + + static struct { + GoaProviderFeatures feature; +@@ -191,14 +186,9 @@ goa_provider_get_property (GObject *object, + GValue *value, + GParamSpec *pspec) + { +- GoaProvider *self = GOA_PROVIDER (object); +- GoaProviderPrivate *priv; +- +- priv = goa_provider_get_instance_private (self); +- + switch (property_id) { + case PROP_PRESEED_DATA: +- g_value_set_variant (value, priv->preseed_data); ++ g_value_set_variant (value, NULL); + break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); +@@ -212,11 +202,8 @@ goa_provider_set_property (GObject *object, + const GValue *value, + GParamSpec *pspec) + { +- GoaProvider *self = GOA_PROVIDER (object); +- + switch (property_id) { + case PROP_PRESEED_DATA: +- goa_provider_set_preseed_data (self, g_value_get_variant (value)); + break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); +@@ -224,19 +211,6 @@ goa_provider_set_property (GObject *object, + } + } + +-static void +-goa_provider_dispose (GObject *object) +-{ +- GoaProvider *self = GOA_PROVIDER (object); +- GoaProviderPrivate *priv; +- +- priv = goa_provider_get_instance_private (self); +- +- g_clear_pointer (&priv->preseed_data, g_variant_unref); +- +- G_OBJECT_CLASS (goa_provider_parent_class)->dispose (object); +-} +- + static void + goa_provider_init (GoaProvider *self) + { +@@ -249,7 +223,6 @@ goa_provider_class_init (GoaProviderClass *klass) + + object_class->set_property = goa_provider_set_property; + object_class->get_property = goa_provider_get_property; +- object_class->dispose = goa_provider_dispose; + + klass->build_object = goa_provider_build_object_real; + klass->ensure_credentials_sync = goa_provider_ensure_credentials_sync_real; +@@ -289,6 +262,8 @@ goa_provider_class_init (GoaProviderClass *klass) + * + * + * Unknown or unsupported keys will be ignored by providers. ++ * ++ * Deprecated: This property does nothing. + */ + properties[PROP_PRESEED_DATA] = + g_param_spec_variant ("preseed-data", +@@ -298,7 +273,7 @@ goa_provider_class_init (GoaProviderClass *klass) + "browser session or the entrypoint url for self-hosted services).", + G_VARIANT_TYPE_VARDICT, + NULL, +- G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); ++ G_PARAM_DEPRECATED | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); + + g_object_class_install_properties (object_class, NUM_PROPERTIES, properties); + } +@@ -1418,19 +1393,13 @@ goa_provider_remove_account_finish_real (GoaProvider *self, + * + * If the @preseed_data #GVariant is floating, it is consumed to allow + * 'inline' use of the g_variant_new() family of functions. ++ * ++ * Deprecated: This function does nothing. + */ + void + goa_provider_set_preseed_data (GoaProvider *self, + GVariant *preseed_data) + { +- GoaProviderPrivate *priv; +- +- priv = goa_provider_get_instance_private (self); +- +- g_clear_pointer (&priv->preseed_data, g_variant_unref); +- if (preseed_data != NULL) +- priv->preseed_data = g_variant_ref_sink (preseed_data); +- g_object_notify (G_OBJECT (self), "preseed-data"); + } + + /** +@@ -1441,14 +1410,13 @@ goa_provider_set_preseed_data (GoaProvider *self, + * + * Returns: (transfer none): A #GVariant that is known to be valid until + * the property is overridden or the provider freed. ++ * ++ * Deprecated: This function does nothing. + */ + GVariant * + goa_provider_get_preseed_data (GoaProvider *self) + { +- GoaProviderPrivate *priv; +- +- priv = goa_provider_get_instance_private (self); +- return priv->preseed_data; ++ return NULL; + } + + /* ---------------------------------------------------------------------------------------------------- */ +diff --git a/src/goabackend/goaprovider.h b/src/goabackend/goaprovider.h +index 76ff0223fb32..c4bcf91c9af7 100644 +--- a/src/goabackend/goaprovider.h ++++ b/src/goabackend/goaprovider.h +@@ -47,9 +47,11 @@ GoaProviderGroup goa_provider_get_provider_group (GoaProvider + + GoaProviderFeatures goa_provider_get_provider_features (GoaProvider *self); + ++G_DEPRECATED + void goa_provider_set_preseed_data (GoaProvider *self, + GVariant *preseed_data); + ++G_DEPRECATED + GVariant *goa_provider_get_preseed_data (GoaProvider *self); + + GoaObject *goa_provider_add_account (GoaProvider *self, +diff --git a/src/goabackend/goawebview.c b/src/goabackend/goawebview.c +index 7a28e51545fa..b7af122cfd6b 100644 +--- a/src/goabackend/goawebview.c ++++ b/src/goabackend/goawebview.c +@@ -38,7 +38,6 @@ struct _GoaWebView + GtkWidget *floating_bar; + GtkWidget *progress_bar; + GtkWidget *web_view; +- SoupCookieJar *cookie_jar; + WebKitUserContentManager *user_content_manager; + WebKitWebContext *context; + gchar *existing_identity; +@@ -271,10 +270,7 @@ static void + goa_web_view_constructed (GObject *object) + { + GoaWebView *self = GOA_WEB_VIEW (object); +- WebKitCookieManager *cookie_manager; + const gchar *const *language_names; +- gchar *jar_dir; +- gchar *jar_file; + + G_OBJECT_CLASS (goa_web_view_parent_class)->constructed (object); + +@@ -286,16 +282,6 @@ goa_web_view_constructed (GObject *object) + G_CALLBACK (web_view_initialize_web_extensions_cb), + self); + +- cookie_manager = webkit_web_context_get_cookie_manager (self->context); +- jar_file = g_build_filename (g_get_user_cache_dir (), "goa-1.0", "cookies.sqlite", NULL); +- jar_dir = g_path_get_dirname (jar_file); +- g_mkdir_with_parents (jar_dir, 0700); +- self->cookie_jar = soup_cookie_jar_db_new (jar_file, FALSE); +- webkit_cookie_manager_set_persistent_storage (cookie_manager, jar_file, WEBKIT_COOKIE_PERSISTENT_STORAGE_SQLITE); +- webkit_cookie_manager_delete_all_cookies (cookie_manager); +- g_free (jar_dir); +- g_free (jar_file); +- + self->user_content_manager = webkit_user_content_manager_new (); + g_signal_connect_swapped (self->user_content_manager, + "script-message-received::deny-click", +@@ -359,7 +345,6 @@ goa_web_view_dispose (GObject *object) + { + GoaWebView *self = GOA_WEB_VIEW (object); + +- g_clear_object (&self->cookie_jar); + g_clear_object (&self->user_content_manager); + g_clear_object (&self->context); + +@@ -514,16 +499,3 @@ goa_web_view_fake_mobile (GoaWebView *self) + "Mozilla/5.0 (GNOME; not Android) " + "AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile"); + } +- +-void +-goa_web_view_add_cookies (GoaWebView *self, +- GSList *cookies) +-{ +- GSList *l; +- +- for (l = cookies; l != NULL; l = l->next) +- { +- SoupCookie *cookie = l->data; +- soup_cookie_jar_add_cookie (self->cookie_jar, soup_cookie_copy (cookie)); +- } +-} +diff --git a/src/goabackend/goawebview.h b/src/goabackend/goawebview.h +index a8fad5f1fe93..4b415cdc6bbc 100644 +--- a/src/goabackend/goawebview.h ++++ b/src/goabackend/goawebview.h +@@ -37,8 +37,6 @@ GtkWidget *goa_web_view_new (GoaProvider *provide + const gchar *existing_identity); + GtkWidget *goa_web_view_get_view (GoaWebView *self); + void goa_web_view_fake_mobile (GoaWebView *self); +-void goa_web_view_add_cookies (GoaWebView *self, +- GSList *cookies); + + G_END_DECLS + +-- +2.14.3 + diff --git a/SPECS/gnome-online-accounts.spec b/SPECS/gnome-online-accounts.spec new file mode 100644 index 0000000..4432754 --- /dev/null +++ b/SPECS/gnome-online-accounts.spec @@ -0,0 +1,407 @@ +%global glib2_version 2.40 +%global gtk3_version 3.19.12 +%global libsoup_version 2.42 +%global webkitgtk4_version 2.7.2 + +Name: gnome-online-accounts +Version: 3.26.2 +Release: 1%{?dist} +Summary: Single sign-on framework for GNOME + +License: LGPLv2+ +URL: https://wiki.gnome.org/Projects/GnomeOnlineAccounts +Source0: https://download.gnome.org/sources/gnome-online-accounts/3.26/%{name}-%{version}.tar.xz + +# https://bugzilla.redhat.com/show_bug.cgi?id=1503726 +Patch0: 0001-Avoid-bumping-the-GLib-version.patch + +# https://bugzilla.gnome.org/show_bug.cgi?id=781005 +Patch1: gnome-online-accounts-remove-the-option-to-preseed-the-providers.patch + +BuildRequires: autoconf +BuildRequires: automake +BuildRequires: libtool +BuildRequires: pkgconfig(gcr-3) +BuildRequires: pkgconfig(gio-2.0) >= %{glib2_version} +BuildRequires: pkgconfig(glib-2.0) >= %{glib2_version} +BuildRequires: pkgconfig(gobject-2.0) >= %{glib2_version} +BuildRequires: pkgconfig(gtk+-3.0) >= %{gtk3_version} +BuildRequires: pkgconfig(gobject-introspection-1.0) +BuildRequires: gtk-doc +BuildRequires: intltool +BuildRequires: krb5-devel +BuildRequires: pkgconfig(webkit2gtk-4.0) >= %{webkitgtk4_version} +BuildRequires: pkgconfig(json-glib-1.0) +BuildRequires: pkgconfig(libsecret-1) >= 0.7 +BuildRequires: pkgconfig(libsoup-2.4) >= %{libsoup_version} +BuildRequires: pkgconfig(rest-0.7) +%if 0%{?rhel} +BuildRequires: pkgconfig(telepathy-glib) +%endif +BuildRequires: pkgconfig(libxml-2.0) +BuildRequires: vala + +Requires: glib2%{?_isa} >= %{glib2_version} +Requires: gtk3%{?_isa} >= %{gtk3_version} +Requires: libsoup%{?_isa} >= %{libsoup_version} +Requires: webkitgtk4%{?_isa} >= %{webkitgtk4_version} + +%description +GNOME Online Accounts provides interfaces so that applications and libraries +in GNOME can access the user's online accounts. It has providers for Google, +ownCloud, Facebook, Flickr, Foursquare, Microsoft Account, Pocket, Microsoft +Exchange, IMAP/SMTP and Kerberos. + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%prep +%setup -q +%patch0 -p1 +%patch1 -p1 + +%build +autoreconf --force --install --verbose +%configure \ + --disable-lastfm \ + --disable-media-server \ + --disable-silent-rules \ + --disable-static \ + --disable-todoist \ +%if 0%{?rhel} + --disable-facebook \ + --disable-foursquare \ + --enable-telepathy \ +%else + --disable-telepathy \ + --enable-facebook \ + --enable-foursquare \ +%endif + --enable-exchange \ + --enable-flickr \ + --enable-google \ + --enable-gtk-doc \ + --enable-imap-smtp \ + --enable-kerberos \ + --enable-owncloud \ + --enable-pocket \ + --enable-windows-live +%make_build + +%install +%make_install +find $RPM_BUILD_ROOT -name '*.la' -delete + +%find_lang %{name} + +%if 0%{?rhel} +%find_lang %{name}-tpaw +%endif + +%post +/sbin/ldconfig +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : + +%postun +/sbin/ldconfig +if [ $1 -eq 0 ] ; then + /usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || : + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi + +%posttrans +/usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || : +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + +%if 0%{?rhel} +%files -f %{name}.lang -f %{name}-tpaw.lang +%else +%files -f %{name}.lang +%endif + +%license COPYING +%doc COPYING +%dir %{_libdir}/girepository-1.0 +%{_libdir}/girepository-1.0/Goa-1.0.typelib +%{_libdir}/libgoa-1.0.so.0 +%{_libdir}/libgoa-1.0.so.0.0.0 +%{_libdir}/libgoa-backend-1.0.so.1 +%{_libdir}/libgoa-backend-1.0.so.1.0.0 +%dir %{_libdir}/goa-1.0 +%dir %{_libdir}/goa-1.0/web-extensions +%{_libdir}/goa-1.0/web-extensions/libgoawebextension.so +%{_prefix}/libexec/goa-daemon +%{_prefix}/libexec/goa-identity-service +%{_datadir}/dbus-1/services/org.gnome.OnlineAccounts.service +%{_datadir}/dbus-1/services/org.gnome.Identity.service +%{_datadir}/icons/hicolor/*/apps/goa-*.png +%{_datadir}/man/man8/goa-daemon.8.gz +%{_datadir}/glib-2.0/schemas/org.gnome.online-accounts.gschema.xml + +%if 0%{?rhel} +%{_datadir}/icons/hicolor/*/apps/im-*.png +%{_datadir}/icons/hicolor/*/apps/im-*.svg + +%dir %{_datadir}/%{name} +%{_datadir}/%{name}/irc-networks.xml +%endif + +%files devel +%{_includedir}/goa-1.0/ +%{_libdir}/libgoa-1.0.so +%{_libdir}/libgoa-backend-1.0.so +%dir %{_datadir}/gir-1.0 +%{_datadir}/gir-1.0/Goa-1.0.gir +%{_libdir}/pkgconfig/goa-1.0.pc +%{_libdir}/pkgconfig/goa-backend-1.0.pc +%{_datadir}/gtk-doc/html/goa/ +%{_libdir}/goa-1.0/include +%{_datadir}/vala/ + +%changelog +* Tue Dec 19 2017 Debarshi Ray - 3.26.2-1 +- Update to 3.26.2 +Resolves: #1525963 + +* Thu Oct 26 2017 Debarshi Ray - 3.26.1-2 +- Backport fix for adding multiple accounts of the same type (GNOME #781005) +Resolves: #1503726 + +* Wed Oct 18 2017 Debarshi Ray - 3.26.1-1 +- Update to 3.26.1 +Resolves: #1503726 + +* Fri Mar 10 2017 Debarshi Ray - 3.22.5-1 +- Update to 3.22.5 +Resolves: #1386953, #1430813 + +* Wed Mar 08 2017 Debarshi Ray - 3.22.4-2 +- Don't change the list of enabled providers +Resolves: #1386953 + +* Thu Feb 16 2017 Kalev Lember - 3.22.4-1 +- Update to 3.22.4 +Resolves: #1386953 + +* Tue Aug 23 2016 Debarshi Ray - 3.14.5-5 +- Ensure that temporary accounts are really removed from the keyring and + avoid a WARNING +Resolves: #1261940 + +* Wed Aug 10 2016 Debarshi Ray - 3.14.5-4 +- Fail early on Kerberos ticket request when ticketing is disabled +Resolves: #1364705 + +* Mon Jun 13 2016 Debarshi Ray - 3.14.5-3 +- Don't remove Telepathy accounts or expire Kerberos credentials when stopping + goa-daemon +Resolves: #1267534 + +* Wed May 18 2016 Debarshi Ray - 3.14.5-2 +- Don't let temporary accounts accumulate in accounts.conf and the keyring +Resolves: #1261940 + +* Mon Mar 14 2016 Debarshi Ray - 3.14.5-1 +- Update to 3.14.5 +- Rebase downstream patches +Resolves: #1310832 + +* Tue Sep 22 2015 Ray Strode 3.14.4-3 +- Fix kerberos renewal for KDCs that support it +Resolves: #1189888 + +* Mon Jun 08 2015 Debarshi Ray - 3.14.4-2 +- Use newer WebKit +- Refresh the credentials during startup and network changes +Resolves: #1174600, #1189888 + +* Tue May 05 2015 Debarshi Ray - 3.14.4-1 +- Update to 3.14.4 +- Disable Facebook +Resolves: #1174600 + +* Mon Mar 23 2015 Richard Hughes - 3.14.3-1 +- Update to 3.14.3 +Resolves: #1174600 + +* Fri May 23 2014 Ray Strode 3.8.5-9.1 +- Bump for dist tag confusion +Related: #1096399 + +* Fri May 09 2014 Ray Strode 3.8.5-8.1 +- Fix various resource leaks in the kerberos code +Resolves: #1096399 + +* Mon Mar 31 2014 Debarshi Ray - 3.8.5-8 +- Popup is too small to display Facebook authorization +Resolves: #1081520 + +* Fri Feb 28 2014 Matthias Clasen - 3.8.5-7 +- Turn off silent builds and make them verbose +Resolves: #1070809 + +* Fri Jan 24 2014 Daniel Mach - 3.8.5-6 +- Mass rebuild 2014-01-24 + +* Tue Jan 07 2014 Debarshi Ray - 3.8.5-5 +- Don't offer a PasswordBased interface for Google +Resolves: #1049337 + +* Fri Dec 27 2013 Daniel Mach - 3.8.5-4 +- Mass rebuild 2013-12-27 + +* Wed Dec 11 2013 Matthias Clasen 3.8.5-3 +- Update translations +Resolves: #1030343 + +* Wed Nov 06 2013 Ray Strode 3.8.5-2 +- Fix kerberos crash when user manually erases stored credentials with seahorse +Resolves: #1027413 + +* Wed Nov 06 2013 Debarshi Ray - 3.8.5-1 +- Update to 3.8.5 +Resolves: #1023117, #1027258 + +* Fri Nov 01 2013 Debarshi Ray - 3.8.4.1-2 +- Support libkrb5's new kernel keyring based credentials cache +Resolves: #991184 + +* Tue Oct 08 2013 Debarshi Ray - 3.8.4.1-1 +- Update to 3.8.4.1 + +* Fri Aug 30 2013 Debarshi Ray - 3.8.3-1 +- Update to 3.8.3 + +* Tue Jul 2 2013 Matthias Clasen - 3.8.2-2 +- Rebuild with newer gtk-doc to fix multilib issue + +* Mon May 13 2013 Matthias Clasen - 3.8.2-1 +- Update to 3.8.2 + +* Mon Apr 15 2013 Richard Hughes - 3.8.1-1 +- Update to 3.8.1 + +* Tue Mar 26 2013 Debarshi Ray - 3.8.0-1 +- Update to 3.8.0 + +* Wed Mar 20 2013 Richard Hughes - 3.7.92-1 +- Update to 3.7.92 + +* Tue Mar 05 2013 Debarshi Ray - 3.7.91-1 +- Update to 3.7.91 + +* Tue Feb 26 2013 Debarshi Ray - 3.7.90-2 +- Enable IMAP / SMTP + +* Fri Feb 22 2013 Kalev Lember - 3.7.90-1 +- Update to 3.7.90 + +* Wed Feb 06 2013 Debarshi Ray - 3.7.5-1 +- Update to 3.7.5 + +* Wed Feb 06 2013 Kalev Lember - 3.7.4-2 +- Rebuilt for libgcr soname bump + +* Mon Jan 14 2013 Debarshi Ray - 3.7.4-1 +- Update to 3.7.4 + +* Thu Jan 03 2013 Debarshi Ray - 3.7.3-1 +- Update to 3.7.3 + +* Sun Nov 18 2012 Debarshi Ray - 3.7.2-1 +- Update to 3.7.2 + +* Tue Oct 23 2012 Debarshi Ray - 3.7.1-1 +- Update to 3.7.1 + +* Mon Oct 15 2012 Debarshi Ray - 3.6.1-1 +- Update to 3.6.1 + +* Tue Sep 25 2012 Matthias Clasen - 3.6.0-1 +- Update to 3.6.0 + +* Mon Sep 17 2012 Debarshi Ray - 3.5.92-1 +- Update to 3.5.92 + +* Tue Sep 04 2012 Debarshi Ray - 3.5.91-1 +- Update to 3.5.91 + +* Tue Aug 21 2012 Debarshi Ray - 3.5.90-1 +- Update to 3.5.90 + +* Tue Aug 07 2012 Richard Hughes - 3.5.5-1 +- Update to 3.5.5 + +* Fri Jul 27 2012 Fedora Release Engineering - 3.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Mon Jul 16 2012 Debarshi Ray - 3.5.4-1 +- Update to 3.5.4 + +* Mon Jun 25 2012 Debarshi Ray - 3.5.3-1 +- Update to 3.5.3 + +* Tue Jun 05 2012 Debarshi Ray - 3.5.2-1 +- Update to 3.5.2 + +* Wed May 02 2012 Debarshi Ray - 3.5.1-1 +- Update to 3.5.1 + +* Tue Apr 17 2012 Richard Hughes - 3.4.1-1 +- Update to 3.4.1 + +* Mon Mar 26 2012 Debarshi Ray - 3.4.0-1 +- Update to 3.4.0 + +* Wed Mar 21 2012 Debarshi Ray - 3.3.92.1-1 +- Update to 3.3.92.1 + +* Tue Mar 20 2012 Debarshi Ray - 3.3.92-1 +- Update to 3.3.92 + +* Fri Jan 13 2012 Fedora Release Engineering - 3.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Mon Dec 19 2011 Brian Pepple - 3.3.0-2 +- Enable Windows Live provider. + +* Mon Dec 19 2011 Brian Pepple - 3.3.0-1 +- Update to 3.3.0. +- Update source url. + +* Wed Oct 26 2011 Fedora Release Engineering - 3.2.1-2 +- Rebuilt for glibc bug#747377 + +* Tue Oct 18 2011 Matthias Clasen - 3.2.1-1 +- Update to 3.2.1 + +* Wed Sep 28 2011 Ray - 3.2.0.1-1 +- Update to 3.2.0.1 + +* Mon Sep 26 2011 Ray - 3.2.0-1 +- Update to 3.2.0 + +* Tue Sep 20 2011 Matthias Clasen - 3.1.91-1 +- Update to 3.1.91 + +* Tue Aug 30 2011 Matthias Clasen - 3.1.90-1 +- Update to 3.1.90 + +* Fri Jul 01 2011 Bastien Nocera 3.1.1-1 +- Update to 3.1.1 + +* Tue Jun 14 2011 Bastien Nocera 3.1.0-3 +- Add more necessary patches + +* Tue Jun 14 2011 Bastien Nocera 3.1.0-2 +- Update with review comments from Peter Robinson + +* Mon Jun 13 2011 Bastien Nocera 3.1.0-1 +- First version +