forked from pool/gnumeric
This commit is contained in:
parent
2c6326ea01
commit
1af432129b
13
abuild.patch
13
abuild.patch
@ -1,13 +0,0 @@
|
|||||||
Index: gnumeric-1.7.9/plugins/applix/applix-read.c
|
|
||||||
===================================================================
|
|
||||||
--- gnumeric-1.7.9.orig/plugins/applix/applix-read.c
|
|
||||||
+++ gnumeric-1.7.9/plugins/applix/applix-read.c
|
|
||||||
@@ -57,6 +57,8 @@
|
|
||||||
#include <goffice/app/error-info.h>
|
|
||||||
#include <goffice/utils/go-glib-extras.h>
|
|
||||||
#include <gsf/gsf-input-textline.h>
|
|
||||||
+#include <goffice/utils/go-format.h>
|
|
||||||
+
|
|
||||||
#include <string.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
|
|
@ -1,32 +0,0 @@
|
|||||||
Index: gnumeric-1.7.9/src/widgets/gnumeric-expr-entry.c
|
|
||||||
===================================================================
|
|
||||||
--- gnumeric-1.7.9.orig/src/widgets/gnumeric-expr-entry.c
|
|
||||||
+++ gnumeric-1.7.9/src/widgets/gnumeric-expr-entry.c
|
|
||||||
@@ -176,14 +176,14 @@ cb_icon_clicked (GtkButton *icon,
|
|
||||||
g_assert (GTK_IS_CONTAINER (old_entry_parent));
|
|
||||||
|
|
||||||
g_object_set_data_full (G_OBJECT (entry), "old_entry_parent",
|
|
||||||
- gtk_widget_ref (old_entry_parent),
|
|
||||||
- (GDestroyNotify) gtk_widget_unref);
|
|
||||||
+ g_object_ref ((gpointer) old_entry_parent),
|
|
||||||
+ (GDestroyNotify) g_object_unref);
|
|
||||||
|
|
||||||
g_return_if_fail ((GtkWidget *) entry != old_toplevel_child);
|
|
||||||
|
|
||||||
g_object_set_data_full (G_OBJECT (entry), "old_toplevel_child",
|
|
||||||
- gtk_widget_ref (old_toplevel_child),
|
|
||||||
- (GDestroyNotify) gtk_widget_unref);
|
|
||||||
+ g_object_ref ((gpointer) old_toplevel_child),
|
|
||||||
+ (GDestroyNotify) g_object_unref);
|
|
||||||
|
|
||||||
gtk_window_get_size (GTK_WINDOW (toplevel), &width, &height);
|
|
||||||
g_object_set_data (G_OBJECT (entry), "old_window_width", GUINT_TO_POINTER (width));
|
|
||||||
@@ -238,7 +238,7 @@ cb_icon_clicked (GtkButton *icon,
|
|
||||||
gtk_container_remove (GTK_CONTAINER (toplevel), GTK_WIDGET (entry));
|
|
||||||
gtk_container_add (GTK_CONTAINER (toplevel), old_toplevel_child);
|
|
||||||
gtk_container_add (GTK_CONTAINER (old_entry_parent), GTK_WIDGET (entry));
|
|
||||||
- gtk_widget_unref (GTK_WIDGET (entry));
|
|
||||||
+ g_object_unref ((gpointer) GTK_WIDGET (entry));
|
|
||||||
|
|
||||||
container_props = g_object_get_data (G_OBJECT (entry), "container_props");
|
|
||||||
container_props_pspec = g_object_get_data (G_OBJECT (entry), "container_props_pspec");
|
|
3
gnumeric-1.7.11.tar.bz2
Normal file
3
gnumeric-1.7.11.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ee60415d849d8c4a48a16013a8925e70fcee16f934659677667cabd97e7b2516
|
||||||
|
size 13077190
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f6f7043b0e0039478858d19ed8aea6593140319a3e101da0f0003cee688f4797
|
|
||||||
size 13337850
|
|
@ -1,19 +0,0 @@
|
|||||||
--- gnumeric.desktop.in
|
|
||||||
+++ gnumeric.desktop.in
|
|
||||||
@@ -1,13 +1,13 @@
|
|
||||||
[Desktop Entry]
|
|
||||||
Encoding=UTF-8
|
|
||||||
-_Name=Gnumeric Spreadsheet
|
|
||||||
+_Name=Gnumeric
|
|
||||||
_GenericName=Spreadsheet
|
|
||||||
_Comment=Calculation, Analysis, and Visualization of Information
|
|
||||||
Exec=gnumeric %F_OR_U
|
|
||||||
-Icon=gnome-gnumeric.png
|
|
||||||
+Icon=gnome-gnumeric
|
|
||||||
Terminal=false
|
|
||||||
Type=Application
|
|
||||||
-Categories=Application;Office;Spreadsheet;Science;Math;GNOME;GTK;
|
|
||||||
+Categories=Office;Spreadsheet;Science;Math;GNOME;GTK;
|
|
||||||
StartupNotify=true
|
|
||||||
X-GNOME-Bugzilla-Bugzilla=GNOME
|
|
||||||
X-GNOME-Bugzilla-Product=Gnumeric
|
|
@ -1,3 +1,66 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 3 15:37:36 CEST 2007 - jpr@suse.de
|
||||||
|
|
||||||
|
- Update to 1.7.11
|
||||||
|
- Save and restore default paper, margins and various other print
|
||||||
|
settings
|
||||||
|
- Handle differences in page setup between sheets when printing
|
||||||
|
multiple sheets
|
||||||
|
- Fix handling of "print even if only style". (BGO #438743)
|
||||||
|
- Implement printing of row and column headers
|
||||||
|
- Fix saving of null header/footer items (BGO #449836)
|
||||||
|
- Fix TINV for large degree of freedom
|
||||||
|
- Fix check for long double support in goffice.
|
||||||
|
- Import legend and axis labels fonts from excel in charts. (BGO #437858)
|
||||||
|
- Fix performance issues in float_range_function2 and fn-tsa plugin.
|
||||||
|
- Fix drawing of large cursor while sheet scrolls. (BGO #444610)
|
||||||
|
- Fix drawing of merged cells in RTL. (BGO #442463), [442467)
|
||||||
|
- Fix editing in RTL, and for merged cells.
|
||||||
|
- Properties to store fine tuned capabilities in protected sheets.
|
||||||
|
- Read/Write of protected sheet capabilities for XLS/XLSX.
|
||||||
|
- Move the OpenPkg support code into libgsf from our xlsx plugin.
|
||||||
|
- Fix placement of validation combo in merged cells.
|
||||||
|
- Eval validation functions as arrays.
|
||||||
|
- Make Morten's pdf exporter available from gnumeric too.
|
||||||
|
- Start to implement limits to selection in protected sheets.
|
||||||
|
- Handle array expressions in SYLK importer.
|
||||||
|
- ODF import/export for hidden and RTL sheets.
|
||||||
|
- Fix redraw of spanning cells when toggling RTL.
|
||||||
|
- Work around ODF's lack of a default col/row style.
|
||||||
|
- Fix crash in t-test. (BGO #450676).
|
||||||
|
- Sylk import support for arrays, and encoding.
|
||||||
|
- Sylk export.
|
||||||
|
- Configurability for which direction <Enter> moves.
|
||||||
|
- Calc property import/export for xlsx.
|
||||||
|
- Update validation combo moving between identical styles. (BGO #453525)
|
||||||
|
- Patch the problems found by coverity.
|
||||||
|
- Fix win32 docs. (BGO #443726)
|
||||||
|
- Be more flexible about range relocation for ins/del cells. (BGO #439347)
|
||||||
|
- Make ssconvert able to export to pdf. (BGO #381965)
|
||||||
|
- Fix loading of tab text colour. (BGO #437743)
|
||||||
|
- Improve handling of foreign recently-used files. (BGO #438918)
|
||||||
|
- Improve save-on-exit dialog.
|
||||||
|
- Fix potentially confusing save-in-wrong-format-on-exit bug.
|
||||||
|
- Tentatively fix issue with recent Pango. (BGO #440514)
|
||||||
|
- Provide good mime type for recent documents.
|
||||||
|
- Fix localized-format problem in cell format dialog. (BGO #442657)
|
||||||
|
- Fix R1C1 problem. (BGO #443832)
|
||||||
|
- Fix performance problem when selecting large areas. (BGO #445617)
|
||||||
|
- Fix loading/saving of R1C1 attribute. (BGO #448714)
|
||||||
|
- Fix overflow problem when int!=long. (BGO #458158)
|
||||||
|
- Fix the inline documentation for python addins. (BGO #412804)
|
||||||
|
- Reimplement scaling
|
||||||
|
- Save orientation
|
||||||
|
- Show paper preview
|
||||||
|
- Show unit selector in print dialog
|
||||||
|
- Add margin adjustments
|
||||||
|
- New Time Series Analysis plugin.
|
||||||
|
- Fix inadvertent relocation of reference on other sheets. (BGO #433907)
|
||||||
|
- Remove upstreamed patches
|
||||||
|
- Use %suse_update_desktop_file instead of a patch
|
||||||
|
- Fix categories (#258281)
|
||||||
|
- goffice plugin is no longer built by upstream
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 10 18:24:01 CEST 2007 - maw@suse.de
|
Tue Jul 10 18:24:01 CEST 2007 - maw@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package gnumeric (Version 1.7.9)
|
# spec file for package gnumeric (Version 1.7.11)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -17,16 +17,13 @@ Group: Productivity/Office/Spreadsheets
|
|||||||
Provides: gnumeric2
|
Provides: gnumeric2
|
||||||
Obsoletes: gnumeric2
|
Obsoletes: gnumeric2
|
||||||
Summary: Spreadsheet Application
|
Summary: Spreadsheet Application
|
||||||
Version: 1.7.9
|
Version: 1.7.11
|
||||||
Release: 1
|
Release: 1
|
||||||
Source: ftp://ftp.gnome.org/pub/gnome/sources/gnumeric/1.6/gnumeric-%{version}.tar.bz2
|
Source: ftp://ftp.gnome.org/pub/gnome/sources/gnumeric/1.6/gnumeric-%{version}.tar.bz2
|
||||||
URL: http://www.gnumeric.org/
|
URL: http://www.gnumeric.org/
|
||||||
Patch: gnumeric-pro-fonts.patch
|
Patch: gnumeric-pro-fonts.patch
|
||||||
Patch1: %{name}-desktop.patch
|
|
||||||
Patch4: gnumeric-doc.patch
|
Patch4: gnumeric-doc.patch
|
||||||
Patch5: gnumeric-autobuild-error.patch
|
Patch5: gnumeric-autobuild-error.patch
|
||||||
Patch6: build-fixes.patch
|
|
||||||
Patch7: abuild.patch
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Autoreqprov: on
|
Autoreqprov: on
|
||||||
|
|
||||||
@ -155,11 +152,8 @@ Authors:
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch -p1
|
%patch -p1
|
||||||
%patch1
|
|
||||||
%patch4 -p1
|
%patch4 -p1
|
||||||
%patch5
|
%patch5
|
||||||
%patch6 -p1
|
|
||||||
%patch7 -p1
|
|
||||||
rm po/no.*
|
rm po/no.*
|
||||||
sed -i "/en_GB/s/ no / /" configure.in
|
sed -i "/en_GB/s/ no / /" configure.in
|
||||||
# FIXME: Following files are apparently compiled without RPM_OPT_FLAGS:
|
# FIXME: Following files are apparently compiled without RPM_OPT_FLAGS:
|
||||||
@ -181,12 +175,12 @@ make %{?jobs:-j%jobs}
|
|||||||
make install DESTDIR=$RPM_BUILD_ROOT
|
make install DESTDIR=$RPM_BUILD_ROOT
|
||||||
# FIXME: Build as root modifies system!
|
# FIXME: Build as root modifies system!
|
||||||
# gnumeric-1.6.3: --disable-scrollkeeper does not work properly.
|
# gnumeric-1.6.3: --disable-scrollkeeper does not work properly.
|
||||||
rm -r $RPM_BUILD_ROOT%{_localstatedir}/scrollkeeper
|
rm -rf $RPM_BUILD_ROOT%{_localstatedir}/scrollkeeper
|
||||||
# gnumeric.keys contains strange MIME types. Ignore them.
|
# gnumeric.keys contains strange MIME types. Ignore them.
|
||||||
DESTDIR=$RPM_BUILD_ROOT mime-info-to-mime || true
|
DESTDIR=$RPM_BUILD_ROOT mime-info-to-mime || true
|
||||||
# Library doesn't install headers, remove development file.
|
# Library doesn't install headers, remove development file.
|
||||||
rm $RPM_BUILD_ROOT%{_libdir}/*.*a
|
rm $RPM_BUILD_ROOT%{_libdir}/*.*a
|
||||||
%suse_update_desktop_file %{name}
|
%suse_update_desktop_file -r -N Gnumeric %{name} Office Spreadsheet GNOME GTK
|
||||||
%find_lang %{name}
|
%find_lang %{name}
|
||||||
%find_lang gnumeric-functions %{name}.lang
|
%find_lang gnumeric-functions %{name}.lang
|
||||||
%find_gconf_schemas
|
%find_gconf_schemas
|
||||||
@ -228,7 +222,6 @@ fi
|
|||||||
%{_libdir}/gnumeric/*/plugins/*/*.py
|
%{_libdir}/gnumeric/*/plugins/*/*.py
|
||||||
%{_libdir}/gnumeric/*/plugins/*/*.pl
|
%{_libdir}/gnumeric/*/plugins/*/*.pl
|
||||||
%{_libdir}/gnumeric/*/plugins/gnome-glossary/glossary-po-header
|
%{_libdir}/gnumeric/*/plugins/gnome-glossary/glossary-po-header
|
||||||
%{_libdir}/goffice/*/plugins/gnumeric
|
|
||||||
%{_datadir}/applications/*.desktop
|
%{_datadir}/applications/*.desktop
|
||||||
%{_datadir}/gnumeric
|
%{_datadir}/gnumeric
|
||||||
%{_datadir}/pixmaps/*.png
|
%{_datadir}/pixmaps/*.png
|
||||||
@ -244,6 +237,66 @@ fi
|
|||||||
%{_libdir}/pkgconfig/*.pc
|
%{_libdir}/pkgconfig/*.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Aug 03 2007 - jpr@suse.de
|
||||||
|
- Update to 1.7.11
|
||||||
|
- Save and restore default paper, margins and various other print
|
||||||
|
settings
|
||||||
|
- Handle differences in page setup between sheets when printing
|
||||||
|
multiple sheets
|
||||||
|
- Fix handling of "print even if only style". (BGO #438743)
|
||||||
|
- Implement printing of row and column headers
|
||||||
|
- Fix saving of null header/footer items (BGO #449836)
|
||||||
|
- Fix TINV for large degree of freedom
|
||||||
|
- Fix check for long double support in goffice.
|
||||||
|
- Import legend and axis labels fonts from excel in charts. (BGO #437858)
|
||||||
|
- Fix performance issues in float_range_function2 and fn-tsa plugin.
|
||||||
|
- Fix drawing of large cursor while sheet scrolls. (BGO #444610)
|
||||||
|
- Fix drawing of merged cells in RTL. (BGO #442463), [442467)
|
||||||
|
- Fix editing in RTL, and for merged cells.
|
||||||
|
- Properties to store fine tuned capabilities in protected sheets.
|
||||||
|
- Read/Write of protected sheet capabilities for XLS/XLSX.
|
||||||
|
- Move the OpenPkg support code into libgsf from our xlsx plugin.
|
||||||
|
- Fix placement of validation combo in merged cells.
|
||||||
|
- Eval validation functions as arrays.
|
||||||
|
- Make Morten's pdf exporter available from gnumeric too.
|
||||||
|
- Start to implement limits to selection in protected sheets.
|
||||||
|
- Handle array expressions in SYLK importer.
|
||||||
|
- ODF import/export for hidden and RTL sheets.
|
||||||
|
- Fix redraw of spanning cells when toggling RTL.
|
||||||
|
- Work around ODF's lack of a default col/row style.
|
||||||
|
- Fix crash in t-test. (BGO #450676).
|
||||||
|
- Sylk import support for arrays, and encoding.
|
||||||
|
- Sylk export.
|
||||||
|
- Configurability for which direction <Enter> moves.
|
||||||
|
- Calc property import/export for xlsx.
|
||||||
|
- Update validation combo moving between identical styles. (BGO #453525)
|
||||||
|
- Patch the problems found by coverity.
|
||||||
|
- Fix win32 docs. (BGO #443726)
|
||||||
|
- Be more flexible about range relocation for ins/del cells. (BGO #439347)
|
||||||
|
- Make ssconvert able to export to pdf. (BGO #381965)
|
||||||
|
- Fix loading of tab text colour. (BGO #437743)
|
||||||
|
- Improve handling of foreign recently-used files. (BGO #438918)
|
||||||
|
- Improve save-on-exit dialog.
|
||||||
|
- Fix potentially confusing save-in-wrong-format-on-exit bug.
|
||||||
|
- Tentatively fix issue with recent Pango. (BGO #440514)
|
||||||
|
- Provide good mime type for recent documents.
|
||||||
|
- Fix localized-format problem in cell format dialog. (BGO #442657)
|
||||||
|
- Fix R1C1 problem. (BGO #443832)
|
||||||
|
- Fix performance problem when selecting large areas. (BGO #445617)
|
||||||
|
- Fix loading/saving of R1C1 attribute. (BGO #448714)
|
||||||
|
- Fix overflow problem when int!=long. (BGO #458158)
|
||||||
|
- Fix the inline documentation for python addins. (BGO #412804)
|
||||||
|
- Reimplement scaling
|
||||||
|
- Save orientation
|
||||||
|
- Show paper preview
|
||||||
|
- Show unit selector in print dialog
|
||||||
|
- Add margin adjustments
|
||||||
|
- New Time Series Analysis plugin.
|
||||||
|
- Fix inadvertent relocation of reference on other sheets. (BGO #433907)
|
||||||
|
- Remove upstreamed patches
|
||||||
|
- Use %%suse_update_desktop_file instead of a patch
|
||||||
|
- Fix categories (#258281)
|
||||||
|
- goffice plugin is no longer built by upstream
|
||||||
* Tue Jul 10 2007 - maw@suse.de
|
* Tue Jul 10 2007 - maw@suse.de
|
||||||
- Update to version 1.7.9, which:
|
- Update to version 1.7.9, which:
|
||||||
- Switches from gtk print to gnome print
|
- Switches from gtk print to gnome print
|
||||||
|
Loading…
x
Reference in New Issue
Block a user