public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-office/gnumeric: ChangeLog gnumeric-1.8.4-r1.ebuild
@ 2009-03-09 22:45 Gilles Dartiguelongue (eva)
  0 siblings, 0 replies; 10+ messages in thread
From: Gilles Dartiguelongue (eva) @ 2009-03-09 22:45 UTC (permalink / raw
  To: gentoo-commits

eva         09/03/09 22:45:32

  Modified:             ChangeLog
  Added:                gnumeric-1.8.4-r1.ebuild
  Log:
  Bump to 1.8.4-r1. Fix for CVE-2009-0318, bug #257012.
  (Portage version: 2.2_rc23/cvs/Linux x86_64)

Revision  Changes    Path
1.178                app-office/gnumeric/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.178&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.178&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?r1=1.177&r2=1.178

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v
retrieving revision 1.177
retrieving revision 1.178
diff -u -r1.177 -r1.178
--- ChangeLog	26 Jan 2009 21:54:24 -0000	1.177
+++ ChangeLog	9 Mar 2009 22:45:32 -0000	1.178
@@ -1,6 +1,12 @@
 # ChangeLog for app-office/gnumeric
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.177 2009/01/26 21:54:24 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.178 2009/03/09 22:45:32 eva Exp $
+
+*gnumeric-1.8.4-r1 (09 Mar 2009)
+
+  09 Mar 2009; Gilles Dartiguelongue <eva@gentoo.org>
+  +files/gnumeric-1.8.4-CVE-2009-0318.patch, +gnumeric-1.8.4-r1.ebuild:
+  Bump to 1.8.4-r1. Fix for CVE-2009-0318, bug #257012.
 
 *gnumeric-1.8.4 (26 Jan 2009)
 



1.1                  app-office/gnumeric/gnumeric-1.8.4-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.1&content-type=text/plain

Index: gnumeric-1.8.4-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.1 2009/03/09 22:45:32 eva Exp $

EAPI="2"

inherit gnome2 flag-o-matic python

DESCRIPTION="Gnumeric, the GNOME Spreadsheet"
HOMEPAGE="http://www.gnome.org/projects/gnumeric/"
LICENSE="GPL-2"

SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"

IUSE="gnome perl python"
# bonobo guile libgda mono (experimental)

# lots of missing files, wait for next release
RESTRICT="test"

RDEPEND="sys-libs/zlib
	app-arch/bzip2
	>=dev-libs/glib-2.6
	>=gnome-extra/libgsf-1.14.6[gnome]
	>=x11-libs/goffice-0.6.3
	>=dev-libs/libxml2-2.4.12
	>=x11-libs/pango-1.8.1

	>=x11-libs/gtk+-2.10
	x11-libs/cairo[svg]
	>=gnome-base/libglade-2.3.6
	>=media-libs/libart_lgpl-2.3.11

	gnome? (
		>=gnome-base/gconf-2
		>=gnome-base/libgnome-2
		>=gnome-base/libgnomeui-2
		>=gnome-base/libbonobo-2.2
		>=gnome-base/libbonoboui-2.2 )
	perl? ( dev-lang/perl )
	python? (
		>=dev-lang/python-2
		>=dev-python/pygtk-2 )"
	# libgda? (
	#	>=gnome-extra/libgda-3.1.1
	#	>=gnome-extra/libgnomedb-3.0.1 )

DEPEND="${RDEPEND}
	>=dev-util/intltool-0.29
	>=dev-util/pkgconfig-0.18
	app-text/scrollkeeper"

DOCS="AUTHORS BEVERAGES BUGS ChangeLog HACKING MAINTAINERS NEWS README TODO"

pkg_setup() {
	local will_die=false

	G2CONF="${G2CONF}
		--enable-ssindex
		--enable-static
		--without-gda
		--without-guile
		--without-mono
		$(use_with perl)
		$(use_with python)
		$(use_with gnome)"

	# gcc bug (http://bugs.gnome.org/show_bug.cgi?id=128834)
	replace-flags "-Os" "-O2"
}

src_prepare() {
	# Fix for CVE-2009-0318, bug #257012
	epatch "${FILESDIR}/${P}-CVE-2009-0318.patch"
}

src_install() {
	gnome2_src_install

	# make gnumeric find its help
	dosym \
		/usr/share/gnome/help/gnumeric \
		/usr/share/${PN}/${PV}/doc
}

pkg_postinst() {
	gnome2_pkg_postinst
	python_need_rebuild
}






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-office/gnumeric: ChangeLog gnumeric-1.8.4-r1.ebuild
@ 2009-03-10 13:47 Gilles Dartiguelongue (eva)
  0 siblings, 0 replies; 10+ messages in thread
From: Gilles Dartiguelongue (eva) @ 2009-03-10 13:47 UTC (permalink / raw
  To: gentoo-commits

eva         09/03/10 13:47:48

  Modified:             ChangeLog gnumeric-1.8.4-r1.ebuild
  Log:
  Fix incorrect USE dependency on libgsf, bug #261971.
  (Portage version: 2.2_rc23/cvs/Linux i686)

Revision  Changes    Path
1.179                app-office/gnumeric/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.179&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.179&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?r1=1.178&r2=1.179

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v
retrieving revision 1.178
retrieving revision 1.179
diff -u -r1.178 -r1.179
--- ChangeLog	9 Mar 2009 22:45:32 -0000	1.178
+++ ChangeLog	10 Mar 2009 13:47:48 -0000	1.179
@@ -1,6 +1,10 @@
 # ChangeLog for app-office/gnumeric
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.178 2009/03/09 22:45:32 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.179 2009/03/10 13:47:48 eva Exp $
+
+  10 Mar 2009; Gilles Dartiguelongue <eva@gentoo.org>
+  gnumeric-1.8.4-r1.ebuild:
+  Fix incorrect USE dependency on libgsf, bug #261971.
 
 *gnumeric-1.8.4-r1 (09 Mar 2009)
 



1.2                  app-office/gnumeric/gnumeric-1.8.4-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?r1=1.1&r2=1.2

Index: gnumeric-1.8.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gnumeric-1.8.4-r1.ebuild	9 Mar 2009 22:45:32 -0000	1.1
+++ gnumeric-1.8.4-r1.ebuild	10 Mar 2009 13:47:48 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.1 2009/03/09 22:45:32 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.2 2009/03/10 13:47:48 eva Exp $
 
 EAPI="2"
 
@@ -22,7 +22,7 @@
 RDEPEND="sys-libs/zlib
 	app-arch/bzip2
 	>=dev-libs/glib-2.6
-	>=gnome-extra/libgsf-1.14.6[gnome]
+	>=gnome-extra/libgsf-1.14.6[gnome=]
 	>=x11-libs/goffice-0.6.3
 	>=dev-libs/libxml2-2.4.12
 	>=x11-libs/pango-1.8.1






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-office/gnumeric: ChangeLog gnumeric-1.8.4-r1.ebuild
@ 2009-03-10 15:58 Ferris McCormick (fmccor)
  0 siblings, 0 replies; 10+ messages in thread
From: Ferris McCormick (fmccor) @ 2009-03-10 15:58 UTC (permalink / raw
  To: gentoo-commits

fmccor      09/03/10 15:58:20

  Modified:             ChangeLog gnumeric-1.8.4-r1.ebuild
  Log:
  Sparc stable, security Bug #257012.
  (Portage version: 2.2_rc24/cvs/Linux x86_64)

Revision  Changes    Path
1.180                app-office/gnumeric/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.180&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.180&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?r1=1.179&r2=1.180

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v
retrieving revision 1.179
retrieving revision 1.180
diff -u -r1.179 -r1.180
--- ChangeLog	10 Mar 2009 13:47:48 -0000	1.179
+++ ChangeLog	10 Mar 2009 15:58:20 -0000	1.180
@@ -1,6 +1,10 @@
 # ChangeLog for app-office/gnumeric
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.179 2009/03/10 13:47:48 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.180 2009/03/10 15:58:20 fmccor Exp $
+
+  10 Mar 2009; Ferris McCormick <fmccor@gentoo.org>
+  gnumeric-1.8.4-r1.ebuild:
+  Sparc stable, security Bug #257012.
 
   10 Mar 2009; Gilles Dartiguelongue <eva@gentoo.org>
   gnumeric-1.8.4-r1.ebuild:



1.3                  app-office/gnumeric/gnumeric-1.8.4-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?r1=1.2&r2=1.3

Index: gnumeric-1.8.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gnumeric-1.8.4-r1.ebuild	10 Mar 2009 13:47:48 -0000	1.2
+++ gnumeric-1.8.4-r1.ebuild	10 Mar 2009 15:58:20 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.2 2009/03/10 13:47:48 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.3 2009/03/10 15:58:20 fmccor Exp $
 
 EAPI="2"
 
@@ -11,7 +11,7 @@
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86 ~x86-fbsd"
 
 IUSE="gnome perl python"
 # bonobo guile libgda mono (experimental)






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-office/gnumeric: ChangeLog gnumeric-1.8.4-r1.ebuild
@ 2009-03-11 14:59 Brent Baude (ranger)
  0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2009-03-11 14:59 UTC (permalink / raw
  To: gentoo-commits

ranger      09/03/11 14:59:28

  Modified:             ChangeLog gnumeric-1.8.4-r1.ebuild
  Log:
  Marking gnumeric-1.8.4-r1 ppc64 for bug 257012
  (Portage version: 2.1.6.7/cvs/Linux ppc64)

Revision  Changes    Path
1.181                app-office/gnumeric/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.181&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.181&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?r1=1.180&r2=1.181

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v
retrieving revision 1.180
retrieving revision 1.181
diff -u -r1.180 -r1.181
--- ChangeLog	10 Mar 2009 15:58:20 -0000	1.180
+++ ChangeLog	11 Mar 2009 14:59:28 -0000	1.181
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/gnumeric
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.180 2009/03/10 15:58:20 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.181 2009/03/11 14:59:28 ranger Exp $
+
+  11 Mar 2009; Brent Baude <ranger@gentoo.org> gnumeric-1.8.4-r1.ebuild:
+  Marking gnumeric-1.8.4-r1 ppc64 for bug 257012
 
   10 Mar 2009; Ferris McCormick <fmccor@gentoo.org>
   gnumeric-1.8.4-r1.ebuild:



1.4                  app-office/gnumeric/gnumeric-1.8.4-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?r1=1.3&r2=1.4

Index: gnumeric-1.8.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gnumeric-1.8.4-r1.ebuild	10 Mar 2009 15:58:20 -0000	1.3
+++ gnumeric-1.8.4-r1.ebuild	11 Mar 2009 14:59:28 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.3 2009/03/10 15:58:20 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.4 2009/03/11 14:59:28 ranger Exp $
 
 EAPI="2"
 
@@ -11,7 +11,7 @@
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ppc64 sparc ~x86 ~x86-fbsd"
 
 IUSE="gnome perl python"
 # bonobo guile libgda mono (experimental)






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-office/gnumeric: ChangeLog gnumeric-1.8.4-r1.ebuild
@ 2009-03-11 19:28 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 10+ messages in thread
From: Tobias Klausmann (klausman) @ 2009-03-11 19:28 UTC (permalink / raw
  To: gentoo-commits

klausman    09/03/11 19:28:12

  Modified:             ChangeLog gnumeric-1.8.4-r1.ebuild
  Log:
  Stable on alpha, bug #257012
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.182                app-office/gnumeric/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.182&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.182&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?r1=1.181&r2=1.182

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v
retrieving revision 1.181
retrieving revision 1.182
diff -u -r1.181 -r1.182
--- ChangeLog	11 Mar 2009 14:59:28 -0000	1.181
+++ ChangeLog	11 Mar 2009 19:28:12 -0000	1.182
@@ -1,6 +1,10 @@
 # ChangeLog for app-office/gnumeric
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.181 2009/03/11 14:59:28 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.182 2009/03/11 19:28:12 klausman Exp $
+
+  11 Mar 2009; Tobias Klausmann <klausman@gentoo.org>
+  gnumeric-1.8.4-r1.ebuild:
+  Stable on alpha, bug #257012
 
   11 Mar 2009; Brent Baude <ranger@gentoo.org> gnumeric-1.8.4-r1.ebuild:
   Marking gnumeric-1.8.4-r1 ppc64 for bug 257012



1.5                  app-office/gnumeric/gnumeric-1.8.4-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?r1=1.4&r2=1.5

Index: gnumeric-1.8.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- gnumeric-1.8.4-r1.ebuild	11 Mar 2009 14:59:28 -0000	1.4
+++ gnumeric-1.8.4-r1.ebuild	11 Mar 2009 19:28:12 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.4 2009/03/11 14:59:28 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.5 2009/03/11 19:28:12 klausman Exp $
 
 EAPI="2"
 
@@ -11,7 +11,7 @@
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ppc64 sparc ~x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~hppa ~ia64 ~ppc ppc64 sparc ~x86 ~x86-fbsd"
 
 IUSE="gnome perl python"
 # bonobo guile libgda mono (experimental)






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-office/gnumeric: ChangeLog gnumeric-1.8.4-r1.ebuild
@ 2009-03-15  2:18 Markus Meier (maekke)
  0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier (maekke) @ 2009-03-15  2:18 UTC (permalink / raw
  To: gentoo-commits

maekke      09/03/15 02:18:09

  Modified:             ChangeLog gnumeric-1.8.4-r1.ebuild
  Log:
  amd64/x86 stable, bug #257012
  (Portage version: 2.1.6.8/cvs/Linux x86_64)

Revision  Changes    Path
1.183                app-office/gnumeric/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.183&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.183&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?r1=1.182&r2=1.183

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v
retrieving revision 1.182
retrieving revision 1.183
diff -u -r1.182 -r1.183
--- ChangeLog	11 Mar 2009 19:28:12 -0000	1.182
+++ ChangeLog	15 Mar 2009 02:18:09 -0000	1.183
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/gnumeric
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.182 2009/03/11 19:28:12 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.183 2009/03/15 02:18:09 maekke Exp $
+
+  15 Mar 2009; Markus Meier <maekke@gentoo.org> gnumeric-1.8.4-r1.ebuild:
+  amd64/x86 stable, bug #257012
 
   11 Mar 2009; Tobias Klausmann <klausman@gentoo.org>
   gnumeric-1.8.4-r1.ebuild:



1.6                  app-office/gnumeric/gnumeric-1.8.4-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?r1=1.5&r2=1.6

Index: gnumeric-1.8.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- gnumeric-1.8.4-r1.ebuild	11 Mar 2009 19:28:12 -0000	1.5
+++ gnumeric-1.8.4-r1.ebuild	15 Mar 2009 02:18:09 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.5 2009/03/11 19:28:12 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.6 2009/03/15 02:18:09 maekke Exp $
 
 EAPI="2"
 
@@ -11,7 +11,7 @@
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~hppa ~ia64 ~ppc ppc64 sparc ~x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~hppa ~ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
 
 IUSE="gnome perl python"
 # bonobo guile libgda mono (experimental)






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-office/gnumeric: ChangeLog gnumeric-1.8.4-r1.ebuild
@ 2009-03-15 19:12 Raul Porcel (armin76)
  0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2009-03-15 19:12 UTC (permalink / raw
  To: gentoo-commits

armin76     09/03/15 19:12:25

  Modified:             ChangeLog gnumeric-1.8.4-r1.ebuild
  Log:
  ia64 stable wrt #257012
  (Portage version: 2.1.6.7/cvs/Linux ia64)

Revision  Changes    Path
1.185                app-office/gnumeric/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.185&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.185&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?r1=1.184&r2=1.185

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v
retrieving revision 1.184
retrieving revision 1.185
diff -u -r1.184 -r1.185
--- ChangeLog	15 Mar 2009 11:04:37 -0000	1.184
+++ ChangeLog	15 Mar 2009 19:12:25 -0000	1.185
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/gnumeric
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.184 2009/03/15 11:04:37 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.185 2009/03/15 19:12:25 armin76 Exp $
+
+  15 Mar 2009; Raúl Porcel <armin76@gentoo.org> gnumeric-1.8.4-r1.ebuild:
+  ia64 stable wrt #257012
 
   15 Mar 2009; Gilles Dartiguelongue <eva@gentoo.org> gnumeric-1.8.4.ebuild,
   gnumeric-1.8.4-r1.ebuild:



1.8                  app-office/gnumeric/gnumeric-1.8.4-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?r1=1.7&r2=1.8

Index: gnumeric-1.8.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- gnumeric-1.8.4-r1.ebuild	15 Mar 2009 11:04:37 -0000	1.7
+++ gnumeric-1.8.4-r1.ebuild	15 Mar 2009 19:12:25 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.7 2009/03/15 11:04:37 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.8 2009/03/15 19:12:25 armin76 Exp $
 
 EAPI="2"
 
@@ -11,7 +11,7 @@
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ~ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~hppa ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
 
 IUSE="gnome perl python"
 # bonobo guile libgda mono (experimental)






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-office/gnumeric: ChangeLog gnumeric-1.8.4-r1.ebuild
@ 2009-03-18 22:14 Brent Baude (ranger)
  0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2009-03-18 22:14 UTC (permalink / raw
  To: gentoo-commits

ranger      09/03/18 22:14:49

  Modified:             ChangeLog gnumeric-1.8.4-r1.ebuild
  Log:
  Marking gnumeric-1.8.4-r1 ppc for bug 257012
  (Portage version: 2.1.6.7/cvs/Linux ppc64)

Revision  Changes    Path
1.186                app-office/gnumeric/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.186&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.186&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?r1=1.185&r2=1.186

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -r1.185 -r1.186
--- ChangeLog	15 Mar 2009 19:12:25 -0000	1.185
+++ ChangeLog	18 Mar 2009 22:14:49 -0000	1.186
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/gnumeric
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.185 2009/03/15 19:12:25 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.186 2009/03/18 22:14:49 ranger Exp $
+
+  18 Mar 2009; Brent Baude <ranger@gentoo.org> gnumeric-1.8.4-r1.ebuild:
+  Marking gnumeric-1.8.4-r1 ppc for bug 257012
 
   15 Mar 2009; Raúl Porcel <armin76@gentoo.org> gnumeric-1.8.4-r1.ebuild:
   ia64 stable wrt #257012



1.9                  app-office/gnumeric/gnumeric-1.8.4-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?r1=1.8&r2=1.9

Index: gnumeric-1.8.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- gnumeric-1.8.4-r1.ebuild	15 Mar 2009 19:12:25 -0000	1.8
+++ gnumeric-1.8.4-r1.ebuild	18 Mar 2009 22:14:49 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.8 2009/03/15 19:12:25 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.9 2009/03/18 22:14:49 ranger Exp $
 
 EAPI="2"
 
@@ -11,7 +11,7 @@
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 
 IUSE="gnome perl python"
 # bonobo guile libgda mono (experimental)






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-office/gnumeric: ChangeLog gnumeric-1.8.4-r1.ebuild
@ 2009-03-23  5:17 Jeroen Roovers (jer)
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2009-03-23  5:17 UTC (permalink / raw
  To: gentoo-commits

jer         09/03/23 05:17:59

  Modified:             ChangeLog gnumeric-1.8.4-r1.ebuild
  Log:
  Stable for HPPA (bug #257012).
  (Portage version: 2.2_rc26/cvs/Linux i686)

Revision  Changes    Path
1.187                app-office/gnumeric/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.187&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.187&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?r1=1.186&r2=1.187

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v
retrieving revision 1.186
retrieving revision 1.187
diff -u -r1.186 -r1.187
--- ChangeLog	18 Mar 2009 22:14:49 -0000	1.186
+++ ChangeLog	23 Mar 2009 05:17:59 -0000	1.187
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/gnumeric
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.186 2009/03/18 22:14:49 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.187 2009/03/23 05:17:59 jer Exp $
+
+  23 Mar 2009; Jeroen Roovers <jer@gentoo.org> gnumeric-1.8.4-r1.ebuild:
+  Stable for HPPA (bug #257012).
 
   18 Mar 2009; Brent Baude <ranger@gentoo.org> gnumeric-1.8.4-r1.ebuild:
   Marking gnumeric-1.8.4-r1 ppc for bug 257012



1.10                 app-office/gnumeric/gnumeric-1.8.4-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?r1=1.9&r2=1.10

Index: gnumeric-1.8.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- gnumeric-1.8.4-r1.ebuild	18 Mar 2009 22:14:49 -0000	1.9
+++ gnumeric-1.8.4-r1.ebuild	23 Mar 2009 05:17:59 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.9 2009/03/18 22:14:49 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.10 2009/03/23 05:17:59 jer Exp $
 
 EAPI="2"
 
@@ -11,7 +11,7 @@
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 
 IUSE="gnome perl python"
 # bonobo guile libgda mono (experimental)






^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-office/gnumeric: ChangeLog gnumeric-1.8.4-r1.ebuild
@ 2009-06-28 19:09 Romain Perier (mrpouet)
  0 siblings, 0 replies; 10+ messages in thread
From: Romain Perier (mrpouet) @ 2009-06-28 19:09 UTC (permalink / raw
  To: gentoo-commits

mrpouet     09/06/28 19:09:20

  Modified:             ChangeLog gnumeric-1.8.4-r1.ebuild
  Log:
  Fix bug #275352, tarball was generated with a broken version of intltoolize, so po/Makefile.in.in was broken and translations was not installed correctly
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.189                app-office/gnumeric/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.189&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.189&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?r1=1.188&r2=1.189

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v
retrieving revision 1.188
retrieving revision 1.189
diff -u -r1.188 -r1.189
--- ChangeLog	5 Apr 2009 21:27:04 -0000	1.188
+++ ChangeLog	28 Jun 2009 19:09:20 -0000	1.189
@@ -1,6 +1,12 @@
 # ChangeLog for app-office/gnumeric
-# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.188 2009/04/05 21:27:04 eva Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.189 2009/06/28 19:09:20 mrpouet Exp $
+
+  28 Jun 2009; Romain Perier <mrpouet@gentoo.org>
+  gnumeric-1.8.4-r1.ebuild:
+  Fix bug #275352, tarball was generated with a broken version of
+  intltoolize, so po/Makefile.in.in was broken and translations was not
+  installed correctly
 
   05 Apr 2009; Gilles Dartiguelongue <eva@gentoo.org>
   -gnumeric-1.8.3.ebuild, -gnumeric-1.8.4.ebuild, gnumeric-1.8.4-r1.ebuild:



1.12                 app-office/gnumeric/gnumeric-1.8.4-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild?r1=1.11&r2=1.12

Index: gnumeric-1.8.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- gnumeric-1.8.4-r1.ebuild	5 Apr 2009 21:27:04 -0000	1.11
+++ gnumeric-1.8.4-r1.ebuild	28 Jun 2009 19:09:20 -0000	1.12
@@ -1,10 +1,10 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.11 2009/04/05 21:27:04 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.4-r1.ebuild,v 1.12 2009/06/28 19:09:20 mrpouet Exp $
 
 EAPI="2"
 
-inherit gnome2 flag-o-matic python
+inherit gnome2 flag-o-matic python autotools
 
 DESCRIPTION="Gnumeric, the GNOME Spreadsheet"
 HOMEPAGE="http://www.gnome.org/projects/gnumeric/"
@@ -73,6 +73,10 @@
 src_prepare() {
 	# Fix for CVE-2009-0318, bug #257012
 	epatch "${FILESDIR}/${P}-CVE-2009-0318.patch"
+
+	# Fix #275352 (the sed expression didn't work !)
+	intltoolize --automake --copy --force || die "intltoolize failed"
+	eautoreconf
 }
 
 src_install() {






^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2009-06-28 19:09 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-11 19:28 [gentoo-commits] gentoo-x86 commit in app-office/gnumeric: ChangeLog gnumeric-1.8.4-r1.ebuild Tobias Klausmann (klausman)
  -- strict thread matches above, loose matches on Subject: below --
2009-06-28 19:09 Romain Perier (mrpouet)
2009-03-23  5:17 Jeroen Roovers (jer)
2009-03-18 22:14 Brent Baude (ranger)
2009-03-15 19:12 Raul Porcel (armin76)
2009-03-15  2:18 Markus Meier (maekke)
2009-03-11 14:59 Brent Baude (ranger)
2009-03-10 15:58 Ferris McCormick (fmccor)
2009-03-10 13:47 Gilles Dartiguelongue (eva)
2009-03-09 22:45 Gilles Dartiguelongue (eva)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox