Accepting request 747645 from GNOME:Apps
New upstream rel, yet a resub... (forwarded request 746662 from iznogood) OBS-URL: https://build.opensuse.org/request/show/747645 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gnumeric?expand=0&rev=117
This commit is contained in:
commit
14854ec7a8
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3098ada0a24effbde52b0074968a8dc03b7cf1c522e9e1b1186f48bb67a00d31
|
|
||||||
size 18262848
|
|
3
gnumeric-1.12.46.tar.xz
Normal file
3
gnumeric-1.12.46.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9fdc67377af52dfe69a7db4f533938024a75f454fc5d25ab43b8e6739be0b5e1
|
||||||
|
size 18282960
|
@ -1,3 +1,25 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Nov 8 08:09:02 UTC 2019 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||||
|
|
||||||
|
- Update to version 1.12.46:
|
||||||
|
+ Fix format import from ODF.
|
||||||
|
+ Fix charts size in XLS format.
|
||||||
|
+ Fix loading string from arrays in charts.
|
||||||
|
+ Implement wrapping of rotated text.
|
||||||
|
+ Fix over-eager guessing of dates in csv.
|
||||||
|
+ Fix Mac build problem.
|
||||||
|
+ Fix inter-process paste crash.
|
||||||
|
+ Fix problem saving cell protection to xlsx.
|
||||||
|
+ Look for python3 before python.
|
||||||
|
+ Fix SUMIF (etc) problem with blank criteria.
|
||||||
|
+ Improve editing of percentages.
|
||||||
|
+ Improve html import.
|
||||||
|
+ Command line export of graphs.
|
||||||
|
- Replace python-devel with disabled python3-devel BuildRequires,
|
||||||
|
python3 is not yet supported.
|
||||||
|
- Disable pkgconfig(gobject-introspection-1.0) BuildRequires, we
|
||||||
|
are currently not building the introspection support.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jun 7 17:53:33 UTC 2019 - Bjørn Lie <bjorn.lie@gmail.com>
|
Fri Jun 7 17:53:33 UTC 2019 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: gnumeric
|
Name: gnumeric
|
||||||
Version: 1.12.45
|
Version: 1.12.46
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Spreadsheet Application
|
Summary: Spreadsheet Application
|
||||||
License: GPL-2.0-only OR GPL-3.0-only
|
License: GPL-2.0-only OR GPL-3.0-only
|
||||||
@ -33,18 +33,20 @@ BuildRequires: itstool
|
|||||||
BuildRequires: libgsf-devel
|
BuildRequires: libgsf-devel
|
||||||
BuildRequires: libtool
|
BuildRequires: libtool
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: python-devel
|
# Disable python3-devel BR for now, not supported yet.
|
||||||
|
#BuildRequires: python3-devel
|
||||||
BuildRequires: translation-update-upstream
|
BuildRequires: translation-update-upstream
|
||||||
BuildRequires: pkgconfig(gio-2.0) >= 2.38.0
|
BuildRequires: pkgconfig(gio-2.0) >= 2.38.0
|
||||||
BuildRequires: pkgconfig(glib-2.0) >= 2.38.0
|
BuildRequires: pkgconfig(glib-2.0) >= 2.38.0
|
||||||
BuildRequires: pkgconfig(gmodule-2.0) >= 2.38.0
|
BuildRequires: pkgconfig(gmodule-2.0) >= 2.38.0
|
||||||
BuildRequires: pkgconfig(gobject-2.0) >= 2.38.0
|
BuildRequires: pkgconfig(gobject-2.0) >= 2.38.0
|
||||||
BuildRequires: pkgconfig(gobject-introspection-1.0) >= 1.0.0
|
# Introspection disabled, need to pass --enable-introspection to configure if we want it.
|
||||||
|
#BuildRequires: pkgconfig(gobject-introspection-1.0) >= 1.0.0
|
||||||
BuildRequires: pkgconfig(gthread-2.0) >= 2.38.0
|
BuildRequires: pkgconfig(gthread-2.0) >= 2.38.0
|
||||||
BuildRequires: pkgconfig(gtk+-3.0) >= 3.8.7
|
BuildRequires: pkgconfig(gtk+-3.0) >= 3.8.7
|
||||||
BuildRequires: pkgconfig(libgda-5.0) >= 5.0.0
|
BuildRequires: pkgconfig(libgda-5.0) >= 5.0.0
|
||||||
BuildRequires: pkgconfig(libgda-ui-5.0) >= 5.0.0
|
BuildRequires: pkgconfig(libgda-ui-5.0) >= 5.0.0
|
||||||
BuildRequires: pkgconfig(libgoffice-0.10) >= 0.10.43
|
BuildRequires: pkgconfig(libgoffice-0.10) >= 0.10.46
|
||||||
BuildRequires: pkgconfig(libgsf-1) >= 1.14.33
|
BuildRequires: pkgconfig(libgsf-1) >= 1.14.33
|
||||||
BuildRequires: pkgconfig(libxml-2.0) >= 2.4.12
|
BuildRequires: pkgconfig(libxml-2.0) >= 2.4.12
|
||||||
BuildRequires: pkgconfig(pango) >= 1.24.0
|
BuildRequires: pkgconfig(pango) >= 1.24.0
|
||||||
@ -144,10 +146,11 @@ done
|
|||||||
%build
|
%build
|
||||||
export CFLAGS="%{optflags} -fno-strict-aliasing"
|
export CFLAGS="%{optflags} -fno-strict-aliasing"
|
||||||
autoreconf -fiv
|
autoreconf -fiv
|
||||||
%configure\
|
%configure \
|
||||||
--disable-static
|
--disable-static \
|
||||||
# --enable-pdfdocs
|
# --enable-pdfdocs \
|
||||||
make %{?_smp_mflags}
|
%{nil}
|
||||||
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%make_install
|
||||||
@ -174,9 +177,9 @@ find %{buildroot} -type f -name "*.la" -delete -print
|
|||||||
%dir %{_libdir}/gnumeric/*/plugins/*
|
%dir %{_libdir}/gnumeric/*/plugins/*
|
||||||
%{_libdir}/gnumeric/*/plugins/*/*.so
|
%{_libdir}/gnumeric/*/plugins/*/*.so
|
||||||
%{_libdir}/gnumeric/*/plugins/*/*.xml
|
%{_libdir}/gnumeric/*/plugins/*/*.xml
|
||||||
%{_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/
|
%{_libdir}/goffice/*/plugins/gnumeric/
|
||||||
%{_datadir}/applications/gnumeric.desktop
|
%{_datadir}/applications/gnumeric.desktop
|
||||||
%{_datadir}/glib-2.0/schemas/org.gnome.gnumeric.dialogs.gschema.xml
|
%{_datadir}/glib-2.0/schemas/org.gnome.gnumeric.dialogs.gschema.xml
|
||||||
|
Loading…
Reference in New Issue
Block a user