public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-libs/goffice: ChangeLog goffice-0.6.4.ebuild
@ 2008-05-15 22:46 Gilles Dartiguelongue (eva)
  0 siblings, 0 replies; 8+ messages in thread
From: Gilles Dartiguelongue (eva) @ 2008-05-15 22:46 UTC (permalink / raw
  To: gentoo-commits

eva         08/05/15 22:46:29

  Modified:             ChangeLog
  Added:                goffice-0.6.4.ebuild
  Log:
  bump to 0.6.4. Fix a bug and a typo.
  (Portage version: 2.1.5_rc10)

Revision  Changes    Path
1.42                 x11-libs/goffice/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?r1=1.41&r2=1.42

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	7 May 2008 22:35:15 -0000	1.41
+++ ChangeLog	15 May 2008 22:46:29 -0000	1.42
@@ -1,6 +1,11 @@
 # ChangeLog for x11-libs/goffice
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.41 2008/05/07 22:35:15 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.42 2008/05/15 22:46:29 eva Exp $
+
+*goffice-0.6.4 (15 May 2008)
+
+  15 May 2008; Gilles Dartiguelongue <eva@gentoo.org> +goffice-0.6.4.ebuild:
+  bump to 0.6.4. Fix a bug and a typo.
 
 *goffice-0.6.3 (08 May 2008)
 



1.1                  x11-libs/goffice/goffice-0.6.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?rev=1.1&content-type=text/plain

Index: goffice-0.6.4.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v 1.1 2008/05/15 22:46:29 eva Exp $

inherit eutils gnome2 flag-o-matic

DESCRIPTION="A library of document-centric objects and utilities"
HOMEPAGE="http://freshmeat.net/projects/goffice/"

LICENSE="GPL-2"
SLOT="0.6"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="doc gnome"

# Raising glib dep to 2.14 to drop pcre dependency
#cairo support broken and -gtk broken

RDEPEND=">=dev-libs/glib-2.14
	>=gnome-extra/libgsf-1.13.3
	>=dev-libs/libxml2-2.4.12
	>=x11-libs/pango-1.8.1
	>=x11-libs/gtk+-2.6
	>=gnome-base/libglade-2.3.6
	>=media-libs/libart_lgpl-2.3.11
	>=x11-libs/cairo-1.2
	gnome? (
		>=gnome-base/gconf-2
		>=gnome-base/libgnomeui-2 )"
# libpcre raised to unicode USE flag

DEPEND="${RDEPEND}
	>=dev-util/pkgconfig-0.18
	>=dev-util/intltool-0.35
	doc? ( >=dev-util/gtk-doc-1.4 )"

DOCS="AUTHORS BUGS ChangeLog MAINTAINERS NEWS README"

pkg_setup() {
	G2CONF="${G2CONF} $(use_with gnome)"

	local diemessage=""

	if use gnome && ! built_with_use gnome-extra/libgsf gnome; then
		eerror "Please rebuild gnome-extra/libgsf with gnome support enabled"
		eerror "echo \"gnome-extra/libgsf gnome\" >> /etc/portage/package.use"
		eerror "or add  \"gnome\" to your USE string in /etc/make.conf"
		diemessage="No Gnome support found in libgsf."
	fi

	if ! built_with_use x11-libs/cairo svg ; then
		eerror "Please rebuild x11-libs/cairo with svg support enabled"
		eerror "echo \"x11-libs/cairo svg\" >> /etc/portage/package.use"
		eerror "emerge -1 x11-libs/cairo"
		diemessage="${diemessage} No SVG support found in cairo."
	fi

	[ -n "${diemessage}" ] && die ${diemessage}
}

src_unpack() {
	gnome2_src_unpack

	# Fix doc slotting
	epatch "${FILESDIR}/${PN}-0.6-doc-slot.patch"

	mv "${S}"/docs/reference/html/goffice{,-0.6}.devhelp
	mv "${S}"/docs/reference/html/goffice{,-0.6}.devhelp2
	mv "${S}"/docs/reference/goffice{,-0.6}-docs.sgml
	mv "${S}"/docs/reference/goffice{,-0.6}-overrides.txt
	mv "${S}"/docs/reference/goffice{,-0.6}-sections.txt
	mv "${S}"/docs/reference/goffice{,-0.6}.types
}

src_compile() {
	filter-flags -ffast-math
	gnome2_src_compile
}



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in x11-libs/goffice: ChangeLog goffice-0.6.4.ebuild
@ 2008-06-29 14:02 Gilles Dartiguelongue (eva)
  0 siblings, 0 replies; 8+ messages in thread
From: Gilles Dartiguelongue (eva) @ 2008-06-29 14:02 UTC (permalink / raw
  To: gentoo-commits

eva         08/06/29 14:02:24

  Modified:             ChangeLog goffice-0.6.4.ebuild
  Log:
  use eautomake, fix bug #226831.
  (Portage version: 2.2_rc1/cvs/Linux 2.6.24-gentoo-r2 i686)

Revision  Changes    Path
1.43                 x11-libs/goffice/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.43&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.43&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?r1=1.42&r2=1.43

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog	15 May 2008 22:46:29 -0000	1.42
+++ ChangeLog	29 Jun 2008 14:02:24 -0000	1.43
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/goffice
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.42 2008/05/15 22:46:29 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.43 2008/06/29 14:02:24 eva Exp $
+
+  29 Jun 2008; Gilles Dartiguelongue <eva@gentoo.org> goffice-0.6.4.ebuild:
+  use eautomake, fix bug #226831.
 
 *goffice-0.6.4 (15 May 2008)
 



1.2                  x11-libs/goffice/goffice-0.6.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?r1=1.1&r2=1.2

Index: goffice-0.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- goffice-0.6.4.ebuild	15 May 2008 22:46:29 -0000	1.1
+++ goffice-0.6.4.ebuild	29 Jun 2008 14:02:24 -0000	1.2
@@ -1,8 +1,8 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v 1.1 2008/05/15 22:46:29 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v 1.2 2008/06/29 14:02:24 eva Exp $
 
-inherit eutils gnome2 flag-o-matic
+inherit autotools eutils gnome2 flag-o-matic
 
 DESCRIPTION="A library of document-centric objects and utilities"
 HOMEPAGE="http://freshmeat.net/projects/goffice/"
@@ -26,7 +26,7 @@
 	gnome? (
 		>=gnome-base/gconf-2
 		>=gnome-base/libgnomeui-2 )"
-# libpcre raised to unicode USE flag
+# libpcre raised for unicode USE flag
 
 DEPEND="${RDEPEND}
 	>=dev-util/pkgconfig-0.18
@@ -69,6 +69,8 @@
 	mv "${S}"/docs/reference/goffice{,-0.6}-overrides.txt
 	mv "${S}"/docs/reference/goffice{,-0.6}-sections.txt
 	mv "${S}"/docs/reference/goffice{,-0.6}.types
+
+	eautomake
 }
 
 src_compile() {



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in x11-libs/goffice: ChangeLog goffice-0.6.4.ebuild
@ 2008-06-29 16:56 Markus Rothe (corsair)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Rothe (corsair) @ 2008-06-29 16:56 UTC (permalink / raw
  To: gentoo-commits

corsair     08/06/29 16:56:06

  Modified:             ChangeLog goffice-0.6.4.ebuild
  Log:
  Stable on ppc64; bug #230031
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.44                 x11-libs/goffice/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?r1=1.43&r2=1.44

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	29 Jun 2008 14:02:24 -0000	1.43
+++ ChangeLog	29 Jun 2008 16:56:05 -0000	1.44
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/goffice
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.43 2008/06/29 14:02:24 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.44 2008/06/29 16:56:05 corsair Exp $
+
+  29 Jun 2008; Markus Rothe <corsair@gentoo.org> goffice-0.6.4.ebuild:
+  Stable on ppc64; bug #230031
 
   29 Jun 2008; Gilles Dartiguelongue <eva@gentoo.org> goffice-0.6.4.ebuild:
   use eautomake, fix bug #226831.



1.3                  x11-libs/goffice/goffice-0.6.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?r1=1.2&r2=1.3

Index: goffice-0.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- goffice-0.6.4.ebuild	29 Jun 2008 14:02:24 -0000	1.2
+++ goffice-0.6.4.ebuild	29 Jun 2008 16:56:05 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v 1.2 2008/06/29 14:02:24 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v 1.3 2008/06/29 16:56:05 corsair Exp $
 
 inherit autotools eutils gnome2 flag-o-matic
 
@@ -9,7 +9,7 @@
 
 LICENSE="GPL-2"
 SLOT="0.6"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86"
 IUSE="doc gnome"
 
 # Raising glib dep to 2.14 to drop pcre dependency



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in x11-libs/goffice: ChangeLog goffice-0.6.4.ebuild
@ 2008-06-30 17:25 Kenneth Prugh (ken69267)
  0 siblings, 0 replies; 8+ messages in thread
From: Kenneth Prugh (ken69267) @ 2008-06-30 17:25 UTC (permalink / raw
  To: gentoo-commits

ken69267    08/06/30 17:25:45

  Modified:             ChangeLog goffice-0.6.4.ebuild
  Log:
  amd64 stable, bug #230071
  (Portage version: 2.2_rc1/cvs/Linux 2.6.25-gentoo-r4 x86_64)

Revision  Changes    Path
1.45                 x11-libs/goffice/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.45&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.45&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?r1=1.44&r2=1.45

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	29 Jun 2008 16:56:05 -0000	1.44
+++ ChangeLog	30 Jun 2008 17:25:44 -0000	1.45
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/goffice
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.44 2008/06/29 16:56:05 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.45 2008/06/30 17:25:44 ken69267 Exp $
+
+  30 Jun 2008; Kenneth Prugh <ken69267@gentoo.org> goffice-0.6.4.ebuild:
+  amd64 stable, bug #230071
 
   29 Jun 2008; Markus Rothe <corsair@gentoo.org> goffice-0.6.4.ebuild:
   Stable on ppc64; bug #230031



1.4                  x11-libs/goffice/goffice-0.6.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?r1=1.3&r2=1.4

Index: goffice-0.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- goffice-0.6.4.ebuild	29 Jun 2008 16:56:05 -0000	1.3
+++ goffice-0.6.4.ebuild	30 Jun 2008 17:25:44 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v 1.3 2008/06/29 16:56:05 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v 1.4 2008/06/30 17:25:44 ken69267 Exp $
 
 inherit autotools eutils gnome2 flag-o-matic
 
@@ -9,7 +9,7 @@
 
 LICENSE="GPL-2"
 SLOT="0.6"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86"
 IUSE="doc gnome"
 
 # Raising glib dep to 2.14 to drop pcre dependency



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in x11-libs/goffice: ChangeLog goffice-0.6.4.ebuild
@ 2008-06-30 18:21 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2008-06-30 18:21 UTC (permalink / raw
  To: gentoo-commits

armin76     08/06/30 18:21:14

  Modified:             ChangeLog goffice-0.6.4.ebuild
  Log:
  alpha/ia64/sparc stable wrt #230071
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.46                 x11-libs/goffice/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?r1=1.45&r2=1.46

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	30 Jun 2008 17:25:44 -0000	1.45
+++ ChangeLog	30 Jun 2008 18:21:13 -0000	1.46
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/goffice
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.45 2008/06/30 17:25:44 ken69267 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.46 2008/06/30 18:21:13 armin76 Exp $
+
+  30 Jun 2008; Raúl Porcel <armin76@gentoo.org> goffice-0.6.4.ebuild:
+  alpha/ia64/sparc stable wrt #230071
 
   30 Jun 2008; Kenneth Prugh <ken69267@gentoo.org> goffice-0.6.4.ebuild:
   amd64 stable, bug #230071



1.5                  x11-libs/goffice/goffice-0.6.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?r1=1.4&r2=1.5

Index: goffice-0.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- goffice-0.6.4.ebuild	30 Jun 2008 17:25:44 -0000	1.4
+++ goffice-0.6.4.ebuild	30 Jun 2008 18:21:13 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v 1.4 2008/06/30 17:25:44 ken69267 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v 1.5 2008/06/30 18:21:13 armin76 Exp $
 
 inherit autotools eutils gnome2 flag-o-matic
 
@@ -9,7 +9,7 @@
 
 LICENSE="GPL-2"
 SLOT="0.6"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86"
+KEYWORDS="alpha amd64 ~hppa ia64 ~ppc ppc64 sparc ~x86"
 IUSE="doc gnome"
 
 # Raising glib dep to 2.14 to drop pcre dependency



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in x11-libs/goffice: ChangeLog goffice-0.6.4.ebuild
@ 2008-06-30 20:03 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 8+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-06-30 20:03 UTC (permalink / raw
  To: gentoo-commits

nixnut      08/06/30 20:03:37

  Modified:             ChangeLog goffice-0.6.4.ebuild
  Log:
  Stable on ppc wrt bug 230031"
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.47                 x11-libs/goffice/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?r1=1.46&r2=1.47

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog	30 Jun 2008 18:21:13 -0000	1.46
+++ ChangeLog	30 Jun 2008 20:03:36 -0000	1.47
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/goffice
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.46 2008/06/30 18:21:13 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.47 2008/06/30 20:03:36 nixnut Exp $
+
+  30 Jun 2008; nixnut <nixnut@gentoo.org> goffice-0.6.4.ebuild:
+  Stable on ppc wrt bug 230031
 
   30 Jun 2008; Raúl Porcel <armin76@gentoo.org> goffice-0.6.4.ebuild:
   alpha/ia64/sparc stable wrt #230071



1.6                  x11-libs/goffice/goffice-0.6.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?r1=1.5&r2=1.6

Index: goffice-0.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- goffice-0.6.4.ebuild	30 Jun 2008 18:21:13 -0000	1.5
+++ goffice-0.6.4.ebuild	30 Jun 2008 20:03:36 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v 1.5 2008/06/30 18:21:13 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v 1.6 2008/06/30 20:03:36 nixnut Exp $
 
 inherit autotools eutils gnome2 flag-o-matic
 
@@ -9,7 +9,7 @@
 
 LICENSE="GPL-2"
 SLOT="0.6"
-KEYWORDS="alpha amd64 ~hppa ia64 ~ppc ppc64 sparc ~x86"
+KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc ~x86"
 IUSE="doc gnome"
 
 # Raising glib dep to 2.14 to drop pcre dependency



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in x11-libs/goffice: ChangeLog goffice-0.6.4.ebuild
@ 2008-07-05 16:11 Markus Meier (maekke)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2008-07-05 16:11 UTC (permalink / raw
  To: gentoo-commits

maekke      08/07/05 16:11:28

  Modified:             ChangeLog goffice-0.6.4.ebuild
  Log:
  x86 stable, bug #230031
  (Portage version: 2.2_rc1/cvs/Linux 2.6.26-rc8 i686)

Revision  Changes    Path
1.49                 x11-libs/goffice/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?r1=1.48&r2=1.49

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	30 Jun 2008 21:04:51 -0000	1.48
+++ ChangeLog	5 Jul 2008 16:11:27 -0000	1.49
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/goffice
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.48 2008/06/30 21:04:51 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.49 2008/07/05 16:11:27 maekke Exp $
+
+  05 Jul 2008; Markus Meier <maekke@gentoo.org> goffice-0.6.4.ebuild:
+  x86 stable, bug #230031
 
   30 Jun 2008; Brent Baude <ranger@gentoo.org> ChangeLog:
   Marking goffice-0.6.4 ppc64 for bug 230071



1.7                  x11-libs/goffice/goffice-0.6.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?r1=1.6&r2=1.7

Index: goffice-0.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- goffice-0.6.4.ebuild	30 Jun 2008 20:03:36 -0000	1.6
+++ goffice-0.6.4.ebuild	5 Jul 2008 16:11:27 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v 1.6 2008/06/30 20:03:36 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v 1.7 2008/07/05 16:11:27 maekke Exp $
 
 inherit autotools eutils gnome2 flag-o-matic
 
@@ -9,7 +9,7 @@
 
 LICENSE="GPL-2"
 SLOT="0.6"
-KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc ~x86"
+KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86"
 IUSE="doc gnome"
 
 # Raising glib dep to 2.14 to drop pcre dependency



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in x11-libs/goffice: ChangeLog goffice-0.6.4.ebuild
@ 2008-07-15 18:42 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2008-07-15 18:42 UTC (permalink / raw
  To: gentoo-commits

jer         08/07/15 18:42:13

  Modified:             ChangeLog goffice-0.6.4.ebuild
  Log:
  Stable for HPPA (bug #230071).
  (Portage version: 2.2_rc1/cvs/Linux 2.6.24-gentoo-r2-JeR i686)

Revision  Changes    Path
1.51                 x11-libs/goffice/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.51&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.51&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?r1=1.50&r2=1.51

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog	5 Jul 2008 16:22:12 -0000	1.50
+++ ChangeLog	15 Jul 2008 18:42:12 -0000	1.51
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/goffice
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.50 2008/07/05 16:22:12 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.51 2008/07/15 18:42:12 jer Exp $
+
+  15 Jul 2008; Jeroen Roovers <jer@gentoo.org> goffice-0.6.4.ebuild:
+  Stable for HPPA (bug #230071).
 
   05 Jul 2008; Markus Meier <maekke@gentoo.org> goffice-0.6.4.ebuild:
   x86 stable, bug #230071



1.8                  x11-libs/goffice/goffice-0.6.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild?r1=1.7&r2=1.8

Index: goffice-0.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- goffice-0.6.4.ebuild	5 Jul 2008 16:11:27 -0000	1.7
+++ goffice-0.6.4.ebuild	15 Jul 2008 18:42:12 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v 1.7 2008/07/05 16:11:27 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.4.ebuild,v 1.8 2008/07/15 18:42:12 jer Exp $
 
 inherit autotools eutils gnome2 flag-o-matic
 
@@ -9,7 +9,7 @@
 
 LICENSE="GPL-2"
 SLOT="0.6"
-KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
 IUSE="doc gnome"
 
 # Raising glib dep to 2.14 to drop pcre dependency



-- 
gentoo-commits@lists.gentoo.org mailing list



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

end of thread, other threads:[~2008-07-15 18:42 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-30 17:25 [gentoo-commits] gentoo-x86 commit in x11-libs/goffice: ChangeLog goffice-0.6.4.ebuild Kenneth Prugh (ken69267)
  -- strict thread matches above, loose matches on Subject: below --
2008-07-15 18:42 Jeroen Roovers (jer)
2008-07-05 16:11 Markus Meier (maekke)
2008-06-30 20:03 Gysbert Wassenaar (nixnut)
2008-06-30 18:21 Raul Porcel (armin76)
2008-06-29 16:56 Markus Rothe (corsair)
2008-06-29 14:02 Gilles Dartiguelongue (eva)
2008-05-15 22:46 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