public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-libs/webkit-gtk: ChangeLog webkit-gtk-1.1.10.ebuild
@ 2009-06-19 17:26 Romain Perier (mrpouet)
  0 siblings, 0 replies; 7+ messages in thread
From: Romain Perier (mrpouet) @ 2009-06-19 17:26 UTC (permalink / raw
  To: gentoo-commits

mrpouet     09/06/19 17:26:25

  Modified:             ChangeLog
  Added:                webkit-gtk-1.1.10.ebuild
  Log:
  Bump to 1.1.10, bug #274445, thanks to Priit Laes <amd@store20.com>
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.34                 net-libs/webkit-gtk/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/ChangeLog?r1=1.33&r2=1.34

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	3 Jun 2009 17:29:12 -0000	1.33
+++ ChangeLog	19 Jun 2009 17:26:25 -0000	1.34
@@ -1,6 +1,11 @@
 # ChangeLog for net-libs/webkit-gtk
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.33 2009/06/03 17:29:12 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.34 2009/06/19 17:26:25 mrpouet Exp $
+
+*webkit-gtk-1.1.10 (19 Jun 2009)
+
+  19 Jun 2009; <mrpouet@gentoo.org> +webkit-gtk-1.1.10.ebuild:
+  Bump to 1.1.10, bug #274445, thanks to Priit Laes <amd@store20.com>
 
   03 Jun 2009; Nirbheek Chauhan <nirbheek@gentoo.org>
   webkit-gtk-1.1.8.ebuild:



1.1                  net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild?rev=1.1&content-type=text/plain

Index: webkit-gtk-1.1.10.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v 1.1 2009/06/19 17:26:25 mrpouet Exp $

EAPI="2"

inherit autotools

MY_P="webkit-${PV}"
DESCRIPTION="Open source web browser engine"
HOMEPAGE="http://www.webkitgtk.org/"
SRC_URI="http://www.webkitgtk.org/${MY_P}.tar.gz"

LICENSE="LGPL-2 LGPL-2.1 BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd"
# geoclue
IUSE="coverage debug doc gnome-keyring +gstreamer pango"

# use sqlite, svg by default
RDEPEND="
	dev-libs/libxml2
	dev-libs/libxslt
	media-libs/jpeg
	media-libs/libpng
	x11-libs/cairo

	>=x11-libs/gtk+-2.10
	>=dev-libs/icu-3.8.1-r1
	>=net-libs/libsoup-2.25.90
	>=dev-db/sqlite-3
	>=app-text/enchant-0.22

	gnome-keyring? ( >=gnome-base/gnome-keyring-2.26.0 )
	gstreamer? (
		media-libs/gstreamer:0.10
		media-libs/gst-plugins-base:0.10 )
	pango? ( x11-libs/pango )
	!pango? (
		media-libs/freetype:2
		media-libs/fontconfig )
"
DEPEND="${RDEPEND}
	sys-devel/gettext
	dev-util/gperf
	dev-util/pkgconfig
	doc? ( >=dev-util/gtk-doc-1.10 )"

S="${WORKDIR}/${MY_P}"

src_prepare() {
	# Make it libtool-1 compatible
	rm -v autotools/lt* autotools/libtool.m4 || die "removing libtool macros failed"
	# Don't force -O2
	sed -i 's/-O2//g' "${S}"/configure.ac || die "sed failed"
	# Prevent maintainer mode from being triggered during make
	AT_M4DIR=autotools eautoreconf
}

src_configure() {
	# It doesn't compile on alpha without this in LDFLAGS
	use alpha && append-ldflags "-Wl,--no-relax"

	local myconf

	myconf="
		$(use_enable gnome-keyring gnomekeyring)
		$(use_enable gstreamer video)
		$(use_enable debug)
		$(use_enable coverage)
		--enable-filters
		"

	# USE-flag controlled font backend because upstream default is freetype
	# Remove USE-flag once font-backend becomes pango upstream
	if use pango; then
		ewarn "You have enabled the incomplete pango backend"
		ewarn "Please file any and all bugs *upstream*"
		myconf="${myconf} --with-font-backend=pango"
	else
		myconf="${myconf} --with-font-backend=freetype"
	fi

	econf ${myconf}
}

src_install() {
	emake DESTDIR="${D}" install || die "Install failed"
	dodoc WebKit/gtk/{NEWS,ChangeLog} || die "dodoc failed"
}






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

* [gentoo-commits] gentoo-x86 commit in net-libs/webkit-gtk: ChangeLog webkit-gtk-1.1.10.ebuild
@ 2009-07-27 20:21 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 7+ messages in thread
From: Diego Petteno (flameeyes) @ 2009-07-27 20:21 UTC (permalink / raw
  To: gentoo-commits

flameeyes    09/07/27 20:21:53

  Modified:             ChangeLog webkit-gtk-1.1.10.ebuild
  Log:
  Add missing flex dependency.
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.44                 net-libs/webkit-gtk/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	21 Jul 2009 23:20:13 -0000	1.43
+++ ChangeLog	27 Jul 2009 20:21:53 -0000	1.44
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/webkit-gtk
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.43 2009/07/21 23:20:13 jokey Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.44 2009/07/27 20:21:53 flameeyes Exp $
+
+  27 Jul 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+  webkit-gtk-1.1.10.ebuild:
+  Add missing flex dependency.
 
   21 Jul 2009; Markus Ullmann <jokey@gentoo.org>
   -webkit-gtk-0_p46126.ebuild, +webkit-gtk-0_p46193.ebuild:



1.2                  net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild

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

Index: webkit-gtk-1.1.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- webkit-gtk-1.1.10.ebuild	19 Jun 2009 17:26:25 -0000	1.1
+++ webkit-gtk-1.1.10.ebuild	27 Jul 2009 20:21:53 -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/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v 1.1 2009/06/19 17:26:25 mrpouet Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v 1.2 2009/07/27 20:21:53 flameeyes Exp $
 
 EAPI="2"
 
@@ -41,6 +41,7 @@
 		media-libs/fontconfig )
 "
 DEPEND="${RDEPEND}
+	sys-devel/flex
 	sys-devel/gettext
 	dev-util/gperf
 	dev-util/pkgconfig






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

* [gentoo-commits] gentoo-x86 commit in net-libs/webkit-gtk: ChangeLog webkit-gtk-1.1.10.ebuild
@ 2009-09-28  0:18 Mart Raudsepp (leio)
  0 siblings, 0 replies; 7+ messages in thread
From: Mart Raudsepp (leio) @ 2009-09-28  0:18 UTC (permalink / raw
  To: gentoo-commits

leio        09/09/28 00:18:00

  Modified:             ChangeLog webkit-gtk-1.1.10.ebuild
  Log:
  Reduce the gnome-keyring requirement to be able to stabilize the security fixes in this version earlier. Tweak some other dependencies to be more correct, also fixing bug 277463
  (Portage version: 2.2_rc22/cvs/Linux 2.6.31-gentoo x86_64)

Revision  Changes    Path
1.48                 net-libs/webkit-gtk/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog	27 Sep 2009 18:31:52 -0000	1.47
+++ ChangeLog	28 Sep 2009 00:17:59 -0000	1.48
@@ -1,6 +1,13 @@
 # ChangeLog for net-libs/webkit-gtk
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.47 2009/09/27 18:31:52 leio Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.48 2009/09/28 00:17:59 leio Exp $
+
+  28 Sep 2009; Mart Raudsepp <leio@gentoo.org>
+  +files/webkit-gtk-1.1.10-reduce-gnome-keyring-req.patch,
+  webkit-gtk-1.1.10.ebuild:
+  Reduce the gnome-keyring requirement to be able to stabilize the security
+  fixes in this version earlier. Tweak some other dependencies to be more
+  correct, also fixing bug 277463
 
   27 Sep 2009; Mart Raudsepp <leio@gentoo.org>
   -files/webkit-gtk-0_p46126-cxxmissing.patch,



1.4                  net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild

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

Index: webkit-gtk-1.1.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- webkit-gtk-1.1.10.ebuild	12 Sep 2009 22:42:02 -0000	1.3
+++ webkit-gtk-1.1.10.ebuild	28 Sep 2009 00:17:59 -0000	1.4
@@ -1,10 +1,10 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v 1.3 2009/09/12 22:42:02 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v 1.4 2009/09/28 00:17:59 leio Exp $
 
 EAPI="2"
 
-inherit autotools
+inherit autotools eutils
 
 MY_P="webkit-${PV}"
 DESCRIPTION="Open source web browser engine"
@@ -26,15 +26,16 @@
 	x11-libs/cairo
 
 	>=x11-libs/gtk+-2.10
+	>=gnome-base/gail-1.8
 	>=dev-libs/icu-3.8.1-r1
 	>=net-libs/libsoup-2.25.90
 	>=dev-db/sqlite-3
 	>=app-text/enchant-0.22
 
-	gnome-keyring? ( >=gnome-base/gnome-keyring-2.26.0 )
+	gnome-keyring? ( >=gnome-base/gnome-keyring-2.22.3-r2 )
 	gstreamer? (
 		media-libs/gstreamer:0.10
-		media-libs/gst-plugins-base:0.10 )
+		>=media-libs/gst-plugins-base-0.10.11:0.10 )
 	pango? ( x11-libs/pango )
 	!pango? (
 		media-libs/freetype:2
@@ -55,6 +56,13 @@
 	rm -v autotools/lt* autotools/libtool.m4 || die "removing libtool macros failed"
 	# Don't force -O2
 	sed -i 's/-O2//g' "${S}"/configure.ac || die "sed failed"
+
+	# Reduce the gnome-keyring requirement from 2.26 to 2.22.3:
+	# Upstream requires so new version only because earlier versions didn't install headers
+	# that can be included from C++ code. We now have fixes to the headers in our
+	# gnome-keyring-2.22.3-r2, so we can work with just that if we reduce req in configure.
+	epatch "${FILESDIR}/${P}-reduce-gnome-keyring-req.patch"
+
 	# Prevent maintainer mode from being triggered during make
 	AT_M4DIR=autotools eautoreconf
 }






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

* [gentoo-commits] gentoo-x86 commit in net-libs/webkit-gtk: ChangeLog webkit-gtk-1.1.10.ebuild
@ 2009-09-28  2:12 Olivier Crete (tester)
  0 siblings, 0 replies; 7+ messages in thread
From: Olivier Crete (tester) @ 2009-09-28  2:12 UTC (permalink / raw
  To: gentoo-commits

tester      09/09/28 02:12:38

  Modified:             ChangeLog webkit-gtk-1.1.10.ebuild
  Log:
  amd64 stable, bug #271865
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.49                 net-libs/webkit-gtk/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	28 Sep 2009 00:17:59 -0000	1.48
+++ ChangeLog	28 Sep 2009 02:12:38 -0000	1.49
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/webkit-gtk
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.48 2009/09/28 00:17:59 leio Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.49 2009/09/28 02:12:38 tester Exp $
+
+  28 Sep 2009; Olivier Crête <tester@gentoo.org> webkit-gtk-1.1.10.ebuild:
+  amd64 stable, bug #271865
 
   28 Sep 2009; Mart Raudsepp <leio@gentoo.org>
   +files/webkit-gtk-1.1.10-reduce-gnome-keyring-req.patch,



1.6                  net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild

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

Index: webkit-gtk-1.1.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- webkit-gtk-1.1.10.ebuild	28 Sep 2009 01:51:44 -0000	1.5
+++ webkit-gtk-1.1.10.ebuild	28 Sep 2009 02:12:38 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v 1.5 2009/09/28 01:51:44 tester Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v 1.6 2009/09/28 02:12:38 tester Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2 LGPL-2.1 BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd"
 # geoclue
 IUSE="coverage debug doc gnome-keyring +gstreamer pango"
 






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

* [gentoo-commits] gentoo-x86 commit in net-libs/webkit-gtk: ChangeLog webkit-gtk-1.1.10.ebuild
@ 2009-09-28 14:34 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 7+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-09-28 14:34 UTC (permalink / raw
  To: gentoo-commits

fauli       09/09/28 14:34:06

  Modified:             ChangeLog webkit-gtk-1.1.10.ebuild
  Log:
  stable x86, security bug 271865
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.50                 net-libs/webkit-gtk/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog	28 Sep 2009 02:12:38 -0000	1.49
+++ ChangeLog	28 Sep 2009 14:34:06 -0000	1.50
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/webkit-gtk
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.49 2009/09/28 02:12:38 tester Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.50 2009/09/28 14:34:06 fauli Exp $
+
+  28 Sep 2009; Christian Faulhammer <fauli@gentoo.org>
+  webkit-gtk-1.1.10.ebuild:
+  stable x86, security bug 271865
 
   28 Sep 2009; Olivier Crête <tester@gentoo.org> webkit-gtk-1.1.10.ebuild:
   amd64 stable, bug #271865



1.7                  net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild

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

Index: webkit-gtk-1.1.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- webkit-gtk-1.1.10.ebuild	28 Sep 2009 02:12:38 -0000	1.6
+++ webkit-gtk-1.1.10.ebuild	28 Sep 2009 14:34:06 -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/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v 1.6 2009/09/28 02:12:38 tester Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v 1.7 2009/09/28 14:34:06 fauli Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2 LGPL-2.1 BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ~sparc x86 ~x86-fbsd"
 # geoclue
 IUSE="coverage debug doc gnome-keyring +gstreamer pango"
 






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

* [gentoo-commits] gentoo-x86 commit in net-libs/webkit-gtk: ChangeLog webkit-gtk-1.1.10.ebuild
@ 2009-09-28 19:43 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 7+ messages in thread
From: Tobias Klausmann (klausman) @ 2009-09-28 19:43 UTC (permalink / raw
  To: gentoo-commits

klausman    09/09/28 19:43:08

  Modified:             ChangeLog webkit-gtk-1.1.10.ebuild
  Log:
  Stable on alpha, bug #271865
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.51                 net-libs/webkit-gtk/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog	28 Sep 2009 14:34:06 -0000	1.50
+++ ChangeLog	28 Sep 2009 19:43:08 -0000	1.51
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/webkit-gtk
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.50 2009/09/28 14:34:06 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.51 2009/09/28 19:43:08 klausman Exp $
+
+  28 Sep 2009; Tobias Klausmann <klausman@gentoo.org>
+  webkit-gtk-1.1.10.ebuild:
+  Stable on alpha, bug #271865
 
   28 Sep 2009; Christian Faulhammer <fauli@gentoo.org>
   webkit-gtk-1.1.10.ebuild:



1.8                  net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild

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

Index: webkit-gtk-1.1.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- webkit-gtk-1.1.10.ebuild	28 Sep 2009 14:34:06 -0000	1.7
+++ webkit-gtk-1.1.10.ebuild	28 Sep 2009 19:43:08 -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/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v 1.7 2009/09/28 14:34:06 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v 1.8 2009/09/28 19:43:08 klausman Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2 LGPL-2.1 BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~ia64 ~ppc ~sparc x86 ~x86-fbsd"
 # geoclue
 IUSE="coverage debug doc gnome-keyring +gstreamer pango"
 






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

* [gentoo-commits] gentoo-x86 commit in net-libs/webkit-gtk: ChangeLog webkit-gtk-1.1.10.ebuild
@ 2009-10-02 15:57 Mounir Lamouri (volkmar)
  0 siblings, 0 replies; 7+ messages in thread
From: Mounir Lamouri (volkmar) @ 2009-10-02 15:57 UTC (permalink / raw
  To: gentoo-commits

volkmar     09/10/02 15:57:48

  Modified:             ChangeLog webkit-gtk-1.1.10.ebuild
  Log:
  Stable for ppc.
  Bug 271865.
  (Portage version: 14420-svn/cvs/Linux ppc)

Revision  Changes    Path
1.52                 net-libs/webkit-gtk/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog	28 Sep 2009 19:43:08 -0000	1.51
+++ ChangeLog	2 Oct 2009 15:57:48 -0000	1.52
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/webkit-gtk
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.51 2009/09/28 19:43:08 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.52 2009/10/02 15:57:48 volkmar Exp $
+
+  02 Oct 2009; Mounir Lamouri <volkmar@gentoo.org> webkit-gtk-1.1.10.ebuild:
+  Stable for ppc, bug 271865
 
   28 Sep 2009; Tobias Klausmann <klausman@gentoo.org>
   webkit-gtk-1.1.10.ebuild:



1.9                  net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild?r1=1.8&r2=1.9

Index: webkit-gtk-1.1.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- webkit-gtk-1.1.10.ebuild	28 Sep 2009 19:43:08 -0000	1.8
+++ webkit-gtk-1.1.10.ebuild	2 Oct 2009 15:57:48 -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/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v 1.8 2009/09/28 19:43:08 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.1.10.ebuild,v 1.9 2009/10/02 15:57:48 volkmar Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2 LGPL-2.1 BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 ~ia64 ~ppc ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~ia64 ppc ~sparc x86 ~x86-fbsd"
 # geoclue
 IUSE="coverage debug doc gnome-keyring +gstreamer pango"
 






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

end of thread, other threads:[~2009-10-02 15:57 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-28 14:34 [gentoo-commits] gentoo-x86 commit in net-libs/webkit-gtk: ChangeLog webkit-gtk-1.1.10.ebuild Christian Faulhammer (fauli)
  -- strict thread matches above, loose matches on Subject: below --
2009-10-02 15:57 Mounir Lamouri (volkmar)
2009-09-28 19:43 Tobias Klausmann (klausman)
2009-09-28  2:12 Olivier Crete (tester)
2009-09-28  0:18 Mart Raudsepp (leio)
2009-07-27 20:21 Diego Petteno (flameeyes)
2009-06-19 17:26 Romain Perier (mrpouet)

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