Update to 3.11.5

This commit is contained in:
Milan Crha 2014-02-03 09:20:41 +01:00
parent 0fc1903079
commit 46f37563a2
5 changed files with 7 additions and 90 deletions

1
.gitignore vendored
View File

@ -67,3 +67,4 @@ evolution-2.31.5.tar.bz2
/evolution-3.11.1.tar.xz
/evolution-3.11.2.tar.xz
/evolution-3.11.4.tar.xz
/evolution-3.11.5.tar.xz

View File

@ -1,37 +0,0 @@
From d64150ab966cfd9d661aa06999573fe42fe2671e Mon Sep 17 00:00:00 2001
From: Milan Crha <mcrha@redhat.com>
Date: Fri, 17 Jan 2014 15:24:42 +0000
Subject: Bug #702958 - Crash on attachment add or remove
---
diff --git a/e-util/e-attachment.c b/e-util/e-attachment.c
index ea4f39c..8230eab 100644
--- a/e-util/e-attachment.c
+++ b/e-util/e-attachment.c
@@ -334,6 +334,9 @@ attachment_update_icon_column_idle_cb (gpointer weak_ref)
if (file_info != NULL) {
icon = g_file_info_get_icon (file_info);
+ /* add the reference here, thus the create_system_thumbnail() can unref the *icon. */
+ if (icon)
+ g_object_ref (icon);
thumbnail_path = g_file_info_get_attribute_byte_string (
file_info, G_FILE_ATTRIBUTE_THUMBNAIL_PATH);
}
@@ -351,11 +354,11 @@ attachment_update_icon_column_idle_cb (gpointer weak_ref)
/* Nothing to do, just use the icon. */
/* Else use the standard icon for the content type. */
- } else if (icon != NULL)
- g_object_ref (icon);
+ } else if (icon != NULL) {
+ /* Nothing to do, just use the already reffed icon. */
/* Last ditch fallback. (GFileInfo not yet loaded?) */
- else
+ } else
icon = g_themed_icon_new (DEFAULT_ICON_NAME);
/* Pick an emblem, limit one. Choices listed by priority. */
--
cgit v0.9.2

View File

@ -1,42 +0,0 @@
From 5a89422182cc9e5e75af808beef19479bab6e9de Mon Sep 17 00:00:00 2001
From: Matthew Barnes <mbarnes@redhat.com>
Date: Fri, 17 Jan 2014 02:09:20 +0000
Subject: Prevent GSettings from freaking out over a missing junk filter.
Boy does GSettings like to abort applications! The default value for
the 'junk-default-plugin' key is 'Bogofilter' but if the key's mapping
function cannot find Evolution's Bogofilter integration module (it is
optional after all, so may not be installed), then indicating failure
will make GSettings abort Evolution. So always indicate success.
---
diff --git a/modules/settings/e-settings-mail-session.c b/modules/settings/e-settings-mail-session.c
index 4665731..188e325 100644
--- a/modules/settings/e-settings-mail-session.c
+++ b/modules/settings/e-settings-mail-session.c
@@ -38,7 +38,6 @@ settings_mail_session_name_to_junk_filter (GValue *value,
gpointer user_data)
{
const gchar *filter_name;
- gboolean success = FALSE;
filter_name = g_variant_get_string (variant, NULL);
@@ -48,10 +47,14 @@ settings_mail_session_name_to_junk_filter (GValue *value,
junk_filter = e_mail_session_get_junk_filter_by_name (
E_MAIL_SESSION (user_data), filter_name);
g_value_set_object (value, junk_filter);
- success = (junk_filter != NULL);
}
- return success;
+ /* XXX Always return success, even if we cannot find a matching
+ * EMailJunkFilter. The default value is 'Bogofilter', but
+ * if the Bogofilter module is not installed then GSettings
+ * will actually abort the program. Nice. */
+
+ return TRUE;
}
static GVariant *
--
cgit v0.9.2

View File

@ -32,8 +32,8 @@
### Abstract ###
Name: evolution
Version: 3.11.4
Release: 2%{?dist}
Version: 3.11.5
Release: 1%{?dist}
Group: Applications/Productivity
Summary: Mail and calendar client for GNOME
License: GPLv2+ and GFDL
@ -53,12 +53,6 @@ Patch01: evolution-1.4.4-ldap-x86_64-hack.patch
# RH bug #589555
Patch02: evolution-2.30.1-help-contents.patch
# Upstream 5a89422182, crashes if bogofilter is not present
Patch03: evolution-3.11.4-gsettings_crash.patch
# Upstream d64150ab96, crashes on attachment add/remove
Patch04: evolution-3.11.4-attachment_crash.patch
## Dependencies ###
Requires: gnome-icon-theme >= %{gnome_icon_theme_version}
@ -210,8 +204,6 @@ This package contains the plugin to import Microsoft Personal Storage Table
%setup -q -n evolution-%{version}
%patch01 -p1 -b .ldaphack
%patch02 -p1 -b .help-contents
%patch03 -p1 -b .gsettings_crash
%patch04 -p1 -b .attachment_crash
mkdir -p krb5-fakeprefix/include
mkdir -p krb5-fakeprefix/lib
@ -544,6 +536,9 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Mon Feb 03 2014 Milan Crha <mcrha@redhat.com> - 3.11.5-1
- Update to 3.11.5
* Fri Jan 17 2014 Adam Williamson <awilliam@redhat.com> - 3.11.4-2
- backport a couple of crasher fixes from upstream master

View File

@ -1 +1 @@
73e630eda6052130a0a6d6bc36bcb7f4 evolution-3.11.4.tar.xz
d42aef65bbc7418f7c73b4c1916d399d evolution-3.11.5.tar.xz