This commit is contained in:
parent
c6b3d686c3
commit
ac0df0dfb1
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:342b365e66bd2150cf4fab7c30c91d76a40a309f563cfb91b2907fc0da1f9040
|
||||
size 15996970
|
18
gnumeric-1.9.9-bgo589105.patch
Normal file
18
gnumeric-1.9.9-bgo589105.patch
Normal file
@ -0,0 +1,18 @@
|
||||
diff --git a/src/dialogs/dialog-stf-preview.c b/src/dialogs/dialog-stf-preview.c
|
||||
index a80a25f..4152a91 100644
|
||||
--- a/src/dialogs/dialog-stf-preview.c
|
||||
+++ b/src/dialogs/dialog-stf-preview.c
|
||||
@@ -296,8 +296,8 @@ stf_preview_get_cell_renderer (RenderData_t *renderdata, int col)
|
||||
GtkCellRenderer *res = NULL;
|
||||
GtkTreeViewColumn *column = stf_preview_get_column (renderdata, col);
|
||||
if (column) {
|
||||
- GList *renderers =
|
||||
- gtk_tree_view_column_get_cell_renderers (column);
|
||||
+ GList *renderers = gtk_cell_layout_get_cells
|
||||
+ (GTK_CELL_LAYOUT(column));
|
||||
if (renderers) {
|
||||
res = renderers->data;
|
||||
g_list_free (renderers);
|
||||
--
|
||||
cgit v0.8.2
|
||||
|
3
gnumeric-1.9.9.tar.bz2
Normal file
3
gnumeric-1.9.9.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:042fac3bb233d900d837ecd41f683954911330a2b1984a082f259a8423ebe20a
|
||||
size 16028397
|
@ -1,3 +1,29 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 27 18:15:22 CEST 2009 - dominique-obs@leuenberger.net
|
||||
|
||||
- Add gnumeric-1.9.9-bgo589105.patch. Patch taken from upstream
|
||||
git, commit id=885d4f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 22 18:01:52 CEST 2009 - dominique-obs@leuenberger.net
|
||||
|
||||
- Update to version 1.9.9:
|
||||
+ Fix scrolling via mouse wheels, bgo#533051
|
||||
+ Add superscipt and subscript buttons, bgo#583327
|
||||
+ New FOURIER function, Improve Fourier transform tool
|
||||
+ Fix html export, bgo#586028
|
||||
+ Fix array editing criticals, bgo#584746
|
||||
+ Fix style problems with operator.xls, bgo#585178
|
||||
+ Implement new functions COT and ACOT, bgo#585270
|
||||
+ Fix GCD, bgo#585271
|
||||
+ Parse x^y^z as (x^y)^z from ODF files, bgo#585277
|
||||
+ Fix text import problem, bgo#135523
|
||||
+ Implement new-from-template, bgo#303657
|
||||
+ Implement new functions COTH and ACOTH, bgo#586170
|
||||
+ Fix tsa crashes. bgo#58619, bgo#586427
|
||||
+ Fix IF problems with empties and arrays, bgo#586218, bgo#586312
|
||||
+ GOString start of richtext and phonetic support.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun May 24 14:06:26 CEST 2009 - vuntz@novell.com
|
||||
|
||||
|
444
gnumeric.spec
444
gnumeric.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package gnumeric (Version 1.9.8)
|
||||
# spec file for package gnumeric (Version 1.9.9)
|
||||
#
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -36,9 +36,11 @@ Group: Productivity/Office/Spreadsheets
|
||||
Provides: gnumeric2
|
||||
Obsoletes: gnumeric2
|
||||
Summary: Spreadsheet Application
|
||||
Version: 1.9.8
|
||||
Version: 1.9.9
|
||||
Release: 1
|
||||
Source: ftp://ftp.gnome.org/pub/gnome/sources/gnumeric/1.8/gnumeric-%{version}.tar.bz2
|
||||
# PATCH-FIX-UPSTREAM gnumeric-1.9.9-bgo589105.patch bgo#589108 dominique-obs@leuenberger.net -- do not use depreaced gtk_tree_view_column_get_cell_renderers
|
||||
Patch0: gnumeric-1.9.9-bgo589105.patch
|
||||
Url: http://www.gnumeric.org/
|
||||
Requires: %{name}-lang = %{version}
|
||||
Recommends: liberation-fonts ghostscript-fonts-std
|
||||
@ -171,6 +173,7 @@ Authors:
|
||||
%lang_package
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1
|
||||
|
||||
%build
|
||||
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
|
||||
@ -207,6 +210,7 @@ rm -rf $RPM_BUILD_ROOT
|
||||
if test -x usr/bin/update-mime-database ; then
|
||||
usr/bin/update-mime-database usr/share/mime >/dev/null
|
||||
fi
|
||||
|
||||
%posttrans -f %{name}.schemas_posttrans
|
||||
|
||||
%preun -f %{name}.schemas_preun
|
||||
@ -254,439 +258,3 @@ fi
|
||||
%{_libdir}/gnumeric/*/include
|
||||
|
||||
%changelog
|
||||
* Sun May 24 2009 vuntz@novell.com
|
||||
- Update to version 1.9.8:
|
||||
+ Save and load text formatting of comments and of sheet object
|
||||
labels [bgo#580979, bgo#580838]
|
||||
+ Lots of improvements to the ODF exporter [bgo#581937,
|
||||
bgo#553508, bgo#582903]
|
||||
+ Some improvements to the ODF importer [bgo#581953]
|
||||
+ Some improvements to the xlsx exporter [bgo#569862, bgo#581896]
|
||||
+ Write some character based formats to HTML files. [bgo#582118]
|
||||
+ Closer to a turnkey win32 build.
|
||||
+ Optimize styles on load.
|
||||
+ Prune fn-lookup caches in case someone is being silly.
|
||||
+ Plug leak in HTML paste.
|
||||
+ Respect the sheet size prefs for new blank workbooks.
|
||||
+ Cache large ranges, possibly sorted.
|
||||
+ Add progress display for OO import.
|
||||
+ Improve ssindex' coverage.
|
||||
+ Make it possible to have horizontal widgets too. [bgo#166487]
|
||||
+ Fix sheet-object paste crash. [bgo#490479]
|
||||
+ Fix critical in format dialog. [bgo#582890]
|
||||
+ Turn WorkbookView into a more proper GObject.
|
||||
+ Hide scrollbars as requested. [bgo#583005]
|
||||
+ Fix date conventions in graphs.
|
||||
+ Improve GUI for date/time axes. [bgo#574681]
|
||||
+ Fix R1C1 issues.
|
||||
+ Extend ssconvert to also merge multiple sheets. [bgo#581616]
|
||||
* Thu May 07 2009 vuntz@novell.com
|
||||
- Update to version 1.9.7:
|
||||
+ Fix some divergence between character weight in the label
|
||||
properties dialog and the label itself.
|
||||
+ Add interface to format cell comments
|
||||
+ Fix printing of sheet objects whose text intersects with
|
||||
markup. [bgo#581125]
|
||||
+ Load meta data from gnumeric files [bgo#578607]
|
||||
+ Do not crash in rendr_value for NULL values. [bgo#581120]
|
||||
+ XLSX start reading external refs.
|
||||
+ XL2003-XML enable the use of builtin formats, and drop '.sml'
|
||||
kludge.
|
||||
+ Add pref entry to set default value of autosave.
|
||||
+ Fix xls save problem with sheets that are too big for the
|
||||
format.
|
||||
+ Fix global-name .gnumeric warning. [bgo#580227]
|
||||
+ Fix tooltip positioning. [bgo#580358]
|
||||
+ Fix xlst export problem. [bgo#580360]
|
||||
+ Fix size of sheets loaded from Applix files.
|
||||
+ Fix problem with global names shadowed by sheet names.
|
||||
[bgo#306686]
|
||||
+ Fix relocation problem with expressions using names.
|
||||
[bgo#552749]
|
||||
+ Fix fullscreen toolbar issues. [bgo#574603]
|
||||
+ Fix various R1C1 bugs.
|
||||
+ Fix precision for xml saving inside graphs.
|
||||
+ Fix long-sheet-name GUI issue. [bgo#580837]
|
||||
+ Fix dependency problem with names. [bgo#581117]
|
||||
+ Fix style-allocation screwup.
|
||||
+ Fix xls export performance problem. [bgo#581378]
|
||||
+ Fix xls export issue that made files readable by Gnumeric only.
|
||||
+ Fix autofill crash. [bgo#581589]
|
||||
+ Fix gnumeric crash exporting polygons. [bgo#581394]
|
||||
- Drop gnumeric-xls-gnumeric-only.patch: fixed upstream.
|
||||
* Wed May 06 2009 vuntz@novell.com
|
||||
- Add gnumeric-xls-gnumeric-only.patch to fix an issue where xls
|
||||
files saved by gnumeric were readable by gnumeric only.
|
||||
* Mon Apr 27 2009 vuntz@novell.com
|
||||
- Update to version 1.9.6:
|
||||
+ Show sheet sizes in manage sheet dialog
|
||||
+ Write metadata from the property dialog to the files
|
||||
+ Complete the list sheet object configuration dialog
|
||||
[bgo#578557]
|
||||
+ Make all sheet object configurations undoable [bgo#114098]
|
||||
+ Quieten GTK warning [bgo#579152]
|
||||
+ Print text in sheet object label [bgo#144787]
|
||||
+ Implement editing of a sheet object label
|
||||
+ Include "italic", "strikethrough" and "bold" buttons in the
|
||||
properties dialog for sheet object labels
|
||||
+ Variable sheet sizes.
|
||||
+ Fixed libspredsheet.pc. [bgo#575390]
|
||||
+ Improve xml probing for 2003-spreadsheetml.
|
||||
+ More 2003-spreadsheetml formats.
|
||||
+ New calendar template
|
||||
+ Handle elapsed time formats better on text export.
|
||||
+ Plug leak.
|
||||
+ Fix mps loading crash. [bgo#577138]
|
||||
+ Improve XIRR a bit.
|
||||
+ Fix Applix loading crash. [bgo#577145]
|
||||
+ Fix Lotus loading crash. [bgo#577156]
|
||||
+ Fix XLS loading crashes. [bgo#577205, bgo#577208, bgo#577259,
|
||||
bgo#577260, bgo#577348, bgo#577351, bgo#577399, bgo#577400,
|
||||
bgo#577503, bgo#577504]
|
||||
+ Add sorted sheet list to tab menu.
|
||||
+ Fix criticals during Lotus load.
|
||||
+ Clean up Sheet object.
|
||||
+ Clean up str.h usage.
|
||||
+ Load csv and txt files into sheets as big as needed. [Part of
|
||||
bgo#168875]
|
||||
+ Implement sheet resize.
|
||||
+ Fix validation problem. [bgo#580157]
|
||||
+ Move to libgda4.
|
||||
- Change libgnomedb3-devel BuildRequires to libgnomedb-devel to use
|
||||
libgda4.
|
||||
* Mon Mar 23 2009 vuntz@novell.com
|
||||
- Update to version 1.9.5:
|
||||
+ Fix style critical on latex export [bgo#574125]
|
||||
+ Always print the whole printarea even if it has no content or
|
||||
style. [bgo#554116] [bgo#572818]
|
||||
+ Fix translation of argument names for empty names.
|
||||
+ Don't switch sheets when widgets are adjusted. [bgo#574734]
|
||||
+ Fix printing of rotated text (negative angles or non-default
|
||||
alignment). [bgo#574813]
|
||||
+ Remove crash potential for various dialogs with multiple views.
|
||||
[bgo#364291]
|
||||
+ Fix some strings. [bgo#575360]
|
||||
+ Make gconf use independent from the with-gnome option.
|
||||
[bgo#574813]
|
||||
+ Fixed null pointer crash inoo_plot_area(). [bgo#575403]
|
||||
+ Work around semantic changes in gtk-2.16.
|
||||
+ rename sr@Latn -> sr@latin
|
||||
+ Fix multihead issues with cell comments.
|
||||
+ Fix multihead issue with sheet reordering.
|
||||
+ Fix multihead issues with tooltips.
|
||||
+ Fix PFACTOR to handle huge factors.
|
||||
+ Fix problem with dialogs not showing up in fullscreen mode.
|
||||
[bgo#574602]
|
||||
+ Fix desktop file to always specify that we take URIs.
|
||||
+ Fix sheet-ordering by dragging. [bgo#574763]
|
||||
+ Fix potential crash for cell comment dialog with multiple
|
||||
views. [Part of #364291]
|
||||
+ Fix lotus importer crash. [bgo#575190]
|
||||
+ Improve entry of date for locales not using slashes.
|
||||
[Part of bgo#33229]
|
||||
+ Make date edit use the date separator of the locale.
|
||||
[Part of bgo#33229]
|
||||
+ Fix xls writing crash. [Part of #575318]
|
||||
+ Fix criticals in xls export for comments without author.
|
||||
+ Fix crash while loading broken xls. [bgo#575393]
|
||||
+ Fix string problem with broken xls. [bgo#575452]
|
||||
+ Improve date entry for locales that end abbreviated month names
|
||||
with punctuation.
|
||||
+ Fix ODS crashes. [bgo#575600] [bgo#575843] [bgo#575981]
|
||||
+ Use goffice magic formats for certain date and time formats so
|
||||
we can persist them in .gnumeric.
|
||||
+ Fix setting of radio button objects' text.
|
||||
+ Implement OOO probing. [bgo#574381]
|
||||
- Stop using --with-gnome: it's now possible to use gconf without
|
||||
this. Also remove libgnomeui-devel BuildRequires.
|
||||
- Add gconf2-devel BuildRequires.
|
||||
- Remove sr@latin hack: fixed upstream.
|
||||
- Drop gnumeric-doc.patch: not needed anymore.
|
||||
- Add back -fno-strict-aliasing to CFLAGS. There's a warning about
|
||||
it.
|
||||
* Tue Mar 10 2009 vuntz@novell.com
|
||||
- Use --with-gnome because we really want gnumeric to use gconf.
|
||||
- Add libgnomeui-devel BuildRequires.
|
||||
* Sat Feb 28 2009 vuntz@novell.com
|
||||
- Update to version 1.9.4:
|
||||
+ Many changes. See NEWS for the complete details. The following
|
||||
changes are worth mentioning:
|
||||
- Work around vulnerability in Python. [bgo#569648]
|
||||
- Make non-gnome the default. [bgo#558840]
|
||||
- Remove BuildRequires: docbook-utils, gnutls-devel,
|
||||
gtksourceview18-devel, indent, libgnomeprintui-devel, libidl,
|
||||
libtiff-devel, libwnck-devel, pcre-devel, perl-XML-Parser,
|
||||
python-gtk-devel.
|
||||
- Change BuildRequires: libgnomedb-devel to libgnomedb3-devel.
|
||||
- Add BuildRequires: python-gobject2-devel.
|
||||
- Remove unneeded calls to autoreconf and intltoolize.
|
||||
- Remove -fno-strict-aliasing from CFLAGS.
|
||||
- Pass --disable-static to configure.
|
||||
- Use makeinstall.
|
||||
- Clean removal of .la files.
|
||||
* Sat Jan 31 2009 vuntz@novell.com
|
||||
- Use sr@latin instead of sr@Latn.
|
||||
* Fri Oct 24 2008 maw@suse.de
|
||||
- Update to version 1.9.3:
|
||||
+ Many changes and fixes; see the file NEWS for a full account.
|
||||
* Thu Sep 04 2008 mboman@novell.com
|
||||
- Update to version 1.9.2
|
||||
+ To many fixes and changes to list. Please see NEWS for full details.
|
||||
- Removed gnumeric-autobuild-error.patch. Fixed upstream.
|
||||
* Wed Apr 30 2008 vuntz@suse.de
|
||||
- Stop recommending agfa-fonts, after quick discussion on the
|
||||
mailing list. Let's stay with free fonts if possible :-)
|
||||
* Tue Apr 29 2008 vuntz@suse.de
|
||||
- Drop gnumeric-pro-fonts.patch. We don't depend on agfa-fonts
|
||||
anymore, so we can't use them as a default.
|
||||
* Thu Apr 24 2008 maw@suse.de
|
||||
- Only recommend agfa-fonts; additionally Recommend
|
||||
liberation-fonts and ghostscript-fonts-std
|
||||
- Clean up the -devel subpackage's requires.
|
||||
* Wed Apr 02 2008 sbrabec@suse.cz
|
||||
- Updated to version 1.8.2:
|
||||
* many bug fixes
|
||||
* memory leak fixes
|
||||
* several new features, see NEWS for details
|
||||
* Thu Mar 06 2008 maw@suse.de
|
||||
- Fix the build when against newer versions of intltool.
|
||||
* Thu Nov 08 2007 mauro@suse.de
|
||||
- Fixed gcc 4.3 issues for beta.
|
||||
* Thu Oct 11 2007 sbrabec@suse.cz
|
||||
- Removed bogus dependency on mDNSResponder.
|
||||
* Wed Aug 08 2007 maw@suse.de
|
||||
- Use %%fdupes
|
||||
- Split off a -lang subpackage
|
||||
- s#%%run_ldconfig#/sbin/ldconfig/ in %%post and %%postun.
|
||||
* 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
|
||||
- Update to version 1.7.9, which:
|
||||
- Switches from gtk print to gnome print
|
||||
- Imports and exports inline arrays in ODF
|
||||
- Exports cell comments to xls
|
||||
- Fixes the following bugs against bugzilla.gnome.org: #415007,
|
||||
[#414815], #308562, #417632, #115112, #67453], #418868, #423603,
|
||||
[#421678], #427019, and #152584.
|
||||
* Thu Jun 07 2007 sbrabec@suse.cz
|
||||
- Fixed deskop file translation.
|
||||
- Fixed devel dependencies.
|
||||
- Removed invalid desktop Category "Application" (#254654).
|
||||
* Fri May 25 2007 ro@suse.de
|
||||
- branch off devel package
|
||||
* Wed Mar 07 2007 jhargadon@suse.de
|
||||
- update to version 1.7.6
|
||||
- Implement sax import of sheet objects.
|
||||
- Implement List and Combo objects.
|
||||
- XLSX support for import and export of autofilters
|
||||
- Improve number formatting
|
||||
- Put the style feedback onto an idle handle to improve cursor
|
||||
responsiveness.
|
||||
- Improve autofill/validation combos.
|
||||
- Add automatic test framework
|
||||
- Rewrite expression relocation logic.
|
||||
- Add accelerator (Alt-=) for auto-sum.
|
||||
- Make paytype handler more flexible.
|
||||
- Add accelerator for group/ungroup and inc/dec indent
|
||||
- Make clipboard faster
|
||||
- Add more conditional format types
|
||||
- New look for col/row headers
|
||||
- many bug fixes
|
||||
* Wed Jan 17 2007 sbrabec@suse.cz
|
||||
- Removed obsolete scrollkeeper directory (#230786).
|
||||
* Thu Jan 04 2007 sbrabec@suse.cz
|
||||
- Prefix changed to /usr.
|
||||
- Spec file cleanup.
|
||||
* Sat Nov 18 2006 stbinner@suse.de
|
||||
- fix Name entry of .desktop file (remove GenericName dupe part)
|
||||
* Fri Oct 27 2006 jhargadon@suse.de
|
||||
- added a symlink for the help files in the specfile for bug
|
||||
[#142827]
|
||||
* Wed Sep 27 2006 jhargadon@suse.de
|
||||
- update to version 1.6.3
|
||||
- Fix exporting of scaled axes. [#332012]
|
||||
- Backport duping sheet props when sheet is duped
|
||||
- Adding an autofilter dirties the sheet
|
||||
- Fix xls import of pie outlines
|
||||
- Implement xml and xls saving/loading of "protected" attribute
|
||||
- many bug fixes
|
||||
* Thu Aug 31 2006 gekker@suse.de
|
||||
- Remove unnecessary gal2-devel from BuildRequires
|
||||
* Wed Aug 16 2006 cthiel@suse.de
|
||||
- buildrequire python-gtk-devel instead of python-gtk
|
||||
* Wed Aug 16 2006 ro@suse.de
|
||||
- added python-gobject2-devel to BuildRequires
|
||||
* Sun Feb 05 2006 jpr@suse.de
|
||||
- run ldconfig in post/postun for libspreadsheet
|
||||
* Wed Jan 25 2006 mls@suse.de
|
||||
- converted neededforbuild to BuildRequires
|
||||
* Tue Dec 20 2005 ro@suse.de
|
||||
- get translations for gnumeric-functions as well
|
||||
* Wed Nov 16 2005 sbrabec@suse.cz
|
||||
- Updated to version 1.6.1.
|
||||
* Fri Nov 04 2005 sbrabec@suse.cz
|
||||
- Updated to version 1.6.0.
|
||||
* Mon Sep 12 2005 gekker@suse.de
|
||||
- Patch version 1.4.3 to work with libgsf-1.12.1 (116579)
|
||||
- This patch supercedes the fix-build patch
|
||||
* Sun Aug 07 2005 adrian@suse.de
|
||||
- fix build
|
||||
* Thu Jul 07 2005 schwab@suse.de
|
||||
- Fix #nfb.
|
||||
- Fix uninitialized variable.
|
||||
* Mon Mar 14 2005 jody@suse.de
|
||||
- upstream 1.4.3
|
||||
- enable ssindex
|
||||
* Thu Feb 17 2005 ke@suse.de
|
||||
- Fix gnumeric.xml and included files; [# 50960].
|
||||
- Provide a link to /opt/gnome/share/gnumeric/1.4.2/doc to make the
|
||||
documentation files visible to the help system (yelp) - probably
|
||||
superfluous; [# 50960].
|
||||
* Tue Feb 01 2005 sbrabec@suse.cz
|
||||
- Fixed packlist path.
|
||||
* Mon Jan 31 2005 sbrabec@suse.cz
|
||||
- Fixed missing declaration.
|
||||
- Fixed perl support detection.
|
||||
* Thu Jan 20 2005 sbrabec@suse.cz
|
||||
- Updated to version 1.4.2.
|
||||
* Wed Dec 15 2004 hvogel@suse.de
|
||||
- fix desktop file
|
||||
- there is nothing in libexecdir so dont package it
|
||||
* Tue Dec 14 2004 jody@suse.de
|
||||
- Add scrollkeeper as a build req and handle the fallout
|
||||
* Fri Dec 10 2004 jody@suse.de
|
||||
- Updated to 1.4.1
|
||||
- Include ssindex for beagle
|
||||
- rich text
|
||||
- xls chart export
|
||||
- more accuracy
|
||||
- full array expression support
|
||||
* Wed Nov 24 2004 ro@suse.de
|
||||
- make specfile rpm-3 compliant (quote non-numeric if arguments)
|
||||
* Tue Nov 02 2004 ro@suse.de
|
||||
- locale rename: no -> nb
|
||||
* Tue Oct 12 2004 sbrabec@suse.cz
|
||||
- Fixed libexecdir for bi-arch (#47050).
|
||||
* Tue Sep 07 2004 sbrabec@suse.cz
|
||||
- Generated shared mime info.
|
||||
* Fri Jun 25 2004 jody@suse.de
|
||||
- Updated to 1.2.13
|
||||
* Fri May 07 2004 clahey@suse.de
|
||||
- Updated to version 1.2.12.
|
||||
- Added patch gnumeric-pro-fonts.patch.
|
||||
* Thu Mar 18 2004 sbrabec@suse.cz
|
||||
- Updated to version 1.2.8 (#36348, #32861).
|
||||
* Mon Mar 15 2004 sbrabec@suse.cz
|
||||
- FHS 2.3 fix (mandir, infodir, #35821).
|
||||
* Wed Mar 10 2004 sbrabec@suse.cz
|
||||
- Fixed gconf schemas installation (#33114).
|
||||
- Fixed %%doc attributes (#33163).
|
||||
- Use %%find_lang.
|
||||
* Mon Mar 08 2004 hhetter@suse.de
|
||||
- use gdk-pixbuf-query-loaders-64 on 64bit architectures
|
||||
* Fri Feb 20 2004 sbrabec@suse.cz
|
||||
- Package renamed to gnumeric.
|
||||
* Thu Feb 12 2004 hhetter@suse.de
|
||||
- gconf schema (de-)installation in %%post and %%postun
|
||||
* Wed Feb 11 2004 hhetter@suse.de
|
||||
- updated to version 1.2.6
|
||||
* Tue Jan 20 2004 hhetter@suse.de
|
||||
- updated to version 1.2.5
|
||||
* Tue Oct 28 2003 ro@suse.de
|
||||
- added gtksourceview to neededforbuild
|
||||
* Mon Oct 27 2003 sbrabec@suse.cz
|
||||
- Updated to version 1.2.1.
|
||||
- Do not obsolete Guppi.
|
||||
* Thu Oct 16 2003 ro@suse.de
|
||||
- re-enable python stuff on x86_64 and ppc64 (seems fixed)
|
||||
* Thu Oct 16 2003 ro@suse.de
|
||||
- fix "file listed twice"
|
||||
* Mon Sep 22 2003 sbrabec@suse.cz
|
||||
- Obsolete guppi1.
|
||||
* Tue Sep 16 2003 sbrabec@suse.cz
|
||||
- Provide and obsolete gnumeric (bug #30989).
|
||||
* Thu Sep 04 2003 ro@suse.de
|
||||
- python stuff can't build on lib64 (strange enough that linking
|
||||
a plugin with static libpython works elsewhere ...)
|
||||
so remove these files from filelist on x86_64 and ppc64
|
||||
* Tue Aug 26 2003 sbrabec@suse.cz
|
||||
- Re-enabled python support.
|
||||
* Tue Aug 26 2003 ro@suse.de
|
||||
- update filelist
|
||||
* Mon Aug 25 2003 sbrabec@suse.cz
|
||||
- Updated to version 1.1.20.
|
||||
* Mon Aug 18 2003 sbrabec@suse.cz
|
||||
- Use libgda instead of libgda2 (package was renamed).
|
||||
* Thu Aug 07 2003 sbrabec@suse.cz
|
||||
- Not use globbing for schemas in %%files.
|
||||
* Tue Jul 29 2003 hhetter@suse.de
|
||||
- disable python support
|
||||
* Thu Jul 24 2003 hhetter@suse.de
|
||||
- build with libtiff
|
||||
* Mon Jul 14 2003 sbrabec@suse.cz
|
||||
- GNOME prefix change to /opt/gnome.
|
||||
* Tue Jul 01 2003 ro@suse.de
|
||||
- updated filelist
|
||||
- added directories
|
||||
* Mon Jun 09 2003 sbrabec@suse.cz
|
||||
- Updated to version 1.1.19.
|
||||
* Wed Jun 04 2003 sbrabec@suse.cz
|
||||
- Initial SuSE version of GNOME2 port.
|
||||
|
Loading…
Reference in New Issue
Block a user