public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in gnome-extra/libgda: ChangeLog libgda-4.1.4-r1.ebuild
@ 2010-03-31 21:31 Gilles Dartiguelongue (eva)
  0 siblings, 0 replies; 6+ messages in thread
From: Gilles Dartiguelongue (eva) @ 2010-03-31 21:31 UTC (permalink / raw
  To: gentoo-commits

eva         10/03/31 21:31:30

  Modified:             ChangeLog
  Added:                libgda-4.1.4-r1.ebuild
  Log:
  Install missing header file, bug #308793.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.137                gnome-extra/libgda/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/libgda/ChangeLog?rev=1.137&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/libgda/ChangeLog?rev=1.137&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/libgda/ChangeLog?r1=1.136&r2=1.137

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v
retrieving revision 1.136
retrieving revision 1.137
diff -u -r1.136 -r1.137
--- ChangeLog	16 Mar 2010 18:23:57 -0000	1.136
+++ ChangeLog	31 Mar 2010 21:31:30 -0000	1.137
@@ -1,6 +1,12 @@
 # ChangeLog for gnome-extra/libgda
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v 1.136 2010/03/16 18:23:57 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v 1.137 2010/03/31 21:31:30 eva Exp $
+
+*libgda-4.1.4-r1 (31 Mar 2010)
+
+  31 Mar 2010; Gilles Dartiguelongue <eva@gentoo.org>
+  +libgda-4.1.4-r1.ebuild, +files/libgda-4.1.4-install-header.patch:
+  Install missing header file, bug #308793.
 
   16 Mar 2010; Christian Faulhammer <fauli@gentoo.org> libgda-4.1.0.ebuild:
   stable x86, bug 298201



1.1                  gnome-extra/libgda/libgda-4.1.4-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild?rev=1.1&content-type=text/plain

Index: libgda-4.1.4-r1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild,v 1.1 2010/03/31 21:31:30 eva Exp $

EAPI="2"

inherit db-use eutils flag-o-matic gnome2 java-pkg-opt-2

DESCRIPTION="Gnome Database Access Library"
HOMEPAGE="http://www.gnome-db.org/"
LICENSE="GPL-2 LGPL-2"

# MDB support currently works with CVS only, so disable it in the meantime
# experimental IUSE: introspection
IUSE="berkdb bindist canvas doc firebird freetds gtk graphviz ldap mysql oci8 odbc postgres sourceview xbase"
SLOT="4"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"

# FIXME: sqlite is automagic, but maybe it is a hard-dep
# FIXME: autoconf is a hell of inconsistencies
RDEPEND="
	app-text/iso-codes
	>=dev-libs/glib-2.16
	>=dev-libs/libxml2-2
	dev-libs/libxslt
	dev-libs/libunique
	sys-libs/readline
	sys-libs/ncurses
	>=net-libs/libsoup-2.24:2.4
	berkdb?   ( sys-libs/db )
	freetds?  ( >=dev-db/freetds-0.62 )
	!bindist? ( firebird? ( dev-db/firebird ) )
	gtk? (
		>=x11-libs/gtk+-2.12
		canvas? ( x11-libs/goocanvas )
		sourceview? ( x11-libs/gtksourceview:2.0 )
		graphviz? ( media-gfx/graphviz )
	)
	ldap?     ( >=net-nds/openldap-2.0.25 )
	mysql?    ( virtual/mysql )
	odbc?     ( >=dev-db/unixODBC-2.0.6 )
	postgres? ( >=virtual/postgresql-base-7.2.1 )
	xbase?    ( dev-db/xbase )
	>=dev-db/sqlite-3.6.22:3"
#   json?     ( dev-libs/json-glib )
#	mdb?      ( >app-office/mdbtools-0.5 )

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

DOCS="AUTHORS ChangeLog NEWS README"

# Tests are not really good
RESTRICT="test"

pkg_setup() {
	if use canvas || use graphviz || use sourceview; then
		if ! use gtk; then
			ewarn "You must enable USE=gtk to make use of canvas, graphivz or sourceview USE flag."
			ewarn "Disabling for now."
			G2CONF="${G2CONF} --without-goocanvas --without-graphivz --without-gtksourceview"
		else
			G2CONF="${G2CONF}
				$(use_with canvas goocanvas)
				$(use_with graphviz)
				$(use_with sourceview gtksourceview)"
		fi
	fi

	G2CONF="${G2CONF}
		--with-unique
		--with-libsoup
		--disable-introspection
		--disable-static
		--enable-system-sqlite
		$(use_with gtk ui)
		$(use_with berkdb bdb /usr)
		$(use_with odbc odbc /usr)
		$(use_with mysql mysql /usr)
		$(use_with postgres postgres /usr)
		$(use_with freetds tds /usr)
		$(use_with xbase xbase /usr)
		$(use_with ldap ldap /usr)
		$(use_with java java $JAVA_HOME)
		--without-mdb"
#		$(use_with mdb mdb /usr)

	if use bindist; then
		# firebird license is not GPL compatible
		G2CONF="${G2CONF} --without-firebird"
	else
		G2CONF="${G2CONF} $(use_with firebird firebird /usr)"
	fi

	use berkdb && append-cppflags "-I$(db_includedir)"
	use oci8 || G2CONF="${G2CONF} --without-oracle"

	# Not in portage
	G2CONF="${G2CONF}
		--without-msql
		--without-sybase
		--without-ibmdb2
		--disable-default-binary"
}

src_prepare() {
	gnome2_src_prepare

	# Fix missing header installation, bug #308793
	epatch "${FILESDIR}/${PN}-4.1.4-install-header.patch"
}

src_test() {
	emake check HOME=$(unset HOME; echo "~") || die "tests failed"
}






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

* [gentoo-commits] gentoo-x86 commit in gnome-extra/libgda: ChangeLog libgda-4.1.4-r1.ebuild
@ 2010-07-25 10:29 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 6+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-07-25 10:29 UTC (permalink / raw
  To: gentoo-commits

fauli       10/07/25 10:29:54

  Modified:             ChangeLog libgda-4.1.4-r1.ebuild
  Log:
  stable x86, bug 327803
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.142                gnome-extra/libgda/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/ChangeLog?rev=1.142&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/ChangeLog?rev=1.142&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/ChangeLog?r1=1.141&r2=1.142

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -r1.141 -r1.142
--- ChangeLog	20 Jul 2010 15:37:29 -0000	1.141
+++ ChangeLog	25 Jul 2010 10:29:54 -0000	1.142
@@ -1,6 +1,10 @@
 # ChangeLog for gnome-extra/libgda
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v 1.141 2010/07/20 15:37:29 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v 1.142 2010/07/25 10:29:54 fauli Exp $
+
+  25 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
+  libgda-4.1.4-r1.ebuild:
+  stable x86, bug 327803
 
   20 Jul 2010; Jeroen Roovers <jer@gentoo.org> libgda-1.2.4.ebuild,
   libgda-3.0.4.ebuild, libgda-4.1.0.ebuild:



1.4                  gnome-extra/libgda/libgda-4.1.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild?r1=1.3&r2=1.4

Index: libgda-4.1.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libgda-4.1.4-r1.ebuild	17 Jun 2010 20:21:51 -0000	1.3
+++ libgda-4.1.4-r1.ebuild	25 Jul 2010 10:29:54 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild,v 1.3 2010/06/17 20:21:51 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild,v 1.4 2010/07/25 10:29:54 fauli Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 # experimental IUSE: introspection
 IUSE="berkdb bindist canvas doc firebird freetds gtk graphviz ldap mysql oci8 odbc postgres sourceview xbase"
 SLOT="4"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 
 # FIXME: sqlite is automagic, but maybe it is a hard-dep
 # FIXME: autoconf is a hell of inconsistencies






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

* [gentoo-commits] gentoo-x86 commit in gnome-extra/libgda: ChangeLog libgda-4.1.4-r1.ebuild
@ 2010-07-31 13:31 Pacho Ramos (pacho)
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos (pacho) @ 2010-07-31 13:31 UTC (permalink / raw
  To: gentoo-commits

pacho       10/07/31 13:31:27

  Modified:             ChangeLog libgda-4.1.4-r1.ebuild
  Log:
  amd64 stable, bug 327803
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.144                gnome-extra/libgda/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/ChangeLog?rev=1.144&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/ChangeLog?rev=1.144&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/ChangeLog?r1=1.143&r2=1.144

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- ChangeLog	26 Jul 2010 16:14:02 -0000	1.143
+++ ChangeLog	31 Jul 2010 13:31:26 -0000	1.144
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-extra/libgda
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v 1.143 2010/07/26 16:14:02 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v 1.144 2010/07/31 13:31:26 pacho Exp $
+
+  31 Jul 2010; Pacho Ramos <pacho@gentoo.org> libgda-4.1.4-r1.ebuild:
+  amd64 stable, bug 327803
 
 *libgda-4.1.7 (26 Jul 2010)
 



1.5                  gnome-extra/libgda/libgda-4.1.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild?r1=1.4&r2=1.5

Index: libgda-4.1.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libgda-4.1.4-r1.ebuild	25 Jul 2010 10:29:54 -0000	1.4
+++ libgda-4.1.4-r1.ebuild	31 Jul 2010 13:31:26 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild,v 1.4 2010/07/25 10:29:54 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild,v 1.5 2010/07/31 13:31:26 pacho Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 # experimental IUSE: introspection
 IUSE="berkdb bindist canvas doc firebird freetds gtk graphviz ldap mysql oci8 odbc postgres sourceview xbase"
 SLOT="4"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 
 # FIXME: sqlite is automagic, but maybe it is a hard-dep
 # FIXME: autoconf is a hell of inconsistencies






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

* [gentoo-commits] gentoo-x86 commit in gnome-extra/libgda: ChangeLog libgda-4.1.4-r1.ebuild
@ 2010-08-29 18:28 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2010-08-29 18:28 UTC (permalink / raw
  To: gentoo-commits

armin76     10/08/29 18:28:59

  Modified:             ChangeLog libgda-4.1.4-r1.ebuild
  Log:
  alpha/ia64/sparc stable wrt #327803
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.146                gnome-extra/libgda/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/ChangeLog?rev=1.146&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/ChangeLog?rev=1.146&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/ChangeLog?r1=1.145&r2=1.146

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -r1.145 -r1.146
--- ChangeLog	13 Aug 2010 21:38:06 -0000	1.145
+++ ChangeLog	29 Aug 2010 18:28:59 -0000	1.146
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-extra/libgda
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v 1.145 2010/08/13 21:38:06 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v 1.146 2010/08/29 18:28:59 armin76 Exp $
+
+  29 Aug 2010; Raúl Porcel <armin76@gentoo.org> libgda-4.1.4-r1.ebuild:
+  alpha/ia64/sparc stable wrt #327803
 
   13 Aug 2010; Gilles Dartiguelongue <eva@gentoo.org> libgda-4.1.7.ebuild:
   Add missing dependency.



1.6                  gnome-extra/libgda/libgda-4.1.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild?r1=1.5&r2=1.6

Index: libgda-4.1.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libgda-4.1.4-r1.ebuild	31 Jul 2010 13:31:26 -0000	1.5
+++ libgda-4.1.4-r1.ebuild	29 Aug 2010 18:28:59 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild,v 1.5 2010/07/31 13:31:26 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild,v 1.6 2010/08/29 18:28:59 armin76 Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 # experimental IUSE: introspection
 IUSE="berkdb bindist canvas doc firebird freetds gtk graphviz ldap mysql oci8 odbc postgres sourceview xbase"
 SLOT="4"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
 
 # FIXME: sqlite is automagic, but maybe it is a hard-dep
 # FIXME: autoconf is a hell of inconsistencies






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

* [gentoo-commits] gentoo-x86 commit in gnome-extra/libgda: ChangeLog libgda-4.1.4-r1.ebuild
@ 2010-09-09 18:02 Brent Baude (ranger)
  0 siblings, 0 replies; 6+ messages in thread
From: Brent Baude (ranger) @ 2010-09-09 18:02 UTC (permalink / raw
  To: gentoo-commits

ranger      10/09/09 18:02:23

  Modified:             ChangeLog libgda-4.1.4-r1.ebuild
  Log:
  Marking libgda-4.1.4-r1 ppc64 for bug 327803
  (Portage version: 2.1.8.3/cvs/Linux ppc64)

Revision  Changes    Path
1.147                gnome-extra/libgda/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/ChangeLog?rev=1.147&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/ChangeLog?rev=1.147&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/ChangeLog?r1=1.146&r2=1.147

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -r1.146 -r1.147
--- ChangeLog	29 Aug 2010 18:28:59 -0000	1.146
+++ ChangeLog	9 Sep 2010 18:02:23 -0000	1.147
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-extra/libgda
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v 1.146 2010/08/29 18:28:59 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v 1.147 2010/09/09 18:02:23 ranger Exp $
+
+  09 Sep 2010; Brent Baude <ranger@gentoo.org> libgda-4.1.4-r1.ebuild:
+  Marking libgda-4.1.4-r1 ppc64 for bug 327803
 
   29 Aug 2010; Raúl Porcel <armin76@gentoo.org> libgda-4.1.4-r1.ebuild:
   alpha/ia64/sparc stable wrt #327803



1.7                  gnome-extra/libgda/libgda-4.1.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild?r1=1.6&r2=1.7

Index: libgda-4.1.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libgda-4.1.4-r1.ebuild	29 Aug 2010 18:28:59 -0000	1.6
+++ libgda-4.1.4-r1.ebuild	9 Sep 2010 18:02:23 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild,v 1.6 2010/08/29 18:28:59 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild,v 1.7 2010/09/09 18:02:23 ranger Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 # experimental IUSE: introspection
 IUSE="berkdb bindist canvas doc firebird freetds gtk graphviz ldap mysql oci8 odbc postgres sourceview xbase"
 SLOT="4"
-KEYWORDS="alpha amd64 ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
 
 # FIXME: sqlite is automagic, but maybe it is a hard-dep
 # FIXME: autoconf is a hell of inconsistencies






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

* [gentoo-commits] gentoo-x86 commit in gnome-extra/libgda: ChangeLog libgda-4.1.4-r1.ebuild
@ 2010-10-28 16:49 Jeroen Roovers (jer)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2010-10-28 16:49 UTC (permalink / raw
  To: gentoo-commits

jer         10/10/28 16:49:57

  Modified:             ChangeLog libgda-4.1.4-r1.ebuild
  Log:
  Stable for PPC (bug #327803).
  
  (Portage version: 2.1.9.22/cvs/Linux i686)

Revision  Changes    Path
1.152                gnome-extra/libgda/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/ChangeLog?rev=1.152&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/ChangeLog?rev=1.152&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/ChangeLog?r1=1.151&r2=1.152

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog	10 Oct 2010 11:57:10 -0000	1.151
+++ ChangeLog	28 Oct 2010 16:49:57 -0000	1.152
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-extra/libgda
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v 1.151 2010/10/10 11:57:10 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/ChangeLog,v 1.152 2010/10/28 16:49:57 jer Exp $
+
+  28 Oct 2010; Jeroen Roovers <jer@gentoo.org> libgda-4.1.4-r1.ebuild:
+  Stable for PPC (bug #327803).
 
   10 Oct 2010; Raúl Porcel <armin76@gentoo.org> libgda-4.2.0.ebuild:
   Add ~alpha/~ia64/~sparc wrt #339179



1.8                  gnome-extra/libgda/libgda-4.1.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild?r1=1.7&r2=1.8

Index: libgda-4.1.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libgda-4.1.4-r1.ebuild	9 Sep 2010 18:02:23 -0000	1.7
+++ libgda-4.1.4-r1.ebuild	28 Oct 2010 16:49:57 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild,v 1.7 2010/09/09 18:02:23 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild,v 1.8 2010/10/28 16:49:57 jer Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 # experimental IUSE: introspection
 IUSE="berkdb bindist canvas doc firebird freetds gtk graphviz ldap mysql oci8 odbc postgres sourceview xbase"
 SLOT="4"
-KEYWORDS="alpha amd64 ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 
 # FIXME: sqlite is automagic, but maybe it is a hard-dep
 # FIXME: autoconf is a hell of inconsistencies






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

end of thread, other threads:[~2010-10-28 16:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-28 16:49 [gentoo-commits] gentoo-x86 commit in gnome-extra/libgda: ChangeLog libgda-4.1.4-r1.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2010-09-09 18:02 Brent Baude (ranger)
2010-08-29 18:28 Raul Porcel (armin76)
2010-07-31 13:31 Pacho Ramos (pacho)
2010-07-25 10:29 Christian Faulhammer (fauli)
2010-03-31 21:31 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