Hello community,

here is the log from the commit of package gnumeric for openSUSE:Factory 
checked in at 2012-12-14 07:11:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnumeric (Old)
 and      /work/SRC/openSUSE:Factory/.gnumeric.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnumeric", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/gnumeric/gnumeric.changes        2012-10-03 
07:23:23.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.gnumeric.new/gnumeric.changes   2012-12-14 
07:11:33.000000000 +0100
@@ -1,0 +2,23 @@
+Tue Dec 11 09:27:26 UTC 2012 - [email protected]
+
+- Update to version 1.11.90:
+  + ODF import/export improvements (bgo#662057, bgo#683739,
+    bgo#686789, bgo#687243, bgo#687693)
+  + Fix encounter with macro sheets on xls import (bgo#684646)
+  + Fix xlsx save performance problems (bgo#662058, bgo#685530)
+  + Save all settings in stf export (bgo#685077)
+  + Fix cell overflow in case of marked up scientific format
+    (bgo#686540)
+  + Fixed indentation in cell format dialog (bgo#683576)
+  + Do not use filtered out values in graphs (bgo#687209)
+  + Fixed crash on interprocess image copying (bgo#687414)
+  + Fix sheet focus after resizing (bgo#687188)
+  + Unselect sheet objects on closing to avoid leaks (bgo#688094)
+  + Make .gnumeric use fewer style rectangles for the same style.
+  + Short-circuit column resize for large stf imports (bgo#686858)
+  + Enhance POWER to do root of negative numbers (bgo#687269)
+  + Fix interaction with ibus & fcitx (bgo#684511)
+  + Fixed introspection annotations (bgo#682514)
+- Add gnumeric-missing-return.patch: fix missing return value.
+
+-------------------------------------------------------------------

Old:
----
  gnumeric-1.11.6.tar.xz

New:
----
  gnumeric-1.11.90.tar.xz
  gnumeric-missing-return.patch

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

Other differences:
------------------
++++++ gnumeric.spec ++++++
--- /var/tmp/diff_new_pack.C8B4r6/_old  2012-12-14 07:11:35.000000000 +0100
+++ /var/tmp/diff_new_pack.C8B4r6/_new  2012-12-14 07:11:35.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           gnumeric
-Version:        1.11.6
+Version:        1.11.90
 Release:        0
 # FIXME: Enable gobject-introspection when build succeeds (bgo#684159)
 Summary:        Spreadsheet Application
@@ -25,6 +25,8 @@
 Group:          Productivity/Office/Spreadsheets
 Url:            http://www.gnumeric.org/
 Source0:        
http://download.gnome.org/sources/gnumeric/1.11/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM gnumeric-missing-return.patch [email protected] -- Fix 
missing return value, taken from git
+Patch0:         gnumeric-missing-return.patch
 BuildRequires:  fdupes
 BuildRequires:  intltool
 BuildRequires:  libgda-devel
@@ -38,7 +40,7 @@
 # gobject introspection currently disabled... build fails
 #BuildRequires:  pkgconfig(gobject-introspection-1.0) >= 1.0.0
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.0.0
-BuildRequires:  pkgconfig(libgoffice-0.10) >= 0.9.6
+BuildRequires:  pkgconfig(libgoffice-0.10) >= 0.9.90
 BuildRequires:  pkgconfig(libgsf-1) >= 1.14.24
 BuildRequires:  pkgconfig(libxml-2.0) >= 2.4.12
 BuildRequires:  pkgconfig(pango) >= 1.24.0
@@ -109,6 +111,7 @@
         sed -i "/^$LNG\$/d" po/LINGUAS
     fi
 done
+%patch0 -p1
 
 %build
 export CFLAGS="%{optflags} -fno-strict-aliasing"

++++++ gnumeric-missing-return.patch ++++++
>From ffd85edb736177076d4b295ea283cca02def88c7 Mon Sep 17 00:00:00 2001
From: Morten Welinder <[email protected]>
Date: Mon, 19 Nov 2012 21:32:24 +0000
Subject: Cell format: actually return the intended result.

---
(limited to 'src/cell.c')

diff --git a/src/cell.c b/src/cell.c
index 68991e7..77b9988 100644
--- a/src/cell.c
+++ b/src/cell.c
@@ -955,7 +955,7 @@ gnm_cell_get_format_given_style (GnmCell const *cell, 
GnmStyle const *style)
 GOFormat const *
 gnm_cell_get_format (GnmCell const *cell)
 {
-       gnm_cell_get_format_given_style (cell, NULL);   
+       return gnm_cell_get_format_given_style (cell, NULL);    
 }
 
 /*
--
cgit v0.9.0.2

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to