public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-assistant: qt-assistant-4.4.2-r1.ebuild ChangeLog
@ 2009-01-05 23:55 Ben de Groot (yngwin)
  0 siblings, 0 replies; 9+ messages in thread
From: Ben de Groot (yngwin) @ 2009-01-05 23:55 UTC (permalink / raw
  To: gentoo-commits

yngwin      09/01/05 23:55:06

  Modified:             ChangeLog
  Added:                qt-assistant-4.4.2-r1.ebuild
  Log:
  Add fix to install correct icon, bug 241208.
  (Portage version: 2.2_rc20/cvs/Linux 2.6.27-hh7 i686)

Revision  Changes    Path
1.17                 x11-libs/qt-assistant/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	1 Oct 2008 21:46:23 -0000	1.16
+++ ChangeLog	5 Jan 2009 23:55:06 -0000	1.17
@@ -1,6 +1,12 @@
 # ChangeLog for x11-libs/qt-assistant
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.16 2008/10/01 21:46:23 robbat2 Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.17 2009/01/05 23:55:06 yngwin Exp $
+
+*qt-assistant-4.4.2-r1 (05 Jan 2009)
+
+  05 Jan 2009; Ben de Groot <yngwin@gentoo.org>
+  +qt-assistant-4.4.2-r1.ebuild:
+  Add fix to install correct icon, bug 241208.
 
   01 Oct 2008; Robin H. Johnson <robbat2@gentoo.org> metadata.xml:
   Fix unicode apostrophe that was causing an error during use.local.desc



1.1                  x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild

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

Index: qt-assistant-4.4.2-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v 1.1 2009/01/05 23:55:06 yngwin Exp $

EAPI="1"
inherit qt4-build

DESCRIPTION="The assistant help module for the Qt toolkit."
HOMEPAGE="http://www.trolltech.com/"

LICENSE="|| ( GPL-3 GPL-2 )"
SLOT="4"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="+webkit"

DEPEND="~x11-libs/qt-gui-${PV}
	~x11-libs/qt-sql-${PV}
	!alpha? ( !ia64? ( !sparc? ( webkit? ( ~x11-libs/qt-webkit-${PV} ) ) ) )
	!<=x11-libs/qt-4.4.0_alpha:${SLOT}"
RDEPEND="${DEPEND}"

# Pixeltool isn't really assistant related, but it relies on
# the assistant libraries.
QT4_TARGET_DIRECTORIES="tools/assistant tools/pixeltool"
QT4_EXTRACT_DIRECTORIES="${QT4_TARGET_DIRECTORIES}
doc/qch/
src/3rdparty/clucene/
tools/shared/fontpanel"

pkg_setup() {
	qt4-build_pkg_setup

	if ! built_with_use x11-libs/qt-sql sqlite; then
		die "You must first emerge x11-libs/qt-sql with the \"sqlite\" use flag in order to use qt-assistant"
	fi
}

src_compile() {
	local myconf
	myconf="${myconf} -no-xkb -no-tablet -no-fontconfig -no-xrender -no-xrandr
		-no-xfixes -no-xcursor -no-xinerama -no-xshape -no-sm -no-opengl
		-no-nas-sound -no-dbus -iconv -no-cups -no-nis -no-gif -no-libpng
		-no-libmng -no-libjpeg -no-openssl -system-zlib -no-phonon
		-no-xmlpatterns -no-freetype -no-libtiff -no-accessibility
		-no-fontconfig -no-glib -no-opengl -no-qt3support -no-svg"
	if use webkit; then
		myconf="$myconf -assistant-webkit"
	else
		myconf="$myconf -no-webkit"
	fi

	qt4-build_src_compile
}

src_install() {
	qt4-build_src_install

	# install correct assistant icon, bug 241208
	dodir /usr/share/pixmaps/ || die "dodir failed"
	insinto /usr/share/pixmaps/ || die "insinto failed"
	doins tools/assistant/tools/assistant/images/assistant.png \
		|| die "doins failed"
	# Note: absolute image path required here!
	make_desktop_entry /usr/bin/assistant Assistant \
		/usr/share/pixmaps/assistant.png 'Qt;Development;GUIDesigner' \
		|| die "make_desktop_entry failed"

	insinto ${QTDOCDIR}
	doins -r doc/qch/ || die 'Installing qch files failed'
}






^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-assistant: qt-assistant-4.4.2-r1.ebuild ChangeLog
@ 2009-01-17 16:03 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 9+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-01-17 16:03 UTC (permalink / raw
  To: gentoo-commits

nixnut      09/01/17 16:03:30

  Modified:             qt-assistant-4.4.2-r1.ebuild ChangeLog
  Log:
  ppc stable #248038
  (Portage version: 2.1.6.4/cvs/Linux 2.6.27-hardened-r3 ppc)

Revision  Changes    Path
1.2                  x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild

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

Index: qt-assistant-4.4.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- qt-assistant-4.4.2-r1.ebuild	5 Jan 2009 23:55:06 -0000	1.1
+++ qt-assistant-4.4.2-r1.ebuild	17 Jan 2009 16:03:30 -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/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v 1.1 2009/01/05 23:55:06 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v 1.2 2009/01/17 16:03:30 nixnut Exp $
 
 EAPI="1"
 inherit qt4-build
@@ -10,7 +10,7 @@
 
 LICENSE="|| ( GPL-3 GPL-2 )"
 SLOT="4"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc ~x86"
 IUSE="+webkit"
 
 DEPEND="~x11-libs/qt-gui-${PV}



1.19                 x11-libs/qt-assistant/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	6 Jan 2009 14:48:01 -0000	1.18
+++ ChangeLog	17 Jan 2009 16:03:30 -0000	1.19
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/qt-assistant
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.18 2009/01/06 14:48:01 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.19 2009/01/17 16:03:30 nixnut Exp $
+
+  17 Jan 2009; nixnut <nixnut@gentoo.org> qt-assistant-4.4.2-r1.ebuild:
+  ppc stable #248038
 
   06 Jan 2009; Ben de Groot <yngwin@gentoo.org>
   -qt-assistant-4.4.0-r1.ebuild, -qt-assistant-4.4.1.ebuild,






^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-assistant: qt-assistant-4.4.2-r1.ebuild ChangeLog
@ 2009-01-18 20:00 Markus Meier (maekke)
  0 siblings, 0 replies; 9+ messages in thread
From: Markus Meier (maekke) @ 2009-01-18 20:00 UTC (permalink / raw
  To: gentoo-commits

maekke      09/01/18 20:00:12

  Modified:             qt-assistant-4.4.2-r1.ebuild ChangeLog
  Log:
  amd64/x86 stable, bug #248038
  (Portage version: 2.1.6.6/cvs/Linux 2.6.28 x86_64)

Revision  Changes    Path
1.3                  x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild

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

Index: qt-assistant-4.4.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- qt-assistant-4.4.2-r1.ebuild	17 Jan 2009 16:03:30 -0000	1.2
+++ qt-assistant-4.4.2-r1.ebuild	18 Jan 2009 20:00:12 -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/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v 1.2 2009/01/17 16:03:30 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v 1.3 2009/01/18 20:00:12 maekke Exp $
 
 EAPI="1"
 inherit qt4-build
@@ -10,7 +10,7 @@
 
 LICENSE="|| ( GPL-3 GPL-2 )"
 SLOT="4"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86"
 IUSE="+webkit"
 
 DEPEND="~x11-libs/qt-gui-${PV}



1.20                 x11-libs/qt-assistant/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	17 Jan 2009 16:03:30 -0000	1.19
+++ ChangeLog	18 Jan 2009 20:00:12 -0000	1.20
@@ -1,6 +1,10 @@
 # ChangeLog for x11-libs/qt-assistant
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.19 2009/01/17 16:03:30 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.20 2009/01/18 20:00:12 maekke Exp $
+
+  18 Jan 2009; Markus Meier <maekke@gentoo.org>
+  qt-assistant-4.4.2-r1.ebuild:
+  amd64/x86 stable, bug #248038
 
   17 Jan 2009; nixnut <nixnut@gentoo.org> qt-assistant-4.4.2-r1.ebuild:
   ppc stable #248038






^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-assistant: qt-assistant-4.4.2-r1.ebuild ChangeLog
@ 2009-01-29 19:59 Alexis Ballier (aballier)
  0 siblings, 0 replies; 9+ messages in thread
From: Alexis Ballier (aballier) @ 2009-01-29 19:59 UTC (permalink / raw
  To: gentoo-commits

aballier    09/01/29 19:59:29

  Modified:             qt-assistant-4.4.2-r1.ebuild ChangeLog
  Log:
  keyword ~x86-fbsd
  (Portage version: 2.2_rc23/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild

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

Index: qt-assistant-4.4.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- qt-assistant-4.4.2-r1.ebuild	18 Jan 2009 20:00:12 -0000	1.3
+++ qt-assistant-4.4.2-r1.ebuild	29 Jan 2009 19:59:29 -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/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v 1.3 2009/01/18 20:00:12 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v 1.4 2009/01/29 19:59:29 aballier Exp $
 
 EAPI="1"
 inherit qt4-build
@@ -10,7 +10,7 @@
 
 LICENSE="|| ( GPL-3 GPL-2 )"
 SLOT="4"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="+webkit"
 
 DEPEND="~x11-libs/qt-gui-${PV}



1.21                 x11-libs/qt-assistant/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	18 Jan 2009 20:00:12 -0000	1.20
+++ ChangeLog	29 Jan 2009 19:59:29 -0000	1.21
@@ -1,6 +1,10 @@
 # ChangeLog for x11-libs/qt-assistant
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.20 2009/01/18 20:00:12 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.21 2009/01/29 19:59:29 aballier Exp $
+
+  29 Jan 2009; Alexis Ballier <aballier@gentoo.org>
+  qt-assistant-4.4.2-r1.ebuild:
+  keyword ~x86-fbsd
 
   18 Jan 2009; Markus Meier <maekke@gentoo.org>
   qt-assistant-4.4.2-r1.ebuild:






^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-assistant: qt-assistant-4.4.2-r1.ebuild ChangeLog
@ 2009-01-31 18:15 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 9+ messages in thread
From: Tobias Klausmann (klausman) @ 2009-01-31 18:15 UTC (permalink / raw
  To: gentoo-commits

klausman    09/01/31 18:15:50

  Modified:             qt-assistant-4.4.2-r1.ebuild ChangeLog
  Log:
  Stable on alpha, bug #248038
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild

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

Index: qt-assistant-4.4.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- qt-assistant-4.4.2-r1.ebuild	29 Jan 2009 19:59:29 -0000	1.4
+++ qt-assistant-4.4.2-r1.ebuild	31 Jan 2009 18:15:50 -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/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v 1.4 2009/01/29 19:59:29 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v 1.5 2009/01/31 18:15:50 klausman Exp $
 
 EAPI="1"
 inherit qt4-build
@@ -10,7 +10,7 @@
 
 LICENSE="|| ( GPL-3 GPL-2 )"
 SLOT="4"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="+webkit"
 
 DEPEND="~x11-libs/qt-gui-${PV}



1.22                 x11-libs/qt-assistant/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	29 Jan 2009 19:59:29 -0000	1.21
+++ ChangeLog	31 Jan 2009 18:15:50 -0000	1.22
@@ -1,6 +1,10 @@
 # ChangeLog for x11-libs/qt-assistant
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.21 2009/01/29 19:59:29 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.22 2009/01/31 18:15:50 klausman Exp $
+
+  31 Jan 2009; Tobias Klausmann <klausman@gentoo.org>
+  qt-assistant-4.4.2-r1.ebuild:
+  Stable on alpha, bug #248038
 
   29 Jan 2009; Alexis Ballier <aballier@gentoo.org>
   qt-assistant-4.4.2-r1.ebuild:






^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-assistant: qt-assistant-4.4.2-r1.ebuild ChangeLog
@ 2009-02-04 21:14 Ben de Groot (yngwin)
  0 siblings, 0 replies; 9+ messages in thread
From: Ben de Groot (yngwin) @ 2009-02-04 21:14 UTC (permalink / raw
  To: gentoo-commits

yngwin      09/02/04 21:14:02

  Modified:             qt-assistant-4.4.2-r1.ebuild ChangeLog
  Log:
  Clean up DEPEND now that proper webkit useflag masks are in profiles
  (Portage version: 2.2_rc23/cvs/Linux i686)

Revision  Changes    Path
1.6                  x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild

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

Index: qt-assistant-4.4.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- qt-assistant-4.4.2-r1.ebuild	31 Jan 2009 18:15:50 -0000	1.5
+++ qt-assistant-4.4.2-r1.ebuild	4 Feb 2009 21:14:02 -0000	1.6
@@ -1,11 +1,11 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v 1.5 2009/01/31 18:15:50 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v 1.6 2009/02/04 21:14:02 yngwin Exp $
 
 EAPI="1"
 inherit qt4-build
 
-DESCRIPTION="The assistant help module for the Qt toolkit."
+DESCRIPTION="The assistant help module for the Qt toolkit"
 HOMEPAGE="http://www.trolltech.com/"
 
 LICENSE="|| ( GPL-3 GPL-2 )"
@@ -15,8 +15,7 @@
 
 DEPEND="~x11-libs/qt-gui-${PV}
 	~x11-libs/qt-sql-${PV}
-	!alpha? ( !ia64? ( !sparc? ( webkit? ( ~x11-libs/qt-webkit-${PV} ) ) ) )
-	!<=x11-libs/qt-4.4.0_alpha:${SLOT}"
+	webkit? ( ~x11-libs/qt-webkit-${PV} )"
 RDEPEND="${DEPEND}"
 
 # Pixeltool isn't really assistant related, but it relies on



1.23                 x11-libs/qt-assistant/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	31 Jan 2009 18:15:50 -0000	1.22
+++ ChangeLog	4 Feb 2009 21:14:02 -0000	1.23
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/qt-assistant
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.22 2009/01/31 18:15:50 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.23 2009/02/04 21:14:02 yngwin Exp $
+
+  04 Feb 2009; Ben de Groot <yngwin@gentoo.org> qt-assistant-4.4.2-r1:
+  Clean up DEPEND now that proper webkit useflag masks are in profiles
 
   31 Jan 2009; Tobias Klausmann <klausman@gentoo.org>
   qt-assistant-4.4.2-r1.ebuild:






^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-assistant: qt-assistant-4.4.2-r1.ebuild ChangeLog
@ 2009-02-04 23:27 Brent Baude (ranger)
  0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2009-02-04 23:27 UTC (permalink / raw
  To: gentoo-commits

ranger      09/02/04 23:27:21

  Modified:             qt-assistant-4.4.2-r1.ebuild ChangeLog
  Log:
  Marking qt-assistant-4.4.2-r1 ppc64 for bug 248038
  (Portage version: 2.1.6.6/cvs/Linux 2.6.24-gentoo-r3-g5-64 ppc64)

Revision  Changes    Path
1.7                  x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild

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

Index: qt-assistant-4.4.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- qt-assistant-4.4.2-r1.ebuild	4 Feb 2009 21:14:02 -0000	1.6
+++ qt-assistant-4.4.2-r1.ebuild	4 Feb 2009 23:27:21 -0000	1.7
@@ -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/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v 1.6 2009/02/04 21:14:02 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v 1.7 2009/02/04 23:27:21 ranger Exp $
 
 EAPI="1"
 inherit qt4-build
@@ -10,7 +10,7 @@
 
 LICENSE="|| ( GPL-3 GPL-2 )"
 SLOT="4"
-KEYWORDS="alpha amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="+webkit"
 
 DEPEND="~x11-libs/qt-gui-${PV}



1.24                 x11-libs/qt-assistant/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	4 Feb 2009 21:14:02 -0000	1.23
+++ ChangeLog	4 Feb 2009 23:27:21 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/qt-assistant
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.23 2009/02/04 21:14:02 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.24 2009/02/04 23:27:21 ranger Exp $
+
+  04 Feb 2009; Brent Baude <ranger@gentoo.org> qt-assistant-4.4.2-r1.ebuild:
+  Marking qt-assistant-4.4.2-r1 ppc64 stable for bug 248038
 
   04 Feb 2009; Ben de Groot <yngwin@gentoo.org> qt-assistant-4.4.2-r1:
   Clean up DEPEND now that proper webkit useflag masks are in profiles






^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-assistant: qt-assistant-4.4.2-r1.ebuild ChangeLog
@ 2009-02-06 16:28 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2009-02-06 16:28 UTC (permalink / raw
  To: gentoo-commits

armin76     09/02/06 16:28:44

  Modified:             qt-assistant-4.4.2-r1.ebuild ChangeLog
  Log:
  ia64/sparc stable wrt #248038
  (Portage version: 2.1.6.4/cvs/Linux 2.6.26-gentoo-r2 ia64)

Revision  Changes    Path
1.8                  x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild

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

Index: qt-assistant-4.4.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- qt-assistant-4.4.2-r1.ebuild	4 Feb 2009 23:27:21 -0000	1.7
+++ qt-assistant-4.4.2-r1.ebuild	6 Feb 2009 16:28:44 -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/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v 1.7 2009/02/04 23:27:21 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v 1.8 2009/02/06 16:28:44 armin76 Exp $
 
 EAPI="1"
 inherit qt4-build
@@ -10,7 +10,7 @@
 
 LICENSE="|| ( GPL-3 GPL-2 )"
 SLOT="4"
-KEYWORDS="alpha amd64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="+webkit"
 
 DEPEND="~x11-libs/qt-gui-${PV}



1.25                 x11-libs/qt-assistant/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	4 Feb 2009 23:27:21 -0000	1.24
+++ ChangeLog	6 Feb 2009 16:28:44 -0000	1.25
@@ -1,6 +1,10 @@
 # ChangeLog for x11-libs/qt-assistant
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.24 2009/02/04 23:27:21 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.25 2009/02/06 16:28:44 armin76 Exp $
+
+  06 Feb 2009; Raúl Porcel <armin76@gentoo.org>
+  qt-assistant-4.4.2-r1.ebuild:
+  ia64/sparc stable wrt #248038
 
   04 Feb 2009; Brent Baude <ranger@gentoo.org> qt-assistant-4.4.2-r1.ebuild:
   Marking qt-assistant-4.4.2-r1 ppc64 stable for bug 248038






^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in x11-libs/qt-assistant: qt-assistant-4.4.2-r1.ebuild ChangeLog
@ 2009-02-18 20:16 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2009-02-18 20:16 UTC (permalink / raw
  To: gentoo-commits

jer         09/02/18 20:16:38

  Modified:             qt-assistant-4.4.2-r1.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #248083).
  (Portage version: 2.2_rc23/cvs/Linux i686)

Revision  Changes    Path
1.9                  x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild

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

Index: qt-assistant-4.4.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- qt-assistant-4.4.2-r1.ebuild	6 Feb 2009 16:28:44 -0000	1.8
+++ qt-assistant-4.4.2-r1.ebuild	18 Feb 2009 20:16:38 -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/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v 1.8 2009/02/06 16:28:44 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/qt-assistant-4.4.2-r1.ebuild,v 1.9 2009/02/18 20:16:38 jer Exp $
 
 EAPI="1"
 inherit qt4-build
@@ -10,7 +10,7 @@
 
 LICENSE="|| ( GPL-3 GPL-2 )"
 SLOT="4"
-KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="+webkit"
 
 DEPEND="~x11-libs/qt-gui-${PV}



1.27                 x11-libs/qt-assistant/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	11 Feb 2009 23:15:09 -0000	1.26
+++ ChangeLog	18 Feb 2009 20:16:38 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/qt-assistant
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.26 2009/02/11 23:15:09 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-assistant/ChangeLog,v 1.27 2009/02/18 20:16:38 jer Exp $
+
+  18 Feb 2009; Jeroen Roovers <jer@gentoo.org> qt-assistant-4.4.2-r1.ebuild:
+  Stable for HPPA (bug #248083).
 
 *qt-assistant-4.5.0_rc1 (11 Feb 2009)
 






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

end of thread, other threads:[~2009-02-18 20:16 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-05 23:55 [gentoo-commits] gentoo-x86 commit in x11-libs/qt-assistant: qt-assistant-4.4.2-r1.ebuild ChangeLog Ben de Groot (yngwin)
  -- strict thread matches above, loose matches on Subject: below --
2009-01-17 16:03 Gysbert Wassenaar (nixnut)
2009-01-18 20:00 Markus Meier (maekke)
2009-01-29 19:59 Alexis Ballier (aballier)
2009-01-31 18:15 Tobias Klausmann (klausman)
2009-02-04 21:14 Ben de Groot (yngwin)
2009-02-04 23:27 Brent Baude (ranger)
2009-02-06 16:28 Raul Porcel (armin76)
2009-02-18 20:16 Jeroen Roovers (jer)

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