rpms/evolution-rss/F-12 evolution-rss-0.1.4-recv-feeds.patch, NONE, 1.1 evolution-rss.spec, 1.37, 1.38

Lucian Langa lucilanga at fedoraproject.org
Mon Oct 26 20:52:48 UTC 2009


Author: lucilanga

Update of /cvs/pkgs/rpms/evolution-rss/F-12
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25093

Modified Files:
	evolution-rss.spec 
Added Files:
	evolution-rss-0.1.4-recv-feeds.patch 
Log Message:
add upstream patch to fix loading of feeds for evo >= 2.28.1

evolution-rss-0.1.4-recv-feeds.patch:
 rss.c |    8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

--- NEW FILE evolution-rss-0.1.4-recv-feeds.patch ---
diff -Naur evolution-rss-0.1.4/src/rss.c evolution-rss-0.1.4-mod/src/rss.c
--- evolution-rss-0.1.4/src/rss.c	2009-08-26 12:00:09.000000000 +0300
+++ evolution-rss-0.1.4-mod/src/rss.c	2009-10-26 19:30:55.000000000 +0200
@@ -2812,7 +2812,11 @@
         GMutex *lock;
 
         /* states/data used during shutdown */
-        enum { MC_QUIT_START, MC_QUIT_SYNC, MC_QUIT_THREADS } quit_state;
+#if EVOLUTION_VERSION >= 22800
+	enum { MC_QUIT_NOT_START, MC_QUIT_START, MC_QUIT_SYNC, MC_QUIT_THREADS } quit_state;
+#else
+	enum { MC_QUIT_START, MC_QUIT_SYNC, MC_QUIT_THREADS } quit_state;
+#endif
 };
 
 void
@@ -2829,7 +2833,7 @@
 		deleted = 1;
 
 	MailComponent *mc = mail_component_peek ();
-        if (mc->priv->quit_state != -1)
+        if (mc->priv->quit_state != MC_QUIT_NOT_START)
 		rf->cancel_all=1;
 
 	d(g_print("taskbar_op_finish() queue:%d\n", rf->feed_queue));


Index: evolution-rss.spec
===================================================================
RCS file: /cvs/pkgs/rpms/evolution-rss/F-12/evolution-rss.spec,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -p -r1.37 -r1.38
--- evolution-rss.spec	23 Oct 2009 16:35:09 -0000	1.37
+++ evolution-rss.spec	26 Oct 2009 20:52:48 -0000	1.38
@@ -11,7 +11,7 @@
 Name:		evolution-rss
 Summary:	Evolution RSS Reader
 Version:	0.1.4
-Release:	5%{?dist}
+Release:	6%{?dist}
 Group:		Applications/Internet
 License:	GPLv2 and GPLv2+
 URL:		http://gnome.eu.org/evo/index.php/Evolution_RSS_Reader_Plugin
@@ -19,6 +19,7 @@ Source:		http://gnome.eu.org/%{name}-%{v
 Patch0:		evolution-rss-0.1.4-folder-rename.patch
 Patch1:		evolution-rss-0.1.4-folder-properties.patch
 Patch2:		evolution-rss-0.1.4-icon-size.patch
+Patch3:		evolution-rss-0.1.4-recv-feeds.patch
 BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 Requires:	evolution
 
@@ -45,6 +46,7 @@ This is an evolution plugin which enable
 %patch0 -p1 -b .folder-rename
 %patch1 -p1 -b .folder-properties
 %patch2 -p1 -b .icon-size
+%patch3 -p1 -b .recv-feeds
 
 %build
 %configure --with-primary-render=gecko
@@ -98,6 +100,9 @@ fi
 %{_libdir}/bonobo/servers/GNOME_Evolution_RSS_*.server
 
 %changelog
+* Mon Oct 26 2009 Lucian Langa <cooly at gnome.eu.org> - 0.1.4-6
+- add upstream patch to fix loading of feeds for evo >= 2.28.1
+
 * Fri Oct 23 2009 Lucian Langa <cooly at gnome.eu.org> - 0.1.4-5
 - add patch2 to fix loading of icons (gtk refuses to load icons with size 0)
 




More information about the fedora-extras-commits mailing list