From 105582a2a9e2a242167eecbdc9f5ef9b6cc7d7b3 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Mon, 14 Jul 2014 09:15:43 +0200 Subject: [PATCH 01/11] Update to 3.12.4 --- .gitignore | 1 + ...on-3.12.3-folder-tree-columns-expand.patch | 25 --- ...on-3.12.3-webview-named-theme-colors.patch | 153 ------------------ evolution.spec | 14 +- sources | 2 +- 5 files changed, 9 insertions(+), 186 deletions(-) delete mode 100644 evolution-3.12.3-folder-tree-columns-expand.patch delete mode 100644 evolution-3.12.3-webview-named-theme-colors.patch diff --git a/.gitignore b/.gitignore index 82b0c5b..82edaf5 100644 --- a/.gitignore +++ b/.gitignore @@ -75,3 +75,4 @@ evolution-2.31.5.tar.bz2 /evolution-3.12.1.tar.xz /evolution-3.12.2.tar.xz /evolution-3.12.3.tar.xz +/evolution-3.12.4.tar.xz diff --git a/evolution-3.12.3-folder-tree-columns-expand.patch b/evolution-3.12.3-folder-tree-columns-expand.patch deleted file mode 100644 index 53aa3dc..0000000 --- a/evolution-3.12.3-folder-tree-columns-expand.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 33dd6d93ca6e4fa3f1d3b846650504d419d88f9b Mon Sep 17 00:00:00 2001 -From: Sebastian Keller -Date: Tue, 17 Jun 2014 10:07:48 +0200 -Subject: Bug 731549 - EMFolderTree: Text column doesn't expand with recent - gtk+ - -gtk commit 73ff6a8e0ff307b8d14986c64918022364ff10e7 removed the code -that made the column expand previously, resulting in only ellipses being -shown. - -diff --git a/mail/em-folder-tree.c b/mail/em-folder-tree.c -index 5b5a3b9..a8967d6 100644 ---- a/mail/em-folder-tree.c -+++ b/mail/em-folder-tree.c -@@ -1259,6 +1259,7 @@ folder_tree_constructed (GObject *object) - priv->selection_changed_handler_id = handler_id; - - column = gtk_tree_view_column_new (); -+ gtk_tree_view_column_set_expand (column, TRUE); - gtk_tree_view_column_set_sizing ( - column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); - gtk_tree_view_append_column (tree_view, column); --- -cgit v0.10.1 - diff --git a/evolution-3.12.3-webview-named-theme-colors.patch b/evolution-3.12.3-webview-named-theme-colors.patch deleted file mode 100644 index 27dabdc..0000000 --- a/evolution-3.12.3-webview-named-theme-colors.patch +++ /dev/null @@ -1,153 +0,0 @@ -From 5f197603700d0e0cbfc2dab7c4750fd04c41de25 Mon Sep 17 00:00:00 2001 -From: Sebastian Keller -Date: Mon, 23 Jun 2014 11:39:46 +0200 -Subject: Bug 731872 - EWebView: Use named colors from themes - - -diff --git a/e-util/e-web-view.c b/e-util/e-web-view.c -index 8703ee1..7615db4 100644 ---- a/e-util/e-web-view.c -+++ b/e-util/e-web-view.c -@@ -574,20 +574,20 @@ style_updated_cb (EWebView *web_view) - gchar *style; - GtkStateFlags state_flags; - GtkStyleContext *style_context; -- GtkWidgetPath *widget_path; -+ gboolean backdrop; - - state_flags = gtk_widget_get_state_flags (GTK_WIDGET (web_view)); -- style_context = gtk_style_context_new (); -- widget_path = gtk_widget_path_new (); -- gtk_widget_path_append_type (widget_path, GTK_TYPE_WINDOW); -- gtk_style_context_set_path (style_context, widget_path); -- gtk_style_context_add_class (style_context, GTK_STYLE_CLASS_ENTRY); -- -- gtk_style_context_get_background_color ( -- style_context, -- state_flags | GTK_STATE_FLAG_FOCUSED, -- &color); -- color_value = g_strdup_printf ("#%06x", e_rgba_to_value (&color)); -+ style_context = gtk_widget_get_style_context (GTK_WIDGET (web_view)); -+ backdrop = (state_flags & GTK_STATE_FLAG_BACKDROP) != 0; -+ -+ if (gtk_style_context_lookup_color ( -+ style_context, -+ backdrop ? "theme_unfocused_base_color" : "theme_base_color", -+ &color)) -+ color_value = g_strdup_printf ("#%06x", e_rgba_to_value (&color)); -+ else -+ color_value = g_strdup("#ffffff"); -+ - style = g_strconcat ("background-color: ", color_value, ";", NULL); - - e_web_view_add_css_rule_into_style_sheet ( -@@ -599,11 +599,14 @@ style_updated_cb (EWebView *web_view) - g_free (color_value); - g_free (style); - -- gtk_style_context_get_color ( -- style_context, -- state_flags | GTK_STATE_FLAG_FOCUSED, -- &color); -- color_value = g_strdup_printf ("#%06x", e_rgba_to_value (&color)); -+ if (gtk_style_context_lookup_color ( -+ style_context, -+ backdrop ? "theme_unfocused_fg_color" : "theme_fg_color", -+ &color)) -+ color_value = g_strdup_printf ("#%06x", e_rgba_to_value (&color)); -+ else -+ color_value = g_strdup("#000000"); -+ - style = g_strconcat ("color: ", color_value, ";", NULL); - - e_web_view_add_css_rule_into_style_sheet ( -@@ -612,9 +615,6 @@ style_updated_cb (EWebView *web_view) - ".-e-web-view-text-color", - style); - -- gtk_widget_path_free (widget_path); -- g_object_unref (style_context); -- - g_free (color_value); - g_free (style); - } -diff --git a/em-format/e-mail-formatter.c b/em-format/e-mail-formatter.c -index 2efe8eb..a81802b 100644 ---- a/em-format/e-mail-formatter.c -+++ b/em-format/e-mail-formatter.c -@@ -489,20 +489,21 @@ mail_formatter_update_style (EMailFormatter *formatter, - GtkStyleContext *style_context; - GtkWidgetPath *widget_path; - GdkRGBA rgba; -+ gboolean backdrop; - - g_object_freeze_notify (G_OBJECT (formatter)); - -- /* derive colors from top-level window */ - style_context = gtk_style_context_new (); - widget_path = gtk_widget_path_new (); - gtk_widget_path_append_type (widget_path, GTK_TYPE_WINDOW); - gtk_style_context_set_path (style_context, widget_path); -- gtk_style_context_invalidate (style_context); -+ backdrop = (state & GTK_STATE_FLAG_BACKDROP) != 0; - -- gtk_style_context_save (style_context); -- gtk_style_context_add_class (style_context, GTK_STYLE_CLASS_TOOLBAR); -- -- gtk_style_context_get_background_color (style_context, state, &rgba); -+ if (!gtk_style_context_lookup_color ( -+ style_context, -+ backdrop ? "theme_unfocused_bg_color" : "theme_bg_color", -+ &rgba)) -+ gdk_rgba_parse (&rgba, "#eeeeee"); - e_mail_formatter_set_color ( - formatter, E_MAIL_FORMATTER_COLOR_BODY, &rgba); - -@@ -512,20 +513,27 @@ mail_formatter_update_style (EMailFormatter *formatter, - e_mail_formatter_set_color ( - formatter, E_MAIL_FORMATTER_COLOR_FRAME, &rgba); - -- gtk_style_context_restore (style_context); -- gtk_style_context_add_class (style_context, GTK_STYLE_CLASS_ENTRY); -- -- gtk_style_context_get_color (style_context, state, &rgba); -+ if (!gtk_style_context_lookup_color ( -+ style_context, -+ backdrop ? "theme_unfocused_fg_color" : "theme_fg_color", -+ &rgba)) -+ gdk_rgba_parse (&rgba, "#000000"); - e_mail_formatter_set_color ( - formatter, E_MAIL_FORMATTER_COLOR_HEADER, &rgba); - -- gtk_style_context_get_background_color ( -- style_context, state | GTK_STATE_FLAG_FOCUSED, &rgba); -+ if (!gtk_style_context_lookup_color ( -+ style_context, -+ backdrop ? "theme_unfocused_base_color" : "theme_base_color", -+ &rgba)) -+ gdk_rgba_parse (&rgba, "#ffffff"); - e_mail_formatter_set_color ( - formatter, E_MAIL_FORMATTER_COLOR_CONTENT, &rgba); - -- gtk_style_context_get_color ( -- style_context, state | GTK_STATE_FLAG_FOCUSED, &rgba); -+ if (!gtk_style_context_lookup_color ( -+ style_context, -+ backdrop ? "theme_unfocused_fg_color" : "theme_fg_color", -+ &rgba)) -+ gdk_rgba_parse (&rgba, "#000000"); - e_mail_formatter_set_color ( - formatter, E_MAIL_FORMATTER_COLOR_TEXT, &rgba); - -@@ -605,7 +613,7 @@ e_mail_formatter_class_init (EMailFormatterClass *class) - gdk_rgba_parse (rgba, "#3f3f3f"); - - rgba = &class->colors[E_MAIL_FORMATTER_COLOR_HEADER]; -- gdk_rgba_parse (rgba, "#eeeeee"); -+ gdk_rgba_parse (rgba, "#000000"); - - rgba = &class->colors[E_MAIL_FORMATTER_COLOR_TEXT]; - gdk_rgba_parse (rgba, "#000000"); --- -cgit v0.10.1 - diff --git a/evolution.spec b/evolution.spec index 981bb4e..29377a7 100644 --- a/evolution.spec +++ b/evolution.spec @@ -29,8 +29,8 @@ ### Abstract ### Name: evolution -Version: 3.12.3 -Release: 3%{?dist} +Version: 3.12.4 +Release: 1%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -52,9 +52,6 @@ Patch02: evolution-2.30.1-help-contents.patch Patch03: evolution-3.12.3-drop-gnome-icon-theme-dep.patch -Patch04: evolution-3.12.3-folder-tree-columns-expand.patch -Patch05: evolution-3.12.3-webview-named-theme-colors.patch - ## Dependencies ### Requires: gvfs @@ -211,8 +208,6 @@ This package contains the plugin to import Microsoft Personal Storage Table %patch01 -p1 -b .ldaphack %patch02 -p1 -b .help-contents %patch03 -p1 -b .drop-gnome-icon-theme-dep -%patch04 -p1 -b .folder-tree-columns-expand -%patch05 -p1 -b .webview-named-theme-colors # Remove the welcome email from Novell for inbox in mail/default/*/Inbox; do @@ -534,6 +529,11 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Jul 14 2014 Milan Crha - 3.12.4-1 +- Update to 3.12.4 +- Remove patch to fix folder names in Mail view's folder tree (fixed upstream) +- Remove patch to fix colors in preview (fixed upstream) + * Thu Jun 26 2014 Milan Crha - 3.12.3-3 - Add upstream patch to fix folder names in Mail view's folder tree - Add upstream patch to fix colors in preview diff --git a/sources b/sources index 6191441..b58f30d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -7e359b94af6fe5380eb071ec24c486e5 evolution-3.12.3.tar.xz +b94b63bd8a32527aa45b152878c0a354 evolution-3.12.4.tar.xz From 9f8dfb1e5d97b60d841b2d9551d4f606e49e2bcf Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Mon, 11 Aug 2014 11:24:02 +0200 Subject: [PATCH 02/11] Update to 3.12.5 --- .gitignore | 1 + ...ion-3.12.3-drop-gnome-icon-theme-dep.patch | 23 ------------------- evolution.spec | 8 +++---- sources | 2 +- 4 files changed, 6 insertions(+), 28 deletions(-) delete mode 100644 evolution-3.12.3-drop-gnome-icon-theme-dep.patch diff --git a/.gitignore b/.gitignore index 82edaf5..24d37fb 100644 --- a/.gitignore +++ b/.gitignore @@ -76,3 +76,4 @@ evolution-2.31.5.tar.bz2 /evolution-3.12.2.tar.xz /evolution-3.12.3.tar.xz /evolution-3.12.4.tar.xz +/evolution-3.12.5.tar.xz diff --git a/evolution-3.12.3-drop-gnome-icon-theme-dep.patch b/evolution-3.12.3-drop-gnome-icon-theme-dep.patch deleted file mode 100644 index f3d5f23..0000000 --- a/evolution-3.12.3-drop-gnome-icon-theme-dep.patch +++ /dev/null @@ -1,23 +0,0 @@ -diff -up evolution-3.12.3/configure.ac.drop-gnome-icon-theme-dep evolution-3.12.3/configure.ac ---- evolution-3.12.3/configure.ac.drop-gnome-icon-theme-dep 2014-06-09 11:33:17.814864320 +0200 -+++ evolution-3.12.3/configure.ac 2014-06-09 11:33:44.925863171 +0200 -@@ -49,7 +49,6 @@ m4_define([gtkhtml_minimum_version], [4. - m4_define([gdk_pixbuf_minimum_version], [2.24.0]) - m4_define([gcr_minimum_version], [3.4]) - m4_define([gnome_desktop_minimum_version], [2.91.3]) --m4_define([gnome_icon_theme_minimum_version], [2.30.2.1]) - m4_define([gsettings_desktop_schemas_minimum_version], [2.91.92]) - m4_define([webkitgtk_minimum_version], [2.0.1]) - m4_define([libgdata_minimum_version], [0.10]) -@@ -486,11 +485,6 @@ fi - AC_CHECK_FUNCS(mkdtemp) - - dnl ************************************************** --dnl Gnome Icon Theme --dnl ************************************************** --PKG_CHECK_MODULES([GIT], [gnome-icon-theme >= gnome_icon_theme_minimum_version]) -- --dnl ************************************************** - dnl Accessibility support - dnl ************************************************** - PKG_CHECK_MODULES([A11Y], [atk]) diff --git a/evolution.spec b/evolution.spec index 29377a7..c5e68e8 100644 --- a/evolution.spec +++ b/evolution.spec @@ -29,7 +29,7 @@ ### Abstract ### Name: evolution -Version: 3.12.4 +Version: 3.12.5 Release: 1%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME @@ -50,8 +50,6 @@ Patch01: evolution-1.4.4-ldap-x86_64-hack.patch # RH bug #589555 Patch02: evolution-2.30.1-help-contents.patch -Patch03: evolution-3.12.3-drop-gnome-icon-theme-dep.patch - ## Dependencies ### Requires: gvfs @@ -207,7 +205,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 .drop-gnome-icon-theme-dep # Remove the welcome email from Novell for inbox in mail/default/*/Inbox; do @@ -529,6 +526,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Aug 11 2014 Milan Crha - 3.12.5-1 +- Update to 3.12.5 + * Mon Jul 14 2014 Milan Crha - 3.12.4-1 - Update to 3.12.4 - Remove patch to fix folder names in Mail view's folder tree (fixed upstream) diff --git a/sources b/sources index b58f30d..0991cb4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b94b63bd8a32527aa45b152878c0a354 evolution-3.12.4.tar.xz +4cf8ad5385889cc2a701397122c11487 evolution-3.12.5.tar.xz From bc15113715ec37887936a6c57e3b5b7baa4978b9 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Mon, 11 Aug 2014 12:49:30 +0200 Subject: [PATCH 03/11] Add BuildRequires for adwaita-icon-theme --- evolution.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/evolution.spec b/evolution.spec index c5e68e8..67d0ab1 100644 --- a/evolution.spec +++ b/evolution.spec @@ -58,6 +58,7 @@ Requires: highlight ### Build Dependencies ### +BuildRequires: adwaita-icon-theme BuildRequires: autoconf >= 2.59 BuildRequires: automake >= 1.9 BuildRequires: desktop-file-utils From 39140eaeb3b83ecf5b3a4bde9ac1d14001f9fa0f Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Mon, 11 Aug 2014 13:26:41 +0200 Subject: [PATCH 04/11] Add patch to drop icon theme dependency --- evolution-3.12.5-drop-icon-theme-dep.patch | 37 ++++++++++++++++++++++ evolution.spec | 4 ++- 2 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 evolution-3.12.5-drop-icon-theme-dep.patch diff --git a/evolution-3.12.5-drop-icon-theme-dep.patch b/evolution-3.12.5-drop-icon-theme-dep.patch new file mode 100644 index 0000000..973eea5 --- /dev/null +++ b/evolution-3.12.5-drop-icon-theme-dep.patch @@ -0,0 +1,37 @@ +diff -up evolution-3.12.5/configure.ac.drop-icon-theme-dep evolution-3.12.5/configure.ac +--- evolution-3.12.5/configure.ac.drop-icon-theme-dep 2014-08-11 13:24:33.451075847 +0200 ++++ evolution-3.12.5/configure.ac 2014-08-11 13:25:05.785074477 +0200 +@@ -49,7 +49,6 @@ m4_define([gtkhtml_minimum_version], [4. + m4_define([gdk_pixbuf_minimum_version], [2.24.0]) + m4_define([gcr_minimum_version], [3.4]) + m4_define([gnome_desktop_minimum_version], [2.91.3]) +-m4_define([gnome_icon_theme_minimum_version], [2.30.2.1]) + m4_define([gsettings_desktop_schemas_minimum_version], [2.91.92]) + m4_define([webkitgtk_minimum_version], [2.0.1]) + m4_define([libgdata_minimum_version], [0.10]) +@@ -505,25 +504,6 @@ AC_CHECK_HEADERS(sys/wait.h, AC_DEFINE(H + AC_CHECK_FUNCS(mkdtemp) + + dnl ************************************************** +-dnl Gnome Icon Theme +-dnl ************************************************** +-AC_MSG_CHECKING(for icon theme) +-PKG_CHECK_EXISTS([gnome-icon-theme >= gnome_icon_theme_minimum_version], +- have_icon_theme=yes, have_icon_theme=no) +-if test "x$have_icon_theme" != "xyes"; then +- PKG_CHECK_EXISTS([adwaita-icon-theme], +- have_icon_theme=yes, have_icon_theme=no) +-fi +- +-if test "x$have_icon_theme" != "xyes"; then +- AC_MSG_RESULT(no) +- AC_MSG_FAILURE([You need to have gnome-icon-theme or adwaita-icon-theme installed.]) +-else +- AC_MSG_RESULT(yes) +-fi +- +- +-dnl ************************************************** + dnl Accessibility support + dnl ************************************************** + PKG_CHECK_MODULES([A11Y], [atk]) diff --git a/evolution.spec b/evolution.spec index 67d0ab1..4bb9c60 100644 --- a/evolution.spec +++ b/evolution.spec @@ -50,6 +50,8 @@ Patch01: evolution-1.4.4-ldap-x86_64-hack.patch # RH bug #589555 Patch02: evolution-2.30.1-help-contents.patch +Patch03: evolution-3.12.5-drop-icon-theme-dep.patch + ## Dependencies ### Requires: gvfs @@ -58,7 +60,6 @@ Requires: highlight ### Build Dependencies ### -BuildRequires: adwaita-icon-theme BuildRequires: autoconf >= 2.59 BuildRequires: automake >= 1.9 BuildRequires: desktop-file-utils @@ -206,6 +207,7 @@ 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 .drop-icon-theme-dep # Remove the welcome email from Novell for inbox in mail/default/*/Inbox; do From 13dd56a76ff558194c5a806ffdb342ff60b0b5b0 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sat, 16 Aug 2014 11:40:59 +0000 Subject: [PATCH 05/11] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- evolution.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/evolution.spec b/evolution.spec index 4bb9c60..b417312 100644 --- a/evolution.spec +++ b/evolution.spec @@ -30,7 +30,7 @@ Name: evolution Version: 3.12.5 -Release: 1%{?dist} +Release: 2%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -529,6 +529,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Sat Aug 16 2014 Fedora Release Engineering - 3.12.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Mon Aug 11 2014 Milan Crha - 3.12.5-1 - Update to 3.12.5 From 5020c22f371b332ba7508537efa8bfd82638f4d7 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Mon, 8 Sep 2014 09:54:45 +0200 Subject: [PATCH 06/11] Update to 3.12.6 --- .gitignore | 1 + evolution.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 24d37fb..2fea9df 100644 --- a/.gitignore +++ b/.gitignore @@ -77,3 +77,4 @@ evolution-2.31.5.tar.bz2 /evolution-3.12.3.tar.xz /evolution-3.12.4.tar.xz /evolution-3.12.5.tar.xz +/evolution-3.12.6.tar.xz diff --git a/evolution.spec b/evolution.spec index b417312..a39cd60 100644 --- a/evolution.spec +++ b/evolution.spec @@ -29,8 +29,8 @@ ### Abstract ### Name: evolution -Version: 3.12.5 -Release: 2%{?dist} +Version: 3.12.6 +Release: 1%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME License: GPLv2+ and GFDL @@ -529,6 +529,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Sep 08 2014 Milan Crha - 3.12.6-1 +- Update to 3.12.6 + * Sat Aug 16 2014 Fedora Release Engineering - 3.12.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild diff --git a/sources b/sources index 0991cb4..22ef90b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -4cf8ad5385889cc2a701397122c11487 evolution-3.12.5.tar.xz +2f98353ba8d8a9a45d0ff5d0a22d27c1 evolution-3.12.6.tar.xz From 270ec7d342250440f4f8289599e53d784aa4a3ed Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Mon, 13 Oct 2014 11:14:31 +0200 Subject: [PATCH 07/11] Update to 3.12.7 --- .gitignore | 1 + evolution.spec | 7 ++++++- sources | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2fea9df..f05fdc5 100644 --- a/.gitignore +++ b/.gitignore @@ -78,3 +78,4 @@ evolution-2.31.5.tar.bz2 /evolution-3.12.4.tar.xz /evolution-3.12.5.tar.xz /evolution-3.12.6.tar.xz +/evolution-3.12.7.tar.xz diff --git a/evolution.spec b/evolution.spec index a39cd60..d11f26d 100644 --- a/evolution.spec +++ b/evolution.spec @@ -29,7 +29,7 @@ ### Abstract ### Name: evolution -Version: 3.12.6 +Version: 3.12.7 Release: 1%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME @@ -512,10 +512,12 @@ rm -rf $RPM_BUILD_ROOT %files bogofilter %defattr(-, root, root) %{_libdir}/evolution/%{evo_base_version}/modules/module-bogofilter.so +%{_datadir}/appdata/evolution-bogofilter.metainfo.xml %files spamassassin %defattr(-, root, root) %{_libdir}/evolution/%{evo_base_version}/modules/module-spamassassin.so +%{_datadir}/appdata/evolution-spamassassin.metainfo.xml %files perl %defattr(-, root, root) @@ -529,6 +531,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Oct 13 2014 Milan Crha - 3.12.7-1 +- Update to 3.12.7 + * Mon Sep 08 2014 Milan Crha - 3.12.6-1 - Update to 3.12.6 diff --git a/sources b/sources index 22ef90b..423764c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2f98353ba8d8a9a45d0ff5d0a22d27c1 evolution-3.12.6.tar.xz +afae5a7d801e37480ab0e5bd5a074e29 evolution-3.12.7.tar.xz From c63b4ad1ba5234c6f8efdeae218c875a2fcffeff Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Mon, 10 Nov 2014 08:50:44 +0100 Subject: [PATCH 08/11] Update to 3.12.8 --- .gitignore | 1 + evolution.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f05fdc5..79f28f4 100644 --- a/.gitignore +++ b/.gitignore @@ -79,3 +79,4 @@ evolution-2.31.5.tar.bz2 /evolution-3.12.5.tar.xz /evolution-3.12.6.tar.xz /evolution-3.12.7.tar.xz +/evolution-3.12.8.tar.xz diff --git a/evolution.spec b/evolution.spec index d11f26d..36ec686 100644 --- a/evolution.spec +++ b/evolution.spec @@ -29,7 +29,7 @@ ### Abstract ### Name: evolution -Version: 3.12.7 +Version: 3.12.8 Release: 1%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME @@ -531,6 +531,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Nov 10 2014 Milan Crha - 3.12.8-1 +- Update to 3.12.8 + * Mon Oct 13 2014 Milan Crha - 3.12.7-1 - Update to 3.12.7 diff --git a/sources b/sources index 423764c..da815e7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -afae5a7d801e37480ab0e5bd5a074e29 evolution-3.12.7.tar.xz +2861ecacd698c9dc8ba2bee491fa9569 evolution-3.12.8.tar.xz From 6b81aedb4c6b505970f31b749e1c458a7133f4f2 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Mon, 8 Dec 2014 09:25:11 +0100 Subject: [PATCH 09/11] Update to 3.12.9 --- .gitignore | 1 + evolution.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 79f28f4..3a072f6 100644 --- a/.gitignore +++ b/.gitignore @@ -80,3 +80,4 @@ evolution-2.31.5.tar.bz2 /evolution-3.12.6.tar.xz /evolution-3.12.7.tar.xz /evolution-3.12.8.tar.xz +/evolution-3.12.9.tar.xz diff --git a/evolution.spec b/evolution.spec index 36ec686..9472baf 100644 --- a/evolution.spec +++ b/evolution.spec @@ -29,7 +29,7 @@ ### Abstract ### Name: evolution -Version: 3.12.8 +Version: 3.12.9 Release: 1%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME @@ -531,6 +531,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Dec 08 2014 Milan Crha - 3.12.9-1 +- Update to 3.12.9 + * Mon Nov 10 2014 Milan Crha - 3.12.8-1 - Update to 3.12.8 diff --git a/sources b/sources index da815e7..6ab9ec5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2861ecacd698c9dc8ba2bee491fa9569 evolution-3.12.8.tar.xz +2c0830d13ade4562608c4fe5985b8dc7 evolution-3.12.9.tar.xz From 6b853581f6177c86673f70e88ed896659f3a84da Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Mon, 12 Jan 2015 13:09:37 +0100 Subject: [PATCH 10/11] Update to 3.12.10 --- .gitignore | 1 + evolution.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3a072f6..8d907b8 100644 --- a/.gitignore +++ b/.gitignore @@ -81,3 +81,4 @@ evolution-2.31.5.tar.bz2 /evolution-3.12.7.tar.xz /evolution-3.12.8.tar.xz /evolution-3.12.9.tar.xz +/evolution-3.12.10.tar.xz diff --git a/evolution.spec b/evolution.spec index 9472baf..c9836d4 100644 --- a/evolution.spec +++ b/evolution.spec @@ -29,7 +29,7 @@ ### Abstract ### Name: evolution -Version: 3.12.9 +Version: 3.12.10 Release: 1%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME @@ -531,6 +531,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Jan 12 2015 Milan Crha - 3.12.10-1 +- Update to 3.12.10 + * Mon Dec 08 2014 Milan Crha - 3.12.9-1 - Update to 3.12.9 diff --git a/sources b/sources index 6ab9ec5..419d5b0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2c0830d13ade4562608c4fe5985b8dc7 evolution-3.12.9.tar.xz +8cb2ee955d7adccee07d00eb46d7451b evolution-3.12.10.tar.xz From ec06b55c01db11be89b05b6317b991304042cd5c Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Mon, 9 Feb 2015 09:58:04 +0100 Subject: [PATCH 11/11] Update to 3.12.11 --- .gitignore | 1 + evolution.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 8d907b8..2e786af 100644 --- a/.gitignore +++ b/.gitignore @@ -82,3 +82,4 @@ evolution-2.31.5.tar.bz2 /evolution-3.12.8.tar.xz /evolution-3.12.9.tar.xz /evolution-3.12.10.tar.xz +/evolution-3.12.11.tar.xz diff --git a/evolution.spec b/evolution.spec index c9836d4..42b830c 100644 --- a/evolution.spec +++ b/evolution.spec @@ -29,7 +29,7 @@ ### Abstract ### Name: evolution -Version: 3.12.10 +Version: 3.12.11 Release: 1%{?dist} Group: Applications/Productivity Summary: Mail and calendar client for GNOME @@ -531,6 +531,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Mon Feb 09 2015 Milan Crha - 3.12.11-1 +- Update to 3.12.11 + * Mon Jan 12 2015 Milan Crha - 3.12.10-1 - Update to 3.12.10 diff --git a/sources b/sources index 419d5b0..d59928d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8cb2ee955d7adccee07d00eb46d7451b evolution-3.12.10.tar.xz +22ceaebe4add813e15253a76939af7f0 evolution-3.12.11.tar.xz