Accepting request 265331 from home:badshah400:branches:GNOME:Factory
Update to 3.12.9 [copypac from home:Zaitor:boo906687 and then remove boo reference in .changes] OBS-URL: https://build.opensuse.org/request/show/265331 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/evolution-ews?expand=0&rev=82
This commit is contained in:
parent
830afc160e
commit
9a55b89f93
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:808783683bef9fd0c41b0c27f94669418c95ebf7bc62120e10f674f1f2f686b5
|
|
||||||
size 662132
|
|
3
evolution-ews-3.12.9.tar.xz
Normal file
3
evolution-ews-3.12.9.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f2b5325edb137a6384f05ac1e57e82044f55da380ada9843a42e6fb34855ba96
|
||||||
|
size 662752
|
38
evolution-ews-reuse-from-EmailSession.patch
Normal file
38
evolution-ews-reuse-from-EmailSession.patch
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
From 6a5a2d75a9484b482546d4ed51fa6488d7e2c95a Mon Sep 17 00:00:00 2001
|
||||||
|
From: Milan Crha <mcrha@redhat.com>
|
||||||
|
Date: Fri, 12 Dec 2014 11:14:05 +0100
|
||||||
|
Subject: Bug 695754 - Reuse existing ESourceRegistry from EMailSession, if
|
||||||
|
possible
|
||||||
|
|
||||||
|
Using a new ESourceRegistry and freeing is slightly afterwards could
|
||||||
|
left some unfinished operations in the sourec registry's main_context.
|
||||||
|
A change for this lands in evolution-data-server, but better to change
|
||||||
|
also evolution-ews, to not create the source registry when not necessary.
|
||||||
|
|
||||||
|
diff --git a/src/camel/camel-ews-store.c b/src/camel/camel-ews-store.c
|
||||||
|
index ad82405..5cd46dc 100644
|
||||||
|
--- a/src/camel/camel-ews-store.c
|
||||||
|
+++ b/src/camel/camel-ews-store.c
|
||||||
|
@@ -1603,12 +1603,19 @@ static void
|
||||||
|
ews_store_maybe_update_sent_and_drafts (CamelEwsStore *ews_store,
|
||||||
|
/* const */ GSList *ews_folders)
|
||||||
|
{
|
||||||
|
+ CamelSession *session;
|
||||||
|
ESourceRegistry *registry;
|
||||||
|
ESource *sibling, *source = NULL;
|
||||||
|
|
||||||
|
g_return_if_fail (CAMEL_IS_EWS_STORE (ews_store));
|
||||||
|
|
||||||
|
- registry = e_source_registry_new_sync (NULL, NULL);
|
||||||
|
+ session = camel_service_ref_session (CAMEL_SERVICE (ews_store));
|
||||||
|
+ if (session && E_IS_MAIL_SESSION (session))
|
||||||
|
+ registry = g_object_ref (e_mail_session_get_registry (E_MAIL_SESSION (session)));
|
||||||
|
+ else
|
||||||
|
+ registry = e_source_registry_new_sync (NULL, NULL);
|
||||||
|
+ g_clear_object (&session);
|
||||||
|
+
|
||||||
|
g_return_if_fail (registry != NULL);
|
||||||
|
|
||||||
|
sibling = e_source_registry_ref_source (registry, camel_service_get_uid (CAMEL_SERVICE (ews_store)));
|
||||||
|
--
|
||||||
|
cgit v0.10.1
|
@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Dec 14 06:23:48 UTC 2014 - badshah400@gmail.com
|
||||||
|
|
||||||
|
- Update to version 3.12.9:
|
||||||
|
+ Set max-width-chars to wrapped GtkLabel-s.
|
||||||
|
+ Bugs fixed: bgo#738945, bgo#738093, bgo#734747, bgo#740772.
|
||||||
|
- Add post-release fix from upstream:
|
||||||
|
+ evolution-ews-reuse-from-EmailSession.patch: Reuse existing
|
||||||
|
ESourceRegistry from EMailSession, if possible (bgo#695754).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 11 21:25:40 UTC 2014 - zaitor@opensuse.org
|
Tue Nov 11 21:25:40 UTC 2014 - zaitor@opensuse.org
|
||||||
|
|
||||||
|
@ -19,13 +19,15 @@
|
|||||||
Name: evolution-ews
|
Name: evolution-ews
|
||||||
# This should be updated upon major version changes; it should match BASE_VERSION as defined in configure.in.
|
# This should be updated upon major version changes; it should match BASE_VERSION as defined in configure.in.
|
||||||
%define evolution_base_version 3.12
|
%define evolution_base_version 3.12
|
||||||
Version: 3.12.8
|
Version: 3.12.9
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Exchange Connector for Evolution, compatible with Exchange 2007 and later
|
Summary: Exchange Connector for Evolution, compatible with Exchange 2007 and later
|
||||||
License: LGPL-2.1
|
License: LGPL-2.1
|
||||||
Group: Productivity/Networking/Email/Clients
|
Group: Productivity/Networking/Email/Clients
|
||||||
Url: http://projects.gnome.org/evolution/
|
Url: http://projects.gnome.org/evolution/
|
||||||
Source: http://download.gnome.org/sources/evolution-ews/3.12/%{name}-%{version}.tar.xz
|
Source: http://download.gnome.org/sources/evolution-ews/3.12/%{name}-%{version}.tar.xz
|
||||||
|
# PATCH-FIX-UPSTREAM evolution-ews-reuse-from-EmailSession.patch bgo#695754 badshah400@gmail.com -- Reuse existing ESourceRegistry from EMailSession, if possible; patch taken from upstream git
|
||||||
|
Patch0: evolution-ews-reuse-from-EmailSession.patch
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: intltool
|
BuildRequires: intltool
|
||||||
BuildRequires: translation-update-upstream
|
BuildRequires: translation-update-upstream
|
||||||
@ -85,6 +87,7 @@ later).
|
|||||||
%lang_package
|
%lang_package
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
%patch0 -p1
|
||||||
translation-update-upstream
|
translation-update-upstream
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
Loading…
Reference in New Issue
Block a user