commit goffice for openSUSE:Factory
Hello community, here is the log from the commit of package goffice for openSUSE:Factory checked in at 2013-04-02 11:48:28 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/goffice (Old) and /work/SRC/openSUSE:Factory/.goffice.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "goffice", Maintainer is "gnome-maintainers@suse.de" Changes: -------- --- /work/SRC/openSUSE:Factory/goffice/goffice.changes 2013-03-15 10:35:33.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.goffice.new/goffice.changes 2013-04-02 11:48:32.000000000 +0200 @@ -1,0 +2,28 @@ +Tue Mar 19 23:11:45 UTC 2013 - dimstar@opensuse.org + +- Update to version 0.10.1: + + Don't add an extra separator at start of data labels + (bgo#691704). + + Don't crash after deleting a named smoothed curve (bgo#691796). + + Fix data label offset serialization (bgo#692305). + + Add a user interface for radar and polar plots axis + selection (bgo#692803). + + Fix go_component_build_snapshot() returned value. + (bgo#694231). + + Do not use invalid values in line plots (bgo#694232). + + Make data labels position independant on scale (bgo#694731). + + Cleanup linear algebra (bgo#691630). + + Work on new compiler warnings. + + Add efficient code for computing leverages (bgo#691913). + + Introspection fixes. + + Fix missing tooltip in color palette (bgo#695032). + + Fix missing tooltip in pixmap selector. +- Add pkgconfig(lasem-0.4) BuildRequires: enable MathML rendering. +- Add ghostscript-devel BuildRequires: we have the right version + available now. +- Add goffice-configure.patch: Fix install location of locale + files. +- Add gnome-common BuildRequires and call to gnome-autogen.sh, as + above patch touches the build system. + +------------------------------------------------------------------- Old: ---- goffice-0.10.0.tar.xz New: ---- goffice-0.10.1.tar.xz goffice-configure.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ goffice.spec ++++++ --- /var/tmp/diff_new_pack.FL08vS/_old 2013-04-02 11:48:34.000000000 +0200 +++ /var/tmp/diff_new_pack.FL08vS/_new 2013-04-02 11:48:34.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package goffice # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,17 +17,19 @@ Name: goffice -Version: 0.10.0 +Version: 0.10.1 Release: 0 -# FIXME: when ghostscript-devel >= 9.06 is in Factory, uncomment BuildRequires (needed to support embedded EPS) (2012-04-25: we have ghostscript 9.05) -# FIXME: add lasem BuildRequires when we have it in Factory Summary: GLib/GTK+ Set of Document-Centric Objects and Utilities License: GPL-2.0 or GPL-3.0 Group: System/GUI/GNOME Url: http://www.gnumeric.org/ Source: http://download.gnome.org/sources/goffice/0.10/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM goffice-configure.patch bgo#696934 dimstar@opensuse.org -- Fix LOCALEDATADIR detection +Patch0: goffice-configure.patch BuildRequires: fdupes -#BuildRequires: ghostscript-devel >= 9.06 +BuildRequires: ghostscript-devel >= 9.06 +# Needed for patch0 +BuildRequires: gnome-common BuildRequires: intltool BuildRequires: libgsf-devel >= 1.14.23 BuildRequires: translation-update-upstream @@ -38,7 +40,8 @@ BuildRequires: pkgconfig(gdk-pixbuf-2.0) >= 2.22.0 BuildRequires: pkgconfig(glib-2.0) >= 2.28.0 BuildRequires: pkgconfig(gobject-introspection-1.0) >= 1.0.0 -BuildRequires: pkgconfig(gtk+-3.0) >= 3.0.0 +BuildRequires: pkgconfig(gtk+-3.0) >= 3.2.0 +BuildRequires: pkgconfig(lasem-0.4) BuildRequires: pkgconfig(librsvg-2.0) >= 2.22.0 BuildRequires: pkgconfig(libspectre) >= 0.2.6 BuildRequires: pkgconfig(pango) >= 1.24.0 @@ -97,9 +100,12 @@ %lang_package %prep %setup -q +%patch0 -p1 translation-update-upstream %build +# Needed for patch0 +NOCONFIGURE=1 gnome-autogen.sh %configure --disable-static --with-pic --enable-introspection make %{?_smp_mflags} ++++++ goffice-0.10.0.tar.xz -> goffice-0.10.1.tar.xz ++++++ ++++ 161998 lines of diff (skipped) ++++++ goffice-configure.patch ++++++ commit fc60607fce063e8f04bcfba7378cb01ee30a6511 Author: Dominique Leuenberger <dimstar@opensuse.org> Date: Sun Mar 31 00:07:53 2013 +0100 configure: correct LOCALEDATADIR detection. With gcc compiler flags -Werror=nested-extern, the AM_GLIB_GNU_GETTEXT macros fail, resulting in all locales being installed in $prefix/lib. https://bugzilla.gnome.org/show_bug.cgi?id=696934 diff --git a/configure.ac b/configure.ac index b9ef2f4..0e3309a 100644 --- a/configure.ac +++ b/configure.ac @@ -389,6 +389,12 @@ GOFFICE_PLUGIN_LIBADD="\$(top_builddir)/goffice/libgoffice-\$(GOFFICE_API_VER).l AC_SUBST(GOFFICE_PLUGIN_LDFLAGS) AC_SUBST(GOFFICE_PLUGIN_LIBADD) +dnl ************************************************** +AC_SUBST(GETTEXT_PACKAGE, goffice-${VERSION}) +AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", + [The package name, for gettext]) +AM_GLIB_GNU_GETTEXT + dnl **************************** dnl prep the pixmap generator dnl **************************** @@ -485,12 +491,6 @@ if test $works_without_bsd_source = no ; then fi fi -dnl ************************************************** -AC_SUBST(GETTEXT_PACKAGE, goffice-${VERSION}) -AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", - [The package name, for gettext]) -AM_GLIB_GNU_GETTEXT - dnl dnl On Solaris finite() needs ieeefp.h dnl Either of these seem to signal IEEE754 math, see goffice/math/go-math.c -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de