public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-sql: ChangeLog qt-sql-4.7.2.ebuild
@ 2011-03-01 19:10 Theo Chatzimichos (tampakrap)
  0 siblings, 0 replies; 7+ messages in thread
From: Theo Chatzimichos (tampakrap) @ 2011-03-01 19:10 UTC (permalink / raw
  To: gentoo-commits

tampakrap    11/03/01 19:10:33

  Modified:             ChangeLog
  Added:                qt-sql-4.7.2.ebuild
  Log:
  Version bump Qt 4.7.2
  
  (Portage version: 2.2.0_alpha25/cvs/Linux x86_64)

Revision  Changes    Path
1.104                x11-libs/qt-sql/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?rev=1.104&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?rev=1.104&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?r1=1.103&r2=1.104

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog	23 Dec 2010 07:56:50 -0000	1.103
+++ ChangeLog	1 Mar 2011 19:10:33 -0000	1.104
@@ -1,6 +1,11 @@
 # ChangeLog for x11-libs/qt-sql
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v 1.103 2010/12/23 07:56:50 ssuominen Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v 1.104 2011/03/01 19:10:33 tampakrap Exp $
+
+*qt-sql-4.7.2 (01 Mar 2011)
+
+  01 Mar 2011; Theo Chatzimichos <tampakrap@gentoo.org> +qt-sql-4.7.2.ebuild:
+  Version bump Qt 4.7.2
 
   23 Dec 2010; Samuli Suominen <ssuominen@gentoo.org> qt-sql-4.6.3-r2.ebuild:
   ppc64 stable wrt #341703



1.1                  x11-libs/qt-sql/qt-sql-4.7.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild?rev=1.1&content-type=text/plain

Index: qt-sql-4.7.2.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild,v 1.1 2011/03/01 19:10:33 tampakrap Exp $

EAPI="3"
inherit qt4-build

DESCRIPTION="The SQL module for the Qt toolkit"
SLOT="4"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE="firebird freetds iconv mysql odbc postgres qt3support +sqlite"

DEPEND="~x11-libs/qt-core-${PV}[aqua=,debug=,qt3support=]
	firebird? ( dev-db/firebird )
	freetds? ( dev-db/freetds )
	mysql? ( virtual/mysql )
	odbc? ( dev-db/unixODBC )
	postgres? ( dev-db/postgresql-base )
	sqlite? ( dev-db/sqlite:3 )"
RDEPEND="${DEPEND}"

pkg_setup() {
	QT4_TARGET_DIRECTORIES="src/sql src/plugins/sqldrivers"
	QT4_EXTRACT_DIRECTORIES="${QT4_TARGET_DIRECTORIES}
		include/Qt/
		include/QtCore/
		include/QtSql/
		include/QtScript/
		src/src.pro
		src/corelib/
		src/plugins
		src/3rdparty
		src/tools"

	if ! ( use firebird || use freetds || use mysql || use odbc || use postgres || use sqlite );
	then
		ewarn "You need to enable at least one SQL driver. Enable at least"
		ewarn "one of these USE flags: \"firebird freetds mysql odbc postgres sqlite tds\"."
		die "Enable at least one SQL driver."
	fi

	qt4-build_pkg_setup
}

src_prepare() {
	qt4-build_src_prepare

	sed -e '/pg_config --libs/d' -i "${S}"/configure \
		|| die "sed to fix postgresql usage in ./configure failed"
}

src_configure() {
	# Don't support sqlite2 anymore
	myconf="${myconf} -no-sql-sqlite2
		$(qt_use mysql sql-mysql plugin) $(use mysql && echo "-I${EPREFIX}/usr/include/mysql -L${EPREFIX}/usr/$(get_libdir)/mysql ")
		$(qt_use postgres sql-psql plugin) $(use postgres && echo "-I${EPREFIX}/usr/include/postgresql/pgsql ")
		$(qt_use sqlite sql-sqlite plugin) $(use sqlite && echo '-system-sqlite')
		$(qt_use odbc sql-odbc plugin)
		$(qt_use freetds sql-tds plugin)
		$(qt_use firebird sql-ibase plugin)
		$(qt_use qt3support)"

	myconf="${myconf} $(qt_use iconv) -no-xkb  -no-fontconfig -no-xrender
		-no-xrandr -no-xfixes -no-xcursor -no-xinerama -no-xshape -no-sm
		-no-opengl -no-nas-sound -no-dbus -no-cups -no-nis -no-gif -no-libpng
		-no-libmng -no-libjpeg -no-openssl -system-zlib -no-webkit -no-phonon
		-no-xmlpatterns -no-freetype -no-libtiff -no-accessibility
		-no-fontconfig -no-glib -no-opengl -no-svg -no-gtkstyle"

	qt4-build_src_configure
}






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-sql: ChangeLog qt-sql-4.7.2.ebuild
@ 2011-05-09  7:07 Thomas Kahle (tomka)
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Kahle (tomka) @ 2011-05-09  7:07 UTC (permalink / raw
  To: gentoo-commits

tomka       11/05/09 07:07:50

  Modified:             ChangeLog qt-sql-4.7.2.ebuild
  Log:
  x86 stable per bug 354033
  
  (Portage version: 2.1.9.46/cvs/Linux i686)

Revision  Changes    Path
1.106                x11-libs/qt-sql/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?r1=1.105&r2=1.106

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog	13 Apr 2011 21:10:09 -0000	1.105
+++ ChangeLog	9 May 2011 07:07:50 -0000	1.106
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/qt-sql
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v 1.105 2011/04/13 21:10:09 wired Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v 1.106 2011/05/09 07:07:50 tomka Exp $
+
+  09 May 2011; Thomas Kahle <tomka@gentoo.org> qt-sql-4.7.2.ebuild:
+  x86 stable per bug 354033
 
   13 Apr 2011; Alex Alexander <wired@gentoo.org> -qt-sql-4.7.0.ebuild,
   -qt-sql-4.7.1.ebuild, -qt-sql-4.7.1-r1.ebuild:



1.2                  x11-libs/qt-sql/qt-sql-4.7.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild?r1=1.1&r2=1.2

Index: qt-sql-4.7.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- qt-sql-4.7.2.ebuild	1 Mar 2011 19:10:33 -0000	1.1
+++ qt-sql-4.7.2.ebuild	9 May 2011 07:07:50 -0000	1.2
@@ -1,13 +1,13 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild,v 1.1 2011/03/01 19:10:33 tampakrap Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild,v 1.2 2011/05/09 07:07:50 tomka Exp $
 
 EAPI="3"
 inherit qt4-build
 
 DESCRIPTION="The SQL module for the Qt toolkit"
 SLOT="4"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE="firebird freetds iconv mysql odbc postgres qt3support +sqlite"
 
 DEPEND="~x11-libs/qt-core-${PV}[aqua=,debug=,qt3support=]






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-sql: ChangeLog qt-sql-4.7.2.ebuild
@ 2011-05-09 22:10 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 7+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-05-09 22:10 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/05/09 22:10:42

  Modified:             ChangeLog qt-sql-4.7.2.ebuild
  Log:
  Stable on amd64 wrt bug #354033
  
  (Portage version: 2.1.9.47/cvs/Linux x86_64)

Revision  Changes    Path
1.107                x11-libs/qt-sql/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?rev=1.107&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?rev=1.107&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?r1=1.106&r2=1.107

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog	9 May 2011 07:07:50 -0000	1.106
+++ ChangeLog	9 May 2011 22:10:42 -0000	1.107
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/qt-sql
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v 1.106 2011/05/09 07:07:50 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v 1.107 2011/05/09 22:10:42 hwoarang Exp $
+
+  09 May 2011; Markos Chandras <hwoarang@gentoo.org> qt-sql-4.7.2.ebuild:
+  Stable on amd64 wrt bug #354033
 
   09 May 2011; Thomas Kahle <tomka@gentoo.org> qt-sql-4.7.2.ebuild:
   x86 stable per bug 354033



1.3                  x11-libs/qt-sql/qt-sql-4.7.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild?r1=1.2&r2=1.3

Index: qt-sql-4.7.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- qt-sql-4.7.2.ebuild	9 May 2011 07:07:50 -0000	1.2
+++ qt-sql-4.7.2.ebuild	9 May 2011 22:10:42 -0000	1.3
@@ -1,13 +1,13 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild,v 1.2 2011/05/09 07:07:50 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild,v 1.3 2011/05/09 22:10:42 hwoarang Exp $
 
 EAPI="3"
 inherit qt4-build
 
 DESCRIPTION="The SQL module for the Qt toolkit"
 SLOT="4"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE="firebird freetds iconv mysql odbc postgres qt3support +sqlite"
 
 DEPEND="~x11-libs/qt-core-${PV}[aqua=,debug=,qt3support=]






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-sql: ChangeLog qt-sql-4.7.2.ebuild
@ 2011-06-01 15:08 Brent Baude (ranger)
  0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2011-06-01 15:08 UTC (permalink / raw
  To: gentoo-commits

ranger      11/06/01 15:08:02

  Modified:             ChangeLog qt-sql-4.7.2.ebuild
  Log:
  Marking qt-sql-4.7.2 ~ppc for bug 354033
  
  (Portage version: 2.1.9.42/cvs/Linux ppc64)

Revision  Changes    Path
1.109                x11-libs/qt-sql/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?rev=1.109&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?rev=1.109&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?r1=1.108&r2=1.109

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -r1.108 -r1.109
--- ChangeLog	10 May 2011 20:08:10 -0000	1.108
+++ ChangeLog	1 Jun 2011 15:08:02 -0000	1.109
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/qt-sql
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v 1.108 2011/05/10 20:08:10 tampakrap Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v 1.109 2011/06/01 15:08:02 ranger Exp $
+
+  01 Jun 2011; Brent Baude <ranger@gentoo.org> qt-sql-4.7.2.ebuild:
+  Marking qt-sql-4.7.2 ppc stable for bug 354033
 
 *qt-sql-4.7.3 (10 May 2011)
 



1.4                  x11-libs/qt-sql/qt-sql-4.7.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild?r1=1.3&r2=1.4

Index: qt-sql-4.7.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- qt-sql-4.7.2.ebuild	9 May 2011 22:10:42 -0000	1.3
+++ qt-sql-4.7.2.ebuild	1 Jun 2011 15:08:02 -0000	1.4
@@ -1,13 +1,13 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild,v 1.3 2011/05/09 22:10:42 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild,v 1.4 2011/06/01 15:08:02 ranger Exp $
 
 EAPI="3"
 inherit qt4-build
 
 DESCRIPTION="The SQL module for the Qt toolkit"
 SLOT="4"
-KEYWORDS="amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 -sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE="firebird freetds iconv mysql odbc postgres qt3support +sqlite"
 
 DEPEND="~x11-libs/qt-core-${PV}[aqua=,debug=,qt3support=]






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-sql: ChangeLog qt-sql-4.7.2.ebuild
@ 2011-06-05 12:14 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2011-06-05 12:14 UTC (permalink / raw
  To: gentoo-commits

maekke      11/06/05 12:14:49

  Modified:             ChangeLog qt-sql-4.7.2.ebuild
  Log:
  arm stable, bug #354033
  
  (Portage version: 2.1.9.50/cvs/Linux i686)

Revision  Changes    Path
1.110                x11-libs/qt-sql/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?rev=1.110&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?rev=1.110&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?r1=1.109&r2=1.110

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ChangeLog	1 Jun 2011 15:08:02 -0000	1.109
+++ ChangeLog	5 Jun 2011 12:14:48 -0000	1.110
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/qt-sql
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v 1.109 2011/06/01 15:08:02 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v 1.110 2011/06/05 12:14:48 maekke Exp $
+
+  05 Jun 2011; Markus Meier <maekke@gentoo.org> qt-sql-4.7.2.ebuild:
+  arm stable, bug #354033
 
   01 Jun 2011; Brent Baude <ranger@gentoo.org> qt-sql-4.7.2.ebuild:
   Marking qt-sql-4.7.2 ppc stable for bug 354033



1.5                  x11-libs/qt-sql/qt-sql-4.7.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild?r1=1.4&r2=1.5

Index: qt-sql-4.7.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- qt-sql-4.7.2.ebuild	1 Jun 2011 15:08:02 -0000	1.4
+++ qt-sql-4.7.2.ebuild	5 Jun 2011 12:14:48 -0000	1.5
@@ -1,13 +1,13 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild,v 1.4 2011/06/01 15:08:02 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild,v 1.5 2011/06/05 12:14:48 maekke Exp $
 
 EAPI="3"
 inherit qt4-build
 
 DESCRIPTION="The SQL module for the Qt toolkit"
 SLOT="4"
-KEYWORDS="amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 -sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm ~hppa ~ia64 ~mips ppc ~ppc64 -sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE="firebird freetds iconv mysql odbc postgres qt3support +sqlite"
 
 DEPEND="~x11-libs/qt-core-${PV}[aqua=,debug=,qt3support=]






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-sql: ChangeLog qt-sql-4.7.2.ebuild
@ 2011-07-13 12:44 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 7+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-07-13 12:44 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/07/13 12:44:39

  Modified:             ChangeLog qt-sql-4.7.2.ebuild
  Log:
  ppc64 stable wrt #354033
  
  (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)

Revision  Changes    Path
1.111                x11-libs/qt-sql/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?rev=1.111&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?rev=1.111&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?r1=1.110&r2=1.111

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- ChangeLog	5 Jun 2011 12:14:48 -0000	1.110
+++ ChangeLog	13 Jul 2011 12:44:39 -0000	1.111
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/qt-sql
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v 1.110 2011/06/05 12:14:48 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v 1.111 2011/07/13 12:44:39 xarthisius Exp $
+
+  13 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> qt-sql-4.7.2.ebuild:
+  ppc64 stable wrt #354033
 
   05 Jun 2011; Markus Meier <maekke@gentoo.org> qt-sql-4.7.2.ebuild:
   arm stable, bug #354033



1.6                  x11-libs/qt-sql/qt-sql-4.7.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild?r1=1.5&r2=1.6

Index: qt-sql-4.7.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- qt-sql-4.7.2.ebuild	5 Jun 2011 12:14:48 -0000	1.5
+++ qt-sql-4.7.2.ebuild	13 Jul 2011 12:44:39 -0000	1.6
@@ -1,13 +1,13 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild,v 1.5 2011/06/05 12:14:48 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.7.2.ebuild,v 1.6 2011/07/13 12:44:39 xarthisius Exp $
 
 EAPI="3"
 inherit qt4-build
 
 DESCRIPTION="The SQL module for the Qt toolkit"
 SLOT="4"
-KEYWORDS="amd64 arm ~hppa ~ia64 ~mips ppc ~ppc64 -sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm ~hppa ~ia64 ~mips ppc ppc64 -sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE="firebird freetds iconv mysql odbc postgres qt3support +sqlite"
 
 DEPEND="~x11-libs/qt-core-${PV}[aqua=,debug=,qt3support=]






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-sql: ChangeLog qt-sql-4.7.2.ebuild
@ 2012-05-14 12:54 Johannes Huber (johu)
  0 siblings, 0 replies; 7+ messages in thread
From: Johannes Huber (johu) @ 2012-05-14 12:54 UTC (permalink / raw
  To: gentoo-commits

johu        12/05/14 12:54:39

  Modified:             ChangeLog
  Removed:              qt-sql-4.7.2.ebuild
  Log:
  Removing Qt-4.7.2
  
  (Portage version: 2.2.0_alpha104/cvs/Linux i686)

Revision  Changes    Path
1.132                x11-libs/qt-sql/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?rev=1.132&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?rev=1.132&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qt-sql/ChangeLog?r1=1.131&r2=1.132

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -r1.131 -r1.132
--- ChangeLog	13 May 2012 16:42:35 -0000	1.131
+++ ChangeLog	14 May 2012 12:54:39 -0000	1.132
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/qt-sql
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v 1.131 2012/05/13 16:42:35 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v 1.132 2012/05/14 12:54:39 johu Exp $
+
+  14 May 2012; Johannes Huber <johu@gentoo.org> -qt-sql-4.7.2.ebuild:
+  Drop Qt-4.7.2
 
   13 May 2012; Alexis Ballier <aballier@gentoo.org> qt-sql-4.8.1-r1.ebuild:
   keyword ~amd64-fbsd






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

end of thread, other threads:[~2012-05-14 12:54 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-09 22:10 [gentoo-commits] gentoo-x86 commit in x11-libs/qt-sql: ChangeLog qt-sql-4.7.2.ebuild Markos Chandras (hwoarang)
  -- strict thread matches above, loose matches on Subject: below --
2012-05-14 12:54 Johannes Huber (johu)
2011-07-13 12:44 Kacper Kowalik (xarthisius)
2011-06-05 12:14 Markus Meier (maekke)
2011-06-01 15:08 Brent Baude (ranger)
2011-05-09  7:07 Thomas Kahle (tomka)
2011-03-01 19:10 Theo Chatzimichos (tampakrap)

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