Hello community,

here is the log from the commit of package evolution-rss for openSUSE:Factory 
checked in at 2015-03-30 19:14:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/evolution-rss (Old)
 and      /work/SRC/openSUSE:Factory/.evolution-rss.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "evolution-rss"

Changes:
--------
--- /work/SRC/openSUSE:Factory/evolution-rss/evolution-rss.changes      
2014-11-24 11:08:58.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.evolution-rss.new/evolution-rss.changes 
2015-03-30 19:14:53.000000000 +0200
@@ -1,0 +2,39 @@
+Fri Mar 20 08:33:14 UTC 2015 - dims...@opensuse.org
+
+- Add 0001-Fix-compiler-warning.patch: Fix compiler warning.
+
+-------------------------------------------------------------------
+Thu Mar 19 09:55:55 UTC 2015 - dims...@opensuse.org
+
+- Update to version 0.3.95~20150316:
+  + Updated Greek translation
+  + better handle enclosures obey filesize if present
+  + fix subject on enclosured feed messages
+  + fix subject on feeds (take II) and bring back categories
+  + Updated Hungarian translation
+  + Updated Polish translation
+  + Updated Czech translation
+  + don't crash on freeing category
+  + bring back feeds comments
+  + hide individual feed errors by default it gests annoying to
+    have a lot of errors alert dialogs for each feed every time it
+    is fetched.
+  + Added Bosnian translation
+  + Updated Lithuanian translation
+  + Updated Swedish translation
+
+-------------------------------------------------------------------
+Thu Feb 19 12:15:02 UTC 2015 - opensuse-packag...@opensuse.org
+
+- Update to version 0.3.95~20150213:
+  + add link/href parsing (fixes html rendering).
+  + make feed enclosures work again.
+- Add gnome-common and gconf2-devel BuildRequires and call to
+  autogen.sh.
+
+-------------------------------------------------------------------
+Wed Jan 28 08:49:03 UTC 2015 - dims...@opensuse.org
+
+- Updated files section for Evolution 3.13.x.
+
+-------------------------------------------------------------------

Old:
----
  evolution-rss-0.3.95~git20141120.b2253df.tar.xz

New:
----
  0001-Fix-compiler-warning.patch
  _service
  _servicedata
  evolution-rss-0.3.95~20150316.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ evolution-rss.spec ++++++
--- /var/tmp/diff_new_pack.Ld1dZl/_old  2015-03-30 19:14:54.000000000 +0200
+++ /var/tmp/diff_new_pack.Ld1dZl/_new  2015-03-30 19:14:54.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package evolution-rss
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,14 +26,18 @@
 %define _evo_errordir %(pkg-config --variable errordir evolution-plugin-3.0)
 %endif
 Name:           evolution-rss
-Version:        0.3.95~git20141120.b2253df
+Version:        0.3.95~20150316
 Release:        0
 Summary:        Evolution Plugin for RSS Feeds Support
 License:        GPL-2.0+
 Group:          Productivity/Networking/Email/Clients
 Url:            http://gnome.eu.org/evo/index.php/Evolution_RSS_Reader_Plugin
 Source:         %{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM 0001-Fix-compiler-warning.patch bgo#746511 
dims...@opensuse.org -- Fix compiler warning
+Patch0:         0001-Fix-compiler-warning.patch
 BuildRequires:  gcc-c++
+BuildRequires:  gconf2-devel
+BuildRequires:  gnome-common
 BuildRequires:  intltool
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(evolution-data-server-1.2)
@@ -67,8 +71,10 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
+NOCONFIGURE=1 ./autogen.sh
 %configure --disable-schemas-install
 make %{?_smp_mflags}
 
@@ -89,8 +95,8 @@
 %{_bindir}/evolution-import-rss
 %{_datadir}/appdata/evolution-rss.metainfo.xml
 %{_datadir}/applications/evolution-rss.desktop
-%{_datadir}/evolution/%{_evo_branch}/ui/rss-html-rendering.ui
-%{_datadir}/evolution/%{_evo_branch}/ui/rss-main.ui
+%{_datadir}/evolution/ui/rss-html-rendering.ui
+%{_datadir}/evolution/ui/rss-main.ui
 %{_datadir}/GConf/gsettings/evolution-rss.convert
 
%{_datadir}/glib-2.0/schemas/org.gnome.evolution.plugin.evolution-rss.gschema.xml
 %{_evo_errordir}/org-gnome-evolution-rss.error
@@ -106,7 +112,7 @@
 %{_evo_plugindir}/liborg-gnome-evolution-rss.so
 %{_evo_plugindir}/org-gnome-evolution-rss.eplug
 %{_evo_plugindir}/org-gnome-evolution-rss.xml
-%{_libdir}/evolution/%{_evo_branch}/modules/evolution-module-rss.so
+%{_libdir}/evolution/modules/evolution-module-rss.so
 
 %files -n %{_name}-lang -f %{name}.lang
 %defattr(-,root,root)

++++++ 0001-Fix-compiler-warning.patch ++++++
>From 92e5046474f22c59762e9f5dcbc5603fac2f3b51 Mon Sep 17 00:00:00 2001
From: Dominique Leuenberger <dims...@opensuse.org>
Date: Fri, 20 Mar 2015 09:26:21 +0100
Subject: [PATCH] Fix compiler warning

rss.c:4497:1: warning: control reaches end of non-void function
[-Wreturn-type]

I: Program returns random data in a function
E: evolution-rss no-return-in-nonvoid-function rss.c:4497
---
 src/rss.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/rss.c b/src/rss.c
index 69d49a5..fff2bd9 100644
--- a/src/rss.c
+++ b/src/rss.c
@@ -4492,6 +4492,7 @@ process_enclosure(create_feed *CF)
                        CFL,
                        1,
                        NULL);
+               return TRUE;
        } else
                return FALSE;
 }
-- 
2.3.1

++++++ _service ++++++
<services>
  <service name="tar_scm" mode="disabled">
    <param name="url">https://git.gnome.org/browse/evolution-rss</param>
    <param name="scm">git</param>
    <param name="versionformat">0.3.95~%cd</param>
    <param name="changesgenerate">enable</param>
  </service>
  <service name="recompress" mode="disabled">
    <param name="file">*.tar</param>
    <param name="compression">xz</param>
  </service>
  <service name="set_version" mode="disabled"/>
</services>
++++++ _servicedata ++++++
<servicedata>
<service name="tar_scm">
            <param name="url">https://git.gnome.org/browse/evolution-rss</param>
          <param 
name="changesrevision">691c64b76929845a0539d5a254e0c3379cc4af1e</param></service></servicedata>++++++
 evolution-rss-0.3.95~git20141120.b2253df.tar.xz -> 
evolution-rss-0.3.95~20150316.tar.xz ++++++
++++ 65784 lines of diff (skipped)


Reply via email to