r1427 - in /unstable/evolution-rss/debian: changelog control patches/03_recv_feeds.patch

joss at users.alioth.debian.org joss at users.alioth.debian.org
Tue Nov 24 13:11:24 UTC 2009


Author: joss
Date: Tue Nov 24 13:11:24 2009
New Revision: 1427

URL: http://svn.debian.org/wsvn/pkg-evolution/?sc=1&rev=1427
Log:
Actually the version check remains at 2.28.0 because evolution 
2.28.1 still returns 22800 as integer version. No wonder.

Modified:
    unstable/evolution-rss/debian/changelog
    unstable/evolution-rss/debian/control
    unstable/evolution-rss/debian/patches/03_recv_feeds.patch

Modified: unstable/evolution-rss/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-evolution/unstable/evolution-rss/debian/changelog?rev=1427&op=diff
==============================================================================
--- unstable/evolution-rss/debian/changelog (original)
+++ unstable/evolution-rss/debian/changelog Tue Nov 24 13:11:24 2009
@@ -3,6 +3,8 @@
   * 03_recv_feeds.patch: new version of the patch, with a correct 
     version check at version 2.28.1. Uh, API changed in a minor release, 
     this is so insane!
+  * Actually the version check remains at 2.28.0 because evolution 
+    2.28.1 still returns 22800 as integer version. No wonder.
   * Require evolution 2.28.1, at both build time and run time, to avoid 
     running into the issue.
 

Modified: unstable/evolution-rss/debian/control
URL: http://svn.debian.org/wsvn/pkg-evolution/unstable/evolution-rss/debian/control?rev=1427&op=diff
==============================================================================
--- unstable/evolution-rss/debian/control (original)
+++ unstable/evolution-rss/debian/control Tue Nov 24 13:11:24 2009
@@ -33,7 +33,8 @@
 Architecture: any
 Depends: ${shlibs:Depends},
          ${misc:Depends},
-         evolution (>= 2.28.1), evolution (<< 2.29)
+         evolution (>= 2.28.1), evolution (<< 2.29),
+         evolution-data-server (>= 2.28.1)
 Description: Evolution RSS Reader Plugin
  This plugin adds RSS Feeds support for evolution mail.
  .

Modified: unstable/evolution-rss/debian/patches/03_recv_feeds.patch
URL: http://svn.debian.org/wsvn/pkg-evolution/unstable/evolution-rss/debian/patches/03_recv_feeds.patch?rev=1427&op=diff
==============================================================================
--- unstable/evolution-rss/debian/patches/03_recv_feeds.patch (original)
+++ unstable/evolution-rss/debian/patches/03_recv_feeds.patch Tue Nov 24 13:11:24 2009
@@ -6,7 +6,7 @@
  
          /* states/data used during shutdown */
 -        enum { MC_QUIT_START, MC_QUIT_SYNC, MC_QUIT_THREADS } quit_state;
-+#if EVOLUTION_VERSION >= 22801
++#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;
@@ -18,7 +18,7 @@
  		deleted = 1;
  
  	MailComponent *mc = mail_component_peek ();
-+#if EVOLUTION_VERSION >= 22801
++#if EVOLUTION_VERSION >= 22800
 +        if (mc->priv->quit_state != MC_QUIT_NOT_START)
 +#else
          if (mc->priv->quit_state != -1)
@@ -30,7 +30,7 @@
  {
  	MailComponent *mc = mail_component_peek ();
  	g_print("stAte:%d\n", mc->priv->quit_state);
-+#if EVOLUTION_VERSION >= 22801
++#if EVOLUTION_VERSION >= 22800
 +        if (mc->priv->quit_state != MC_QUIT_NOT_START)
 +#else
          if (mc->priv->quit_state != -1)




More information about the pkg-evolution-commits mailing list