Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/webkit-gtk: webkit-gtk-1.10.2-r300.ebuild ChangeLog
Date: Tue, 01 Jan 2013 19:15:25
Message-Id: 20130101191510.E93D92171D@flycatcher.gentoo.org
1 tetromino 13/01/01 19:15:10
2
3 Modified: webkit-gtk-1.10.2-r300.ebuild ChangeLog
4 Log:
5 Raise build space requirements for webkit with debugging flags to 18GB (bug #417307, thanks to Doug Goldstein). Replace -ggdb with -g until binutils is fixed (bug #432784, thanks to Maciej Piechotka and Priit Laes); users of patched binutils can allow -ggdb usage by adding WEBKIT_GTK_GGDB=yes to make.conf
6
7 (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key CF0ADD61)
8
9 Revision Changes Path
10 1.3 net-libs/webkit-gtk/webkit-gtk-1.10.2-r300.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.10.2-r300.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.10.2-r300.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.10.2-r300.ebuild?r1=1.2&r2=1.3
15
16 Index: webkit-gtk-1.10.2-r300.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.10.2-r300.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- webkit-gtk-1.10.2-r300.ebuild 27 Dec 2012 04:40:11 -0000 1.2
23 +++ webkit-gtk-1.10.2-r300.ebuild 1 Jan 2013 19:15:10 -0000 1.3
24 @@ -1,6 +1,6 @@
25 -# Copyright 1999-2012 Gentoo Foundation
26 +# Copyright 1999-2013 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.10.2-r300.ebuild,v 1.2 2012/12/27 04:40:11 tetromino Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-1.10.2-r300.ebuild,v 1.3 2013/01/01 19:15:10 tetromino Exp $
30
31 EAPI="5"
32
33 @@ -72,21 +72,33 @@
34
35 S="${WORKDIR}/${MY_P}"
36
37 -CHECKREQS_DISK_BUILD="6G"
38 +CHECKREQS_DISK_BUILD="18G" # and even this might not be enough, bug #417307
39
40 pkg_pretend() {
41 - if is-flagq "-g*" ; then
42 + if [[ ${MERGE_TYPE} != "binary" ]] && is-flagq "-g*" ; then
43 + einfo "Checking for sufficient disk space to build ${PN} with debugging CFLAGS"
44 check-reqs_pkg_pretend
45 fi
46 }
47
48 pkg_setup() {
49 # Check whether any of the debugging flags is enabled
50 - if is-flagq "-g*" ; then
51 + if [[ ${MERGE_TYPE} != "binary" ]] && is-flagq "-g*" ; then
52 + if is-flagq "-ggdb" && [[ ${WEBKIT_GTK_GGDB} != "yes" ]]; then
53 + replace-flags -ggdb -g
54 + ewarn "Replacing \"-ggdb\" with \"-g\" in your CFLAGS."
55 + ewarn "Building ${PN} with \"-ggdb\" produces binaries which are too"
56 + ewarn "large for current binutils releases (bug #432784) and has very"
57 + ewarn "high temporary build space and memory requirements."
58 + ewarn "If you really want to build ${PN} with \"-ggdb\", add"
59 + ewarn "WEBKIT_GTK_GGDB=yes"
60 + ewarn "to your make.conf file."
61 + fi
62 + einfo "You need to have at least 18GB of temporary build space available"
63 + einfo "to build ${PN} with debugging CFLAGS. Note that it might still"
64 + einfo "not be enough, as the total space requirements depend on the flags"
65 + einfo "(-ggdb vs -g1) and enabled features."
66 check-reqs_pkg_setup
67 - einfo "You have at least 6GB of temporary build space available, but "
68 - einfo "it may still not be enough, as the total space requirements "
69 - einfo "depends on the debugging flags (-ggdb vs -g1) and enabled features."
70 fi
71 }
72
73
74
75
76 1.189 net-libs/webkit-gtk/ChangeLog
77
78 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.189&view=markup
79 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.189&content-type=text/plain
80 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/ChangeLog?r1=1.188&r2=1.189
81
82 Index: ChangeLog
83 ===================================================================
84 RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v
85 retrieving revision 1.188
86 retrieving revision 1.189
87 diff -u -r1.188 -r1.189
88 --- ChangeLog 27 Dec 2012 04:40:11 -0000 1.188
89 +++ ChangeLog 1 Jan 2013 19:15:10 -0000 1.189
90 @@ -1,995 +1,12 @@
91 # ChangeLog for net-libs/webkit-gtk
92 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
93 -# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.188 2012/12/27 04:40:11 tetromino Exp $
94 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
95 +# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.189 2013/01/01 19:15:10 tetromino Exp $
96
97 - 27 Dec 2012; Alexandre Rostovtsev <tetromino@g.o>
98 + 01 Jan 2013; Alexandre Rostovtsev <tetromino@g.o>
99 webkit-gtk-1.10.2-r300.ebuild:
100 - Do not use python-r1.eclass: python is purely a build-time dependency, so
101 - using PYTHON_TARGETS use-expand does not make sense here. Drop sparc and
102 - amd64-fbsd keywords due to unkeyworded dependencies. Fix
103 - accelerated-compositing configure switch.
104 + Raise build space requirements for webkit with debugging flags to 18GB (bug
105 + #417307, thanks to Doug Goldstein). Replace -ggdb with -g until binutils is
106 + fixed (bug #432784, thanks to Maciej Piechotka and Priit Laes); users of
107 + patched binutils can allow -ggdb usage by adding WEBKIT_GTK_GGDB=yes to
108 + make.conf
109
110 - 25 Dec 2012; Gilles Dartiguelongue <eva@g.o> metadata.xml:
111 - USE=introspection is now global.
112 -
113 -*webkit-gtk-1.10.2-r300 (25 Dec 2012)
114 -
115 - 25 Dec 2012; Gilles Dartiguelongue <eva@g.o>
116 - -webkit-gtk-1.6.1-r201.ebuild, -webkit-gtk-1.6.1-r301.ebuild,
117 - -webkit-gtk-1.8.2-r200.ebuild, -webkit-gtk-1.8.2-r300.ebuild,
118 - +files/webkit-gtk-1.9.91-libdl.patch,
119 - +files/webkit-gtk-1.10.1-disable-backtrace-uclibc.patch,
120 - +webkit-gtk-1.10.2-r300.ebuild, +files/webkit-gtk-1.11.1-libdl.patch:
121 - Version bump. Switch to EAPI=5 and python-single-r1.eclass. Uses
122 - gstreamer:1.0, webkit2 is always on.
123 -
124 - 08 Dec 2012; Agostino Sarubbo <ago@g.o> webkit-gtk-1.8.3-r300.ebuild:
125 - Stable for ppc, wrt bug #427546
126 -
127 - 08 Dec 2012; Agostino Sarubbo <ago@g.o> webkit-gtk-1.8.3-r200.ebuild:
128 - Stable for ppc, wrt bug #427544
129 -
130 - 08 Dec 2012; Agostino Sarubbo <ago@g.o> webkit-gtk-1.8.3-r200.ebuild:
131 - Stable for ppc64, wrt bug #427546
132 -
133 - 08 Dec 2012; Agostino Sarubbo <ago@g.o> webkit-gtk-1.8.3-r300.ebuild:
134 - Stable for ppc64, wrt bug #427544
135 -
136 - 04 Nov 2012; Alexandre Rostovtsev <tetromino@g.o>
137 - webkit-gtk-1.6.1-r201.ebuild, webkit-gtk-1.6.1-r301.ebuild,
138 - webkit-gtk-1.6.3-r200.ebuild, webkit-gtk-1.6.3-r300.ebuild,
139 - webkit-gtk-1.8.2-r200.ebuild, webkit-gtk-1.8.2-r300.ebuild,
140 - webkit-gtk-1.8.3-r200.ebuild, webkit-gtk-1.8.3-r300.ebuild,
141 - +files/webkit-gtk-1.8.3-disable-backtrace-uclibc.patch:
142 - Add patch to fix uclibc backtrace() problem (bug #441674, thanks to Anthony
143 - Basile). No revision bump since this only affects uclibc users, and
144 - webkit-gtk takes a long time to rebuild. Update license.
145 -
146 - 28 Oct 2012; Raúl Porcel <armin76@g.o> webkit-gtk-1.8.3-r200.ebuild,
147 - webkit-gtk-1.8.3-r300.ebuild:
148 - alpha/sparc stable wrt #427544
149 -
150 - 16 Oct 2012; Matt Turner <mattst88@g.o> webkit-gtk-1.8.3-r200.ebuild,
151 - webkit-gtk-1.8.3-r300.ebuild:
152 - Stable on alpha, bug 427544.
153 -
154 - 06 Oct 2012; Markus Meier <maekke@g.o> webkit-gtk-1.8.3-r200.ebuild:
155 - arm stable, bug #427544
156 -
157 - 06 Oct 2012; Markus Meier <maekke@g.o> webkit-gtk-1.8.3-r300.ebuild:
158 - arm stable, bug #427544
159 -
160 - 04 Oct 2012; Agostino Sarubbo <ago@g.o> webkit-gtk-1.8.3-r300.ebuild:
161 - Stable for AMD64, wrt bug #427544
162 -
163 - 04 Oct 2012; Agostino Sarubbo <ago@g.o> webkit-gtk-1.8.3-r200.ebuild:
164 - Stable for amd64, wrt bug #427544
165 -
166 - 04 Oct 2012; Pawel Hajdan jr <phajdan.jr@g.o>
167 - webkit-gtk-1.8.3-r300.ebuild:
168 - x86 stable wrt bug #427544
169 -
170 - 03 Oct 2012; Pawel Hajdan jr <phajdan.jr@g.o>
171 - webkit-gtk-1.8.3-r200.ebuild:
172 - x86 stable wrt bug #427544
173 -
174 -*webkit-gtk-1.8.3-r300 (13 Sep 2012)
175 -*webkit-gtk-1.8.3-r200 (13 Sep 2012)
176 -
177 - 13 Sep 2012; Alexandre Rostovtsev <tetromino@g.o>
178 - -files/webkit-gtk-1.8.0-svgimagebuffer-clip.patch,
179 - -webkit-gtk-1.8.1-r200.ebuild, -webkit-gtk-1.8.1-r201.ebuild,
180 - -webkit-gtk-1.8.1-r300.ebuild, -webkit-gtk-1.8.1-r301.ebuild,
181 - +webkit-gtk-1.8.3-r200.ebuild, +webkit-gtk-1.8.3-r300.ebuild,
182 - +files/webkit-gtk-1.8.3-libdl.patch:
183 - Version bump with security fixes. Fix freebsd buuild failure (bug #417523,
184 - thanks to Alexis Ballier). Drop old.
185 -
186 - 09 Aug 2012; Alexandre Rostovtsev <tetromino@g.o>
187 - -files/webkit-gtk-1.8.0-no-geoloc.patch:
188 - Remove unused patch.
189 -
190 -*webkit-gtk-1.8.2-r300 (09 Aug 2012)
191 -*webkit-gtk-1.8.2-r200 (09 Aug 2012)
192 -
193 - 09 Aug 2012; Alexandre Rostovtsev <tetromino@g.o>
194 - -webkit-gtk-1.8.0-r200.ebuild, -webkit-gtk-1.8.0-r300.ebuild,
195 - +webkit-gtk-1.8.2-r200.ebuild, +webkit-gtk-1.8.2-r300.ebuild,
196 - +files/webkit-gtk-1.8.2-bison-2.6.patch:
197 - Version bump with security and crash fixes. Fix building with bison-2.6 (bug
198 - #428012, thanks to Zabuldon, Guy, Mike Gilbert et al.). Drop old.
199 -
200 - 08 Aug 2012; Markos Chandras <hwoarang@g.o>
201 - webkit-gtk-1.8.1-r201.ebuild, webkit-gtk-1.8.1-r301.ebuild:
202 - Lower sys-devel/bison dependencies per bug #428012
203 -
204 - 15 Jul 2012; Raúl Porcel <armin76@g.o> webkit-gtk-1.6.3-r200.ebuild,
205 - webkit-gtk-1.6.3-r300.ebuild:
206 - alpha/ia64/sparc stable wrt #410611
207 -
208 - 20 Jun 2012; Samuli Suominen <ssuominen@g.o>
209 - webkit-gtk-1.8.1-r201.ebuild, webkit-gtk-1.8.1-r301.ebuild:
210 - Fix compability with sys-devel/automake >= 1.12 wrt #420591 by Ryan Pennucci
211 -
212 - 30 May 2012; Alexis Ballier <aballier@g.o>
213 - webkit-gtk-1.8.1-r201.ebuild:
214 - keyword ~amd64-fbsd
215 -
216 - 29 May 2012; Alexis Ballier <aballier@g.o>
217 - webkit-gtk-1.8.1-r301.ebuild:
218 - keyword ~amd64-fbsd
219 -
220 - 24 May 2012; Samuli Suominen <ssuominen@g.o>
221 - webkit-gtk-1.6.3-r200.ebuild, webkit-gtk-1.6.3-r300.ebuild:
222 - ppc stable wrt #410611
223 -
224 - 19 May 2012; Alexandre Rostovtsev <tetromino@g.o>
225 - webkit-gtk-1.8.1-r201.ebuild, webkit-gtk-1.8.1-r301.ebuild,
226 - +files/webkit-gtk-1.8.1-gst-required-version.patch, metadata.xml:
227 - Fix gstreamer detection with some pkgconfig implementations (bug #416057,
228 - thanks to pingouin21). Require USE=geoloc if introspection is enabled (bug
229 - #416331, thanks to lxg). jit is now a global flag.
230 -
231 - 05 May 2012; Jeff Horelick <jdhore@g.o> webkit-gtk-1.6.1-r201.ebuild,
232 - webkit-gtk-1.6.1-r301.ebuild, webkit-gtk-1.6.3-r200.ebuild,
233 - webkit-gtk-1.6.3-r300.ebuild, webkit-gtk-1.8.0-r200.ebuild,
234 - webkit-gtk-1.8.0-r300.ebuild, webkit-gtk-1.8.1-r200.ebuild,
235 - webkit-gtk-1.8.1-r201.ebuild, webkit-gtk-1.8.1-r300.ebuild,
236 - webkit-gtk-1.8.1-r301.ebuild:
237 - dev-util/pkgconfig -> virtual/pkgconfig
238 -
239 -*webkit-gtk-1.8.1-r301 (03 May 2012)
240 -*webkit-gtk-1.8.1-r201 (03 May 2012)
241 -
242 - 03 May 2012; Alexandre Rostovtsev <tetromino@g.o>
243 - +webkit-gtk-1.8.1-r201.ebuild, +webkit-gtk-1.8.1-r301.ebuild,
244 - +files/webkit-gtk-1.8.1-CodeGeneratorGObject-properties.patch,
245 - +files/webkit-gtk-1.8.1-tests-xvfb.patch:
246 - Fix build failure with USE=-gstreamer (bug #412221, thanks to Paweł Rumian).
247 -
248 -*webkit-gtk-1.8.1-r300 (02 May 2012)
249 -*webkit-gtk-1.8.1-r200 (02 May 2012)
250 -
251 - 02 May 2012; Alexandre Rostovtsev <tetromino@g.o>
252 - +webkit-gtk-1.8.1-r200.ebuild, +webkit-gtk-1.8.1-r300.ebuild:
253 - Version bump, should reduce flickering with gtk+-3.4.
254 -
255 - 29 Apr 2012; Markus Meier <maekke@g.o> webkit-gtk-1.6.3-r200.ebuild:
256 - x86 stable, bug #410611
257 -
258 - 29 Apr 2012; Markus Meier <maekke@g.o> webkit-gtk-1.6.3-r300.ebuild:
259 - x86 stable, bug #410611
260 -
261 - 25 Apr 2012; Markus Meier <maekke@g.o> webkit-gtk-1.6.3-r200.ebuild:
262 - arm stable, bug #410611
263 -
264 - 25 Apr 2012; Markus Meier <maekke@g.o> webkit-gtk-1.6.3-r300.ebuild:
265 - arm stable, bug #410611
266 -
267 - 21 Apr 2012; Alexandre Rostovtsev <tetromino@g.o>
268 - webkit-gtk-1.8.0-r200.ebuild, webkit-gtk-1.8.0-r300.ebuild,
269 - +files/webkit-gtk-1.8.0-no-geoloc.patch:
270 - Fix build failure when USE=-geoloc (bug #411955, thanks to Nikolaj Sjujskij
271 - and Balint SZENTE).
272 -
273 - 19 Apr 2012; Brent Baude <ranger@g.o> webkit-gtk-1.6.3-r200.ebuild,
274 - webkit-gtk-1.6.3-r300.ebuild:
275 - Marking webkit-gtk-1.6.3-r200 ppc64 stable for bug 410611
276 -
277 - 19 Apr 2012; Brent Baude <ranger@g.o> webkit-gtk-1.6.3-r300.ebuild:
278 - Marking webkit-gtk-1.6.3-r300 ppc64 stable for bug 410611
279 -
280 - 18 Apr 2012; Agostino Sarubbo <ago@g.o> webkit-gtk-1.6.3-r200.ebuild,
281 - webkit-gtk-1.6.3-r300.ebuild:
282 - Stable for amd64, wrt bug #410611
283 -
284 - 15 Apr 2012; Alexandre Rostovtsev <tetromino@g.o>
285 - webkit-gtk-1.8.0-r300.ebuild,
286 - +files/webkit-gtk-1.8.0-typedef-WebKitWebView.patch:
287 - Fix building with USE=webkit2 and gcc-4.5 (bug #412027, thanks to Rafał
288 - Mużyło and Travis Hansen for reporting).
289 -
290 - 15 Apr 2012; Alexandre Rostovtsev <tetromino@g.o>
291 - webkit-gtk-1.8.0-r200.ebuild:
292 - Fix libsoup dependency (bug #411961, thanks to Balint SZENTE).
293 -
294 -*webkit-gtk-1.8.0-r300 (14 Apr 2012)
295 -*webkit-gtk-1.8.0-r200 (14 Apr 2012)
296 -
297 - 14 Apr 2012; Alexandre Rostovtsev <tetromino@g.o>
298 - +files/webkit-gtk-1.7.5-linguas.patch,
299 - +files/webkit-gtk-1.7.90-parallel-make-hack.patch,
300 - +files/webkit-gtk-1.7.90-test_garbage_collection.patch,
301 - +webkit-gtk-1.8.0-r200.ebuild, +webkit-gtk-1.8.0-r300.ebuild,
302 - +files/webkit-gtk-1.8.0-svgimagebuffer-clip.patch, metadata.xml:
303 - Version bump with performance improvements, geolocation support, and
304 - experimental WebKit2 support (splits rendering and UI into separate
305 - processes).
306 -
307 - 02 Apr 2012; Pacho Ramos <pacho@g.o> -webkit-gtk-1.4.3-r200.ebuild,
308 - -webkit-gtk-1.4.3-r300.ebuild, files/webkit-gtk-1.6.1-double-conversion.patch:
309 - Update double-conversion.patch to also include ALPHA, bug #410191 by mach1.
310 - Remove old.
311 -
312 - 25 Mar 2012; Raúl Porcel <armin76@g.o> webkit-gtk-1.6.1-r201.ebuild,
313 - webkit-gtk-1.6.1-r301.ebuild:
314 - alpha/ia64/sh/sparc stable wrt #393007
315 -
316 - 25 Mar 2012; Alexandre Rostovtsev <tetromino@g.o>
317 - webkit-gtk-1.6.3-r200.ebuild, webkit-gtk-1.6.3-r300.ebuild:
318 - Apply pax marking conditionally based on introspection and jit USE flags
319 - (thanks to Maxim Kammerer, bugs #404215 and #407085). Apply pax marking to
320 - test suite executables so the test suite can be run on PaX systems.
321 -
322 - 17 Mar 2012; Alexandre Rostovtsev <tetromino@g.o>
323 - webkit-gtk-1.6.1-r201.ebuild, webkit-gtk-1.6.1-r301.ebuild,
324 - +files/webkit-gtk-1.6.1-sparc-needs-alignment.patch,
325 - webkit-gtk-1.6.3-r200.ebuild, webkit-gtk-1.6.3-r300.ebuild:
326 - Sparc fix by Raúl Porcel for bug #389963.
327 -
328 - 06 Mar 2012; Alexandre Rostovtsev <tetromino@g.o>
329 - files/gir-paxctl-lt-wrapper, webkit-gtk-1.6.3-r200.ebuild,
330 - webkit-gtk-1.6.3-r300.ebuild:
331 - Apparently paxctl required for pax-marking binaries that will run at build
332 - time (bug #407085, thanks to Ulrich Müller).
333 -
334 - 05 Mar 2012; Brent Baude <ranger@g.o> webkit-gtk-1.6.1-r201.ebuild,
335 - webkit-gtk-1.6.1-r301.ebuild:
336 - Marking webkit-gtk-1.6.1-r301 ppc stable for bug 393007
337 -
338 - 05 Mar 2012; Brent Baude <ranger@g.o> webkit-gtk-1.6.1-r201.ebuild,
339 - webkit-gtk-1.6.1-r301.ebuild:
340 - Marking webkit-gtk-1.6.1-r301 ppc64 stable for bug 393007
341 -
342 - 05 Mar 2012; Brent Baude <ranger@g.o> webkit-gtk-1.6.1-r201.ebuild:
343 - Marking webkit-gtk-1.6.1-r201 ppc64 stable for bug 393007
344 -
345 - 05 Mar 2012; Alexandre Rostovtsev <tetromino@g.o>
346 - webkit-gtk-1.6.3-r200.ebuild, webkit-gtk-1.6.3-r300.ebuild:
347 - Also pax-mark jsc-1 and jsc-3 to prevent crashes on PaX systems.
348 -
349 - 04 Mar 2012; Alexandre Rostovtsev <tetromino@g.o>
350 - webkit-gtk-1.6.3-r200.ebuild, webkit-gtk-1.6.3-r300.ebuild,
351 - +files/webkit-gtk-1.6.3-paxctl-introspection.patch,
352 - +files/gir-paxctl-lt-wrapper:
353 - Fix build problems on PaX with USE="introspection jit" (bug #404215, thanks
354 - to Grant and Magnus Granberg) by having g-ir-scanner call a libtool wrapper
355 - that disables secure memory protection on generated gir dumper binaries.
356 -
357 - 11 Feb 2012; Alexandre Rostovtsev <tetromino@g.o>
358 - webkit-gtk-1.6.3-r300.ebuild:
359 - The tarball now comes with pre-generated documentation; install it when
360 - USE=doc since it looks much better than what is built with --enable-gtk-doc.
361 - As a side effect, fixes bug #402173 (thanks to Torsten Kaiser for reporting).
362 -
363 -*webkit-gtk-1.6.3-r200 (04 Feb 2012)
364 -*webkit-gtk-1.6.3-r300 (04 Feb 2012)
365 -
366 - 04 Feb 2012; Pacho Ramos <pacho@g.o> +webkit-gtk-1.6.3-r200.ebuild,
367 - +webkit-gtk-1.6.3-r300.ebuild, -webkit-gtk-1.6.1-r200.ebuild,
368 - -webkit-gtk-1.6.1-r300.ebuild:
369 - Version bump, remove old.
370 -
371 - 18 Jan 2012; Markus Meier <maekke@g.o> webkit-gtk-1.6.1-r301.ebuild:
372 - arm stable, bug #393007
373 -
374 - 18 Jan 2012; Markus Meier <maekke@g.o> webkit-gtk-1.6.1-r201.ebuild:
375 - arm stable, bug #393007
376 -
377 - 14 Jan 2012; Markus Meier <maekke@g.o> webkit-gtk-1.6.1-r301.ebuild:
378 - x86 stable, bug #393007
379 -
380 - 14 Jan 2012; Markus Meier <maekke@g.o> webkit-gtk-1.6.1-r201.ebuild:
381 - x86 stable, bug #393007
382 -
383 - 29 Dec 2011; Pacho Ramos <pacho@g.o> webkit-gtk-1.6.1-r201.ebuild,
384 - webkit-gtk-1.6.1-r301.ebuild:
385 - amd64 stable, bug 393007
386 -
387 - 26 Dec 2011; Justin Lecher <jlec@g.o> webkit-gtk-1.6.1-r201.ebuild,
388 - webkit-gtk-1.6.1-r301.ebuild:
389 - Respect CC, otherwise fails on prefix #395875
390 -
391 - 29 Nov 2011; Fabian Groffen <grobian@g.o>
392 - +files/webkit-gtk-1.6.1-darwin-quartz.patch, webkit-gtk-1.6.1-r300.ebuild,
393 - webkit-gtk-1.6.1-r301.ebuild, webkit-gtk-1.6.1-r201.ebuild,
394 - files/webkit-gtk-1.2.5-darwin-quartz.patch:
395 - Fix darwin-quartz patch, drop darwin8 patch from ebuild, bug #392385
396 -
397 -*webkit-gtk-1.6.1-r301 (29 Nov 2011)
398 -*webkit-gtk-1.6.1-r201 (29 Nov 2011)
399 -
400 - 29 Nov 2011; Pacho Ramos <pacho@g.o>
401 - +files/webkit-gtk-1.6.1-double-conversion.patch,
402 - +files/webkit-gtk-1.6.1-pkgconfig-fix.patch, +webkit-gtk-1.6.1-r201.ebuild,
403 - +webkit-gtk-1.6.1-r301.ebuild:
404 - Apply upstream patches to fix pkgconfig file and arches that use 64-bit double
405 - type, use gnome2_environment_reset, drop DEPRECATED flags (they were passed
406 - with USE debug), skip flacky tests after reporting failures to upstream.
407 -
408 - 05 Nov 2011; Pacho Ramos <pacho@g.o> -webkit-gtk-1.2.7.ebuild,
409 - -webkit-gtk-1.4.2-r200.ebuild, -webkit-gtk-1.4.2-r300.ebuild,
410 - webkit-gtk-1.4.3-r200.ebuild, webkit-gtk-1.4.3-r300.ebuild:
411 - Drop old and stop trying to apply a patch that will be unable to be applied
412 - (even if patch exists, bug #389481).
413 -
414 - 30 Oct 2011; Raúl Porcel <armin76@g.o> webkit-gtk-1.4.3-r300.ebuild:
415 - alpha/ia64/sparc stable wrt #385699
416 -
417 - 30 Oct 2011; Raúl Porcel <armin76@g.o> webkit-gtk-1.4.3-r200.ebuild:
418 - alpha/ia64/sparc stable wrt #385699
419 -
420 - 28 Oct 2011; Markus Meier <maekke@g.o> webkit-gtk-1.4.3-r300.ebuild:
421 - arm stable, bug #385699
422 -
423 - 28 Oct 2011; Markus Meier <maekke@g.o> webkit-gtk-1.4.3-r200.ebuild:
424 - arm stable, bug #385699
425 -
426 - 21 Oct 2011; Pawel Hajdan jr <phajdan.jr@g.o>
427 - webkit-gtk-1.4.3-r200.ebuild, webkit-gtk-1.4.3-r300.ebuild:
428 - x86 stable wrt bug #385699
429 -
430 - 16 Oct 2011; Kacper Kowalik <xarthisius@g.o>
431 - webkit-gtk-1.4.3-r200.ebuild, webkit-gtk-1.4.3-r300.ebuild:
432 - ppc/ppc64 stable wrt #385699
433 -
434 - 14 Oct 2011; Samuli Suominen <ssuominen@g.o>
435 - webkit-gtk-1.4.3-r200.ebuild, webkit-gtk-1.4.3-r300.ebuild:
436 - amd64 stable wrt #385699
437 -
438 -*webkit-gtk-1.6.1-r300 (30 Sep 2011)
439 -*webkit-gtk-1.6.1-r200 (30 Sep 2011)
440 -
441 - 30 Sep 2011; Nirbheek Chauhan <nirbheek@g.o>
442 - +webkit-gtk-1.6.1-r200.ebuild, +webkit-gtk-1.6.1-r300.ebuild, metadata.xml:
443 - Bump to 1.6.1, optional partly-broken webgl support, build and install API
444 - docs with USE=doc, generate an xz tarball and use that
445 -
446 - 24 Sep 2011; Pacho Ramos <pacho@g.o> webkit-gtk-1.4.3-r300.ebuild,
447 - -files/webkit-gtk-1.4.3-underlinking.patch:
448 - underlinking patch is not needed as it was already applied by upstream, bug
449 - #384181 by Lance Poore, Hilco, Albert W. Hopkins, S.Holzbach and maby others.
450 -
451 -*webkit-gtk-1.4.3-r300 (22 Sep 2011)
452 -*webkit-gtk-1.4.3-r200 (22 Sep 2011)
453 -
454 - 22 Sep 2011; Pacho Ramos <pacho@g.o> +webkit-gtk-1.4.3-r200.ebuild,
455 - +webkit-gtk-1.4.3-r300.ebuild, +files/webkit-gtk-1.4.3-underlinking.patch:
456 - Version bump and fix underlinking problems in gtk3 version (bug #371751).
457 -
458 - 31 Aug 2011; Pacho Ramos <pacho@g.o> webkit-gtk-1.2.7.ebuild:
459 - Parallel build fails for 1.2.x, seems fixed in 1.4.x (bug #343249).
460 -
461 - 14 Aug 2011; Nirbheek Chauhan <nirbheek@g.o>
462 - -webkit-gtk-1.4.1-r200.ebuild, -webkit-gtk-1.4.1-r300.ebuild,
463 - webkit-gtk-1.4.2-r200.ebuild, webkit-gtk-1.4.2-r300.ebuild:
464 - DEPEND on virtual/yacc instead of bison, remove old
465 -
466 - 14 Aug 2011; Nirbheek Chauhan <nirbheek@g.o>
467 - webkit-gtk-1.4.2-r200.ebuild, webkit-gtk-1.4.2-r300.ebuild:
468 - Require USE=gstreamer for USE=introspection, bug 372493
469 -
470 - 27 Jul 2011; Pacho Ramos <pacho@g.o> webkit-gtk-1.4.2-r200.ebuild,
471 - webkit-gtk-1.4.2-r300.ebuild:
472 - Add sys-devel/bison DEPEND, bug #376291 by Albert W. Hopkins.
473 -
474 -*webkit-gtk-1.4.2-r300 (24 Jul 2011)
475 -*webkit-gtk-1.4.2-r200 (24 Jul 2011)
476 -
477 - 24 Jul 2011; Gilles Dartiguelongue <eva@g.o>
478 - +webkit-gtk-1.4.2-r200.ebuild, +webkit-gtk-1.4.2-r300.ebuild:
479 - Version bump. Stability fixes, includes libpng-1.5 patch.
480 -
481 - 24 Jul 2011; Gilles Dartiguelongue <eva@g.o> -webkit-gtk-1.2.5.ebuild,
482 - -webkit-gtk-1.2.6.ebuild:
483 - Clean up old revisions, due to various security bugs.
484 -
485 - 15 Jul 2011; Kacper Kowalik <xarthisius@g.o>
486 - webkit-gtk-1.4.1-r200.ebuild, webkit-gtk-1.4.1-r300.ebuild:
487 - Marked ~ppc/~ppc64 (bug 371833)
488 -
489 - 19 Jun 2011; Christoph Mende <angelos@g.o>
490 - webkit-gtk-1.4.1-r200.ebuild, webkit-gtk-1.4.1-r300.ebuild,
491 - +files/webkit-gtk-1.4.1-libpng15.patch:
492 - Fix building with libpng-1.5
493 -
494 - 12 Jun 2011; Nirbheek Chauhan <nirbheek@g.o>
495 - webkit-gtk-1.4.1-r200.ebuild, webkit-gtk-1.4.1-r300.ebuild:
496 - Add proper introspection deps, fixes bug 371143
497 -
498 - 11 Jun 2011; Raúl Porcel <armin76@g.o> webkit-gtk-1.4.1-r200.ebuild,
499 - webkit-gtk-1.4.1-r300.ebuild:
500 - Add ~alpha/~ia64/~sparc wrt #365331
501 -
502 -*webkit-gtk-1.4.1-r300 (11 Jun 2011)
503 -*webkit-gtk-1.4.1-r200 (11 Jun 2011)
504 -
505 - 11 Jun 2011; Nirbheek Chauhan <nirbheek@g.o>
506 - +webkit-gtk-1.4.1-r200.ebuild, +webkit-gtk-1.4.1-r300.ebuild:
507 - Add 1.4.1, gtk2 (-r2xx) and gtk3 (-r3xx) versions, drop keywords, bug 365331
508 -
509 - 05 Apr 2011; Christoph Mende <angelos@g.o>
510 - files/webkit-gtk-1.2.7-libpng15.patch:
511 - Converted libpng15 patch from DOS to Unix
512 -
513 - 04 Apr 2011; Samuli Suominen <ssuominen@g.o> webkit-gtk-1.2.7.ebuild,
514 - +files/webkit-gtk-1.2.7-libpng15.patch:
515 - Fix building with media-libs/libpng >= 1.5 wrt #355015 by Lars Wendler.
516 -
517 - 13 Mar 2011; Kacper Kowalik <xarthisius@g.o> webkit-gtk-1.2.7.ebuild:
518 - ppc64 stable wrt #354799
519 -
520 - 12 Feb 2011; Raúl Porcel <armin76@g.o> webkit-gtk-1.2.7.ebuild:
521 - alpha/arm/ia64/sparc stable wrt #354209
522 -
523 - 11 Feb 2011; Kacper Kowalik <xarthisius@g.o>
524 - webkit-gtk-1.2.7.ebuild:
525 - ppc stable wrt #354209
526 -
527 - 11 Feb 2011; Pawel Hajdan jr <phajdan.jr@g.o>
528 - webkit-gtk-1.2.7.ebuild:
529 - x86 stable wrt security bug #354209
530 -
531 - 10 Feb 2011; Markos Chandras <hwoarang@g.o> webkit-gtk-1.2.7.ebuild:
532 - Stable on amd64 wrt bug #354209
533 -
534 -*webkit-gtk-1.2.7 (09 Feb 2011)
535 -
536 - 09 Feb 2011; Pacho Ramos <pacho@g.o> +webkit-gtk-1.2.7.ebuild:
537 - Version bump with multiple security fixes.
538 -
539 - 23 Jan 2011; Raúl Porcel <armin76@g.o> webkit-gtk-1.2.6.ebuild:
540 - alpha/ia64/sparc stable wrt #350598
541 -
542 - 15 Jan 2011; Pacho Ramos <pacho@g.o> -webkit-gtk-1.2.3.ebuild,
543 - webkit-gtk-1.2.6.ebuild:
544 - Filter -mvis on sparc due bug #351561, thanks to Alex Buell. Remove old.
545 -
546 - 15 Jan 2011; Markus Meier <maekke@g.o> webkit-gtk-1.2.6.ebuild:
547 - arm stable, bug #350598
548 -
549 - 11 Jan 2011; Pacho Ramos <pacho@g.o> webkit-gtk-1.2.6.ebuild:
550 - tests need x11-themes/hicolor-icon-theme per bug #351388 by Kacper Kowalik
551 - (Xarthisius).
552 -
553 - 11 Jan 2011; Kacper Kowalik <xarthisius@g.o>
554 - webkit-gtk-1.2.6.ebuild:
555 - ppc stable wrt #350598, add ~ppc64 wrt #279241 after applying workaround
556 -
557 - 10 Jan 2011; Pawel Hajdan jr <phajdan.jr@g.o>
558 - webkit-gtk-1.2.6.ebuild:
559 - x86 stable wrt security bug #350598
560 -
561 - 10 Jan 2011; Markos Chandras <hwoarang@g.o> webkit-gtk-1.2.6.ebuild:
562 - Stable on amd64 wrt bug #350598
563 -
564 - 09 Jan 2011; Brent Baude <ranger@g.o> webkit-gtk-1.2.5.ebuild:
565 - Marking webkit-gtk-1.2.5 ppc for bug 281819
566 -
567 - 08 Jan 2011; Kacper Kowalik <xarthisius@g.o> webkit-gtk-1.2.6.ebuild:
568 - Workaround TOC errors wrt #301634
569 -
570 -*webkit-gtk-1.2.6 (04 Jan 2011)
571 -
572 - 04 Jan 2011; Pacho Ramos <pacho@g.o>
573 - -files/webkit-gtk-1.1.15.2-unaligned.patch, -webkit-gtk-1.1.15.4.ebuild,
574 - -files/webkit-gtk-1.1.15.4-darwin-quartz.patch,
575 - -files/webkit-gtk-1.1.15.4-icu44.patch, +webkit-gtk-1.2.6.ebuild,
576 - metadata.xml:
577 - Version bump: Fixes crashes with newer libpng (>= 1.4), security fixes
578 - CVE-2010-4198 CVE-2010-4197 CVE-2010-4204 CVE-2010-4206 CVE-2010-1791
579 - CVE-2010-3812 CVE-2010-3813. Also makes JIT support optional as it causes
580 - problems with hardened (bug #338213). Remove old.
581 -
582 - 29 Dec 2010; <nirbheek@g.o> webkit-gtk-1.1.15.4.ebuild,
583 - webkit-gtk-1.2.3.ebuild, webkit-gtk-1.2.5.ebuild:
584 - Slot move from 0 to 2 for gtk+:2 versions, gtk+:3 versions will be added
585 - for SLOT=3
586 -
587 - 26 Dec 2010; Markos Chandras <hwoarang@g.o> webkit-gtk-1.2.5.ebuild:
588 - Stable on amd64 wrt bug #281819
589 -
590 - 25 Dec 2010; Raúl Porcel <armin76@g.o> webkit-gtk-1.2.5.ebuild:
591 - alpha/arm/ia64/sparc stable wrt #281819
592 -
593 - 24 Dec 2010; Thomas Kahle <tomka@g.o> webkit-gtk-1.2.5.ebuild:
594 - x86 stable per bug 281819
595 -
596 - 22 Dec 2010; Gilles Dartiguelongue <eva@g.o> webkit-gtk-1.2.5.ebuild,
597 - +files/webkit-gtk-1.2.5-tests-build.patch:
598 - Make sure tests are built only when needed, bug #343249. Pin slotted
599 - dependencies to needed slots. Replace addpredict by appropriate env variable
600 - adjustement and do the same for tests.
601 -
602 - 25 Nov 2010; Fabian Groffen <grobian@g.o> webkit-gtk-1.2.5.ebuild,
603 - +files/webkit-gtk-1.2.5-darwin-quartz.patch,
604 - +files/webkit-gtk-1.2.5-darwin8.patch:
605 - Re-introduce USE=aqua, add necessary patches
606 -
607 - 24 Nov 2010; Fabian Groffen <grobian@g.o> webkit-gtk-1.2.5.ebuild:
608 - Fix double-prefix issue, bug #346595
609 -
610 - 07 Nov 2010; Samuli Suominen <ssuominen@g.o>
611 - webkit-gtk-1.1.15.4.ebuild, webkit-gtk-1.2.3.ebuild,
612 - webkit-gtk-1.2.5.ebuild:
613 - Use virtual/jpeg wrt #327487.
614 -
615 - 17 Oct 2010; Raúl Porcel <armin76@g.o> webkit-gtk-1.2.3.ebuild:
616 - alpha/ia64/sparc stable wrt #324077
617 -
618 - 14 Oct 2010; Markus Meier <maekke@g.o> webkit-gtk-1.2.3.ebuild:
619 - arm stable, bug #324077
620 -
621 -*webkit-gtk-1.2.5 (11 Oct 2010)
622 -
623 - 11 Oct 2010; Pacho Ramos <pacho@g.o> -webkit-gtk-1.2.1.ebuild,
624 - -files/webkit-gtk-1.2.1-icu-4.4.patch, +webkit-gtk-1.2.5.ebuild,
625 - metadata.xml:
626 - Version bump: fixes for CVE-2010-1780 CVE-2010-3113 CVE-2010-1814
627 - CVE-2010-1812 CVE-2010-1815 CVE-2010-3115 CVE-2010-1807 CVE-2010-3114
628 - CVE-2010-3116 CVE-2010-3257 CVE-2010-3259 CVE-2010-1781 CVE-2010-1782
629 - CVE-2010-1784 CVE-2010-1785 CVE-2010-1786 CVE-2010-1787 CVE-2010-1788
630 - CVE-2010-1790 CVE-2010-1792 CVE-2010-1793 CVE-2010-2648 CVE-2010-2647.
631 - Bump to EAPI3, add introspection support, drop libtool-1 compatibility
632 - hack that should no longer be needed, remove old.
633 -
634 - 11 Sep 2010; Joseph Jezak <josejx@g.o> webkit-gtk-1.2.3.ebuild:
635 - Marked ppc for bug #324077.
636 -
637 - 01 Aug 2010; Christian Faulhammer <fauli@g.o>
638 - webkit-gtk-1.2.3.ebuild:
639 - x86 stable, bug 324077
640 -
641 - 31 Jul 2010; Pacho Ramos <pacho@g.o> webkit-gtk-1.2.3.ebuild:
642 - amd64 stable, bug 324077
643 -
644 - 26 Jul 2010; Pacho Ramos <pacho@g.o> webkit-gtk-1.2.3.ebuild,
645 - +files/webkit-gtk-1.2.3-fix-pool-sparc.patch:
646 - Update to debian patch letting webkit to keep working on sparc. Thanks a
647 - lot to Raúl Porcel in bug #329107 (by Possum) for finding the fix.
648 -
649 -*webkit-gtk-1.2.3 (18 Jul 2010)
650 -
651 - 18 Jul 2010; Pacho Ramos <pacho@g.o> +webkit-gtk-1.2.3.ebuild:
652 - Version bump: some crashes fixed, new function has been added to clear the
653 - back/forward, 'cursor hangs when dragging' and 'scrollbars no longer
654 - working after going back' bugs have been solved, fix to build against ICU
655 - 4.4.1, a lot of security fixes from Debian. Also web-sockets is disabled
656 - per bug #326547 (by Priit Laes).
657 -
658 - 09 Jul 2010; Pacho Ramos <pacho@g.o> webkit-gtk-1.2.1.ebuild:
659 - Set XDG_DATA_HOME to prevent test failures like bug #323669.
660 -
661 - 13 Jun 2010; Pacho Ramos <pacho@g.o> webkit-gtk-1.2.1.ebuild,
662 - +files/webkit-gtk-1.2.1-icu-4.4.patch:
663 - Apply icu patch properly, thanks to Chainsaw for finding the problem.
664 -
665 -*webkit-gtk-1.2.1 (13 Jun 2010)
666 -
667 - 13 Jun 2010; Pacho Ramos <pacho@g.o> +webkit-gtk-1.2.1.ebuild:
668 - Add new version for Gnome 2.30.
669 -
670 - 29 Mar 2010; Gilles Dartiguelongue <eva@g.o>
671 - -webkit-gtk-0_p40220-r1.ebuild,
672 - -files/webkit-gtk-0_p40220-gcc44-aliasing.patch,
673 - -webkit-gtk-1.1.10.ebuild,
674 - -files/webkit-gtk-1.1.10-reduce-gnome-keyring-req.patch,
675 - -webkit-gtk-1.1.15.2.ebuild, -files/webkit-gtk-CVE-2009-0945.patch,
676 - metadata.xml:
677 - Clean up old revisions.
678 -
679 - 29 Mar 2010; Gilles Dartiguelongue <eva@g.o>
680 - webkit-gtk-1.1.15.4.ebuild, +files/webkit-gtk-1.1.15.4-icu44.patch:
681 - Fix build with icu-4.4, bug #308699.
682 -
683 - 24 Mar 2010; Raúl Porcel <armin76@g.o> webkit-gtk-1.1.15.4.ebuild:
684 - alpha/arm/ia64/sparc stable wrt #304775
685 -
686 - 15 Mar 2010; nixnut <nixnut@g.o> webkit-gtk-1.1.15.4.ebuild:
687 - ppc stable #304775
688 -
689 - 06 Mar 2010; Pawel Hajdan jr <phajdan.jr@g.o>
690 - webkit-gtk-1.1.15.4.ebuild:
691 - x86 stable wrt bug #304775
692 -
693 - 06 Mar 2010; Samuli Suominen <ssuominen@g.o>
694 - webkit-gtk-1.1.15.4.ebuild:
695 - amd64 stable wrt #304775
696 -
697 - 13 Feb 2010; Pacho Ramos <pacho@g.o> webkit-gtk-1.1.15.4.ebuild:
698 - Use virtualx.eclass for passing tests, bug 294691
699 -
700 - 12 Feb 2010; Pacho Ramos <pacho@g.o> webkit-gtk-1.1.15.4.ebuild:
701 - Dropping pango USE flag since webkit uses pango by default since 1.1.x,
702 - bug 301577
703 -
704 - 03 Feb 2010; Fabian Groffen <grobian@g.o>
705 - webkit-gtk-1.1.15.4.ebuild,
706 - +files/webkit-gtk-1.1.15.4-darwin-quartz.patch:
707 - Add patch from upstream bugtracker to solve compilation issue on OSX when
708 - gtk was built with aqua USE-flag (the default).
709 -
710 - 19 Jan 2010; Raúl Porcel <armin76@g.o> webkit-gtk-1.1.15.2.ebuild:
711 - arm stable
712 -
713 - 10 Jan 2010; Christian Faulhammer <fauli@g.o>
714 - webkit-gtk-1.1.15.4.ebuild:
715 - Transfer Prefix keywords
716 -
717 - 29 Dec 2009; Raúl Porcel <armin76@g.o> webkit-gtk-1.1.15.2.ebuild,
718 - webkit-gtk-1.1.15.4.ebuild:
719 - Add ~arm
720 -
721 - 14 Dec 2009; Nirbheek Chauhan <nirbheek@g.o>
722 - webkit-gtk-1.1.15.4.ebuild:
723 - Bump gtk+ dependency to 2.13 for gail; in-tree gnome-base/gail is just a
724 - blank ebuild pulling in x11-libs/gtk+-2.13
725 -
726 - 10 Dec 2009; Raúl Porcel <armin76@g.o> webkit-gtk-1.1.15.2.ebuild:
727 - sparc stable
728 -
729 -*webkit-gtk-1.1.15.4 (06 Dec 2009)
730 -
731 - 06 Dec 2009; Luca Barbato <lu_zero@g.o> metadata.xml,
732 - +webkit-gtk-1.1.15.4.ebuild:
733 - Version bump, HTML5 ruby/furigana support always enabled
734 -
735 - 03 Dec 2009; Raúl Porcel <armin76@g.o> webkit-gtk-1.1.15.2.ebuild:
736 - Fix wrong patch name
737 -
738 - 14 Nov 2009; Raúl Porcel <armin76@g.o> webkit-gtk-1.1.15.2.ebuild,
739 - +files/webkit-gtk-1.1.15.2-unaligned.patch:
740 - Add patch from Debian to fix unaligned accesses, with permission from
741 - remi, bug #292940
742 -
743 - 09 Nov 2009; Raúl Porcel <armin76@g.o> webkit-gtk-1.1.10.ebuild,
744 - webkit-gtk-1.1.15.2.ebuild:
745 - This still doesn't work on sparc
746 -
747 -*webkit-gtk-1.1.15.2 (29 Oct 2009)
748 -
749 - 29 Oct 2009; Gilles Dartiguelongue <eva@g.o>
750 - -webkit-gtk-1.1.7.ebuild, -webkit-gtk-1.1.8.ebuild,
751 - +webkit-gtk-1.1.15.2.ebuild, metadata.xml:
752 - New version for GNOME 2.28. Clean up old revisions.
753 -
754 - 02 Oct 2009; Mounir Lamouri <volkmar@g.o> webkit-gtk-1.1.10.ebuild:
755 - Stable for ppc, bug 271865
756 -
757 - 28 Sep 2009; Tobias Klausmann <klausman@g.o>
758 - webkit-gtk-1.1.10.ebuild:
759 - Stable on alpha, bug #271865
760 -
761 - 28 Sep 2009; Christian Faulhammer <fauli@g.o>
762 - webkit-gtk-1.1.10.ebuild:
763 - stable x86, security bug 271865
764 -
765 - 28 Sep 2009; Olivier Crête <tester@g.o> webkit-gtk-1.1.10.ebuild:
766 - amd64 stable, bug #271865
767 -
768 - 28 Sep 2009; Mart Raudsepp <leio@g.o>
769 - +files/webkit-gtk-1.1.10-reduce-gnome-keyring-req.patch,
770 - webkit-gtk-1.1.10.ebuild:
771 - Reduce the gnome-keyring requirement to be able to stabilize the security
772 - fixes in this version earlier. Tweak some other dependencies to be more
773 - correct, also fixing bug 277463
774 -
775 - 27 Sep 2009; Mart Raudsepp <leio@g.o>
776 - -files/webkit-gtk-0_p46126-cxxmissing.patch,
777 - -files/webkit-gtk-0_p46126-wx-parallel-make.patch,
778 - -files/webkit-gtk-0_p46126-wxslot-gentoo.patch,
779 - -webkit-gtk-0_p46193.ebuild:
780 - Remove p.masked snapshot that tries to support wxWebKit. When this is
781 - re-introduced eventually, it will have to be a proper separate package
782 -
783 - 12 Sep 2009; Gilles Dartiguelongue <eva@g.o>
784 - webkit-gtk-0_p40220-r1.ebuild, webkit-gtk-0_p46193.ebuild,
785 - webkit-gtk-1.1.7.ebuild, webkit-gtk-1.1.8.ebuild,
786 - webkit-gtk-1.1.10.ebuild:
787 - Add warning message about gst-plugins-meta, bug #280841.
788 -
789 - 03 Sep 2009; Romain Perier <mrpouet@g.o>
790 - metadata.xml:
791 - Drop jokey from maintainers (after have been authorized by himself).
792 -
793 - 27 Jul 2009; Diego E. Pettenò <flameeyes@g.o>
794 - webkit-gtk-1.1.10.ebuild:
795 - Add missing flex dependency.
796 -
797 - 21 Jul 2009; Markus Ullmann <jokey@g.o>
798 - -webkit-gtk-0_p46126.ebuild, +webkit-gtk-0_p46193.ebuild:
799 - Version bump
800 -
801 -*webkit-gtk-0_p46193 (21 Jul 2009)
802 -
803 - 21 Jul 2009; Markus Ullmann <jokey@g.o>
804 - -webkit-gtk-0_p46126.ebuild, +webkit-gtk-0_p46193.ebuild:
805 - Once done, right start over with a new snapshot
806 -
807 - 21 Jul 2009; Markus Ullmann <jokey@g.o> webkit-gtk-0_p46126.ebuild,
808 - +files/webkit-gtk-0_p46126-wx-parallel-make.patch:
809 - Parallel make option and fix a nasty compile bug
810 -
811 - 21 Jul 2009; Markus Ullmann <jokey@g.o> webkit-gtk-0_p46126.ebuild:
812 - Fix Quoting
813 -
814 -*webkit-gtk-0_p46126 (21 Jul 2009)
815 -
816 - 21 Jul 2009; Markus Ullmann <jokey@g.o>
817 - +webkit-gtk-0_p46126.ebuild, +files/webkit-gtk-0_p46126-cxxmissing.patch,
818 - +files/webkit-gtk-0_p46126-wxslot-gentoo.patch:
819 - Add webkit nightly with wx support
820 -
821 - 30 Jun 2009; Mart Raudsepp <leio@g.o> -webkit-gtk-0_p40220.ebuild:
822 - Remove security vulnerable revision
823 -
824 - 28 Jun 2009; Markus Meier <maekke@g.o>
825 - webkit-gtk-0_p40220-r1.ebuild:
826 - amd64/x86 stable, bug #271861
827 -
828 - 27 Jun 2009; Brent Baude <ranger@g.o>
829 - webkit-gtk-0_p40220-r1.ebuild:
830 - Marking webkit-gtk-0_p40220-r1 ppc for bug 271861
831 -
832 - 27 Jun 2009; Tobias Klausmann <klausman@g.o>
833 - webkit-gtk-0_p40220-r1.ebuild:
834 - Stable on alpha, bug #271861
835 -
836 -*webkit-gtk-0_p40220-r1 (27 Jun 2009)
837 -
838 - 27 Jun 2009; <nirbheek@g.o> +webkit-gtk-0_p40220-r1.ebuild,
839 - +files/webkit-gtk-CVE-2009-0945.patch:
840 - Fix bug 271861 (Array indexing vulnerability (CVE-2009-0945))
841 -
842 -*webkit-gtk-1.1.10 (19 Jun 2009)
843 -
844 - 19 Jun 2009; <mrpouet@g.o> +webkit-gtk-1.1.10.ebuild:
845 - Bump to 1.1.10, bug #274445, thanks to Priit Laes <amd@×××××××.com>
846 -
847 - 03 Jun 2009; Nirbheek Chauhan <nirbheek@g.o>
848 - webkit-gtk-1.1.8.ebuild:
849 - Fix bug 272236 -- libtool-1 problems
850 -
851 - 01 Jun 2009; Nirbheek Chauhan <nirbheek@g.o>
852 - webkit-gtk-1.1.8.ebuild:
853 - Maintainer mode still gets invoked even when configure is older than
854 - configure.ac -- do an eautoreconf to update everything.
855 -
856 - 01 Jun 2009; Nirbheek Chauhan <nirbheek@g.o>
857 - webkit-gtk-1.1.8.ebuild:
858 - Reverse order of files to be sedded, fixes bug 271941
859 -
860 - 30 May 2009; Nirbheek Chauhan <nirbheek@g.o>
861 - -webkit-gtk-0_p42162.ebuild,
862 - -files/webkit-gtk-0_p42162-gcc44-aliasing.patch:
863 - Clean up old versions
864 -
865 -*webkit-gtk-1.1.8 (30 May 2009)
866 -
867 - 30 May 2009; Nirbheek Chauhan <nirbheek@g.o>
868 - +webkit-gtk-1.1.8.ebuild:
869 - Bump to 1.1.8, also fix bug 259061
870 -
871 - 24 May 2009; Nirbheek Chauhan <nirbheek@g.o>
872 - webkit-gtk-1.1.7.ebuild:
873 - Oops. src_configure isn't a default phase in EAPI=1. => EAPI=2
874 -
875 - 23 May 2009; Nirbheek Chauhan <nirbheek@g.o>
876 - webkit-gtk-1.1.7.ebuild:
877 - Don't make pango default. It's experimental, buggy, and incomplete.
878 - Upstream does not recommend it.
879 -
880 -*webkit-gtk-1.1.7 (23 May 2009)
881 -
882 - 23 May 2009; Nirbheek Chauhan <nirbheek@g.o>
883 - +webkit-gtk-1.1.7.ebuild, metadata.xml:
884 - Bump to 1.1.7 (from gnome overlay). Lots of new features, libsoup support,
885 - gnome-keyring support, etc. Add gnome as herd.
886 -
887 - 15 May 2009; Alexis Ballier <aballier@g.o>
888 - webkit-gtk-0_p40220.ebuild, webkit-gtk-0_p42162.ebuild:
889 - keyword ~x86-fbsd
890 -
891 - 07 May 2009; Peter Alfredsen <loki_val@g.o>
892 - webkit-gtk-0_p40220.ebuild, webkit-gtk-0_p42162.ebuild,
893 - +files/webkit-gtk-0_p40220-gcc44-aliasing.patch,
894 - +files/webkit-gtk-0_p42162-gcc44-aliasing.patch:
895 - Fix strict aliasing bug with gcc-4.4, bug 265579. Those letters really are
896 - huge. dirtyepic++ for backporting.
897 -
898 -*webkit-gtk-0_p42162 (05 Apr 2009)
899 -
900 - 05 Apr 2009; Markus Ullmann <jokey@g.o>
901 - +webkit-gtk-0_p42162.ebuild:
902 - Version bump
903 -
904 - 20 Mar 2009; Markus Meier <maekke@g.o> webkit-gtk-0_p40220.ebuild:
905 - amd64/x86 stable, bug #246816
906 -
907 - 20 Mar 2009; Raúl Porcel <armin76@g.o> webkit-gtk-0_p40220.ebuild:
908 - This revision doesn't work on ia64/sparc
909 -
910 - 19 Mar 2009; Tobias Klausmann <klausman@g.o>
911 - webkit-gtk-0_p40220.ebuild:
912 - Fixed forgotten inherit (flag-o-matic for append-ldflags)
913 -
914 - 19 Mar 2009; Brent Baude <ranger@g.o> webkit-gtk-0_p40220.ebuild:
915 - Marking webkit-gtk-0_p40220 ppc for bug 246816
916 -
917 - 11 Mar 2009; Tobias Klausmann <klausman@g.o>
918 - webkit-gtk-0_p40220.ebuild:
919 - Stable on alpha, bug #246816
920 -
921 - 31 Jan 2009; <jokey@g.o> webkit-gtk-0_p40220.ebuild:
922 - Dropping gnome-vfs dependency wrt bug #256456 and drop old
923 -
924 -*webkit-gtk-0_p40220 (25 Jan 2009)
925 -
926 - 25 Jan 2009; <jokey@g.o> +webkit-gtk-0_p40220.ebuild:
927 - Version bump to fix outstanding bugs
928 -
929 -*webkit-gtk-0_p37894 (26 Oct 2008)
930 -
931 - 26 Oct 2008; Markus Ullmann <jokey@g.o>
932 - +webkit-gtk-0_p37894.ebuild:
933 - Version bump
934 -
935 -*webkit-gtk-0_p36403 (14 Sep 2008)
936 -
937 - 14 Sep 2008; Markus Ullmann <jokey@g.o>
938 - -webkit-gtk-0_p35913.ebuild, +webkit-gtk-0_p36403.ebuild:
939 - Version bump
940 -
941 - 06 Sep 2008; Markus Ullmann <jokey@g.o> ChangeLog:
942 - Port from dev overlay
943 -
944 -*webkit-gtk-0_p36113 (06 Sep 2008)
945 -
946 - 06 Sep 2008; Markus Ullmann <jokey@g.o>
947 - -webkit-gtk-0_p35024.ebuild, -webkit-gtk-0_p35417.ebuild,
948 - -webkit-gtk-0_p36013.ebuild, +webkit-gtk-0_p36113.ebuild:
949 - Version bump
950 -
951 -*webkit-gtk-0_p36013 (01 Sep 2008)
952 -
953 - 01 Sep 2008; Markus Ullmann <jokey@g.o>
954 - +webkit-gtk-0_p36013.ebuild:
955 - Version bump
956 -
957 -*webkit-gtk-0_p35913 (25 Aug 2008)
958 -
959 - 25 Aug 2008; Markus Ullmann <jokey@g.o>
960 - -webkit-gtk-0_p34753.ebuild, +webkit-gtk-0_p35913.ebuild:
961 - Version bump and fix dependency for bug #235560 thanks to Jan Kuemmel for
962 - testing and reporting
963 -
964 - 31 Jul 2008; Raúl Porcel <armin76@g.o> webkit-gtk-0_p35417.ebuild:
965 - Add ~alpha/~ia64/-sparc
966 -
967 - 30 Jul 2008; Markus Ullmann <jokey@g.o> webkit-gtk-0_p35417.ebuild:
968 - drop hildon from IUSE
969 -
970 -*webkit-gtk-0_p35417 (30 Jul 2008)
971 -
972 - 30 Jul 2008; Markus Ullmann <jokey@g.o>
973 - -webkit-gtk-0_p34382.ebuild, -webkit-gtk-0_p34469.ebuild,
974 - +webkit-gtk-0_p35417.ebuild:
975 - Version bump, drop hildon use flag as there's no ebuild for that framework
976 - yet, bug #229021 for reference. Thanks to Brian Johnson
977 -
978 -*webkit-gtk-0_p35024 (06 Jul 2008)
979 -
980 - 06 Jul 2008; Hanno Boeck <hanno@g.o> +webkit-gtk-0_p35024.ebuild:
981 - Version bump.
982 -
983 -*webkit-gtk-0_p34753 (25 Jun 2008)
984 -
985 - 25 Jun 2008; Markus Ullmann <jokey@g.o>
986 - +webkit-gtk-0_p34753.ebuild:
987 - Version bump
988 -
989 - 11 Jun 2008; Markus Ullmann <jokey@g.o> ChangeLog:
990 - Fix Header
991 -
992 -*webkit-gtk-0_p34469 (11 Jun 2008)
993 -
994 - 11 Jun 2008; Markus Ullmann <jokey@g.o>
995 - +webkit-gtk-0_p34469.ebuild:
996 - Version bump with fixed ebuild, thanks to Joonas Henriksson in bug #225551
997 -
998 -*webkit-gtk-0_p34382 (08 Jun 2008)
999 -
1000 - 08 Jun 2008; Markus Ullmann <jokey@g.o> +metadata.xml,
1001 - +webkit-gtk-0_p34382.ebuild:
1002 - Rename to webkit-gtk as per consent on gentoo-dev irc channel
1003 -
1004 - 08 Jun 2008; Markus Ullmann <jokey@g.o> webkitgtk-34382.ebuild:
1005 - actually add the improved ebuild
1006 -
1007 -*webkitgtk-34382 (08 Jun 2008)
1008 -
1009 - 08 Jun 2008; Markus Ullmann <jokey@g.o> +metadata.xml,
1010 - +webkitgtk-34382.ebuild:
1011 - Initial import from sunrise overlay
1012 -
1013 - 07 Jun 2008; Markus Ullmann <jokey@g.o> -webkitgtk-34192.ebuild,
1014 - +webkitgtk-34382.ebuild:
1015 - Version bump
1016 -
1017 - 06 Jun 2008; Thomas Sachau (Tommy[D]) <tommy@g.o>
1018 - -webkitgtk-33431.ebuild:
1019 - Drop old version
1020 -
1021 - 29 May 2008; Markus Ullmann <jokey@g.o> +webkitgtk-34192.ebuild:
1022 - Version bump
1023 -
1024 - 16 May 2008; Thomas Sachau (Tommy[D]) <tommy@g.o>
1025 - -webkitgtk-31787.ebuild:
1026 - Drop old version
1027 -
1028 - 14 May 2008; Markus Ullmann <jokey@g.o> +webkitgtk-33431.ebuild:
1029 - Version bump
1030 -
1031 - 11 Apr 2008; Luca Bruno (Lethalman) <lethalman88@×××××.com>
1032 - -webkitgtk-31623.ebuild, +webkitgtk-31787.ebuild:
1033 - Version bump. USE svg only enable svg-experimental
1034 -
1035 - 05 Apr 2008; Luca Bruno (Lethalman) <lethalman88@×××××.com>
1036 - webkitgtk-31623.ebuild:
1037 - Bug 190347. Add ~ppc keyword.
1038 -
1039 - 05 Apr 2008; Luca Bruno (Lethalman) <lethalman88@×××××.com>
1040 - -webkitgtk-31535.ebuild, +webkitgtk-31623.ebuild:
1041 - Bump version. Add SVG options for getting Acid3 to 100%
1042 -
1043 - 03 Apr 2008; Luca Bruno (Lethalman) <lethalman88@×××××.com>
1044 - -webkitgtk-31370.ebuild, webkitgtk-31535.ebuild:
1045 - Fix SVG compilation
1046 -
1047 - 02 Apr 2008; Markus Ullmann <jokey@g.o> +webkitgtk-31535.ebuild:
1048 - Version bump
1049 -
1050 - 27 Mar 2008; Markus Ullmann <jokey@g.o> -webkitgtk-31275.ebuild,
1051 - +webkitgtk-31370.ebuild:
1052 - Version bump per hanno's request
1053 -
1054 - 25 Mar 2008; Luca Bruno (Lethalman) <lethalman88@×××××.com>
1055 - -webkitgtk-31224.ebuild:
1056 - Removed old r31224.
1057 -
1058 - 25 Mar 2008; Luca Bruno (Lethalman) <lethalman88@×××××.com> ++:
1059 - Bug 190347. Updated ebuild for nightly build r31275
1060 -
1061 - 22 Mar 2008; Tiziano Müller <dev-zero@g.o>
1062 - -webkitgtk-30468.ebuild, +webkitgtk-31224.ebuild:
1063 - Version bump.
1064 -
1065 - 23 Feb 2008; Luca Bruno (Lethalman) <lethalman88@×××××.com>
1066 - webkitgtk-30468.ebuild, -webkitgtk-30267.ebuild:
1067 - Bug 190347. New ebuild for WebKit r30468 nightly build.
1068 -
1069 - 15 Feb 2008; Luca Bruno (Lethalman) <lethalman88@×××××.com>
1070 - +webkitgtk-30267.ebuild, -webkitgtk-29487.ebuild:
1071 - New ebuild for new nightly build
1072 -
1073 - 18 Jan 2008; (Tommy[D]) tommy100@×××.de webkitgtk-29487.ebuild:
1074 - Reorder KEYWORDS
1075 -
1076 - 16 Jan 2008; (Tommy[D]) tommy100@×××.de -webkitgtk-29438.ebuild:
1077 - Drop old one
1078 -
1079 - 15 Jan 2008; Luca Bruno (Lethalman) <lethalman88@×××××.com>
1080 - +webkitgtk-29487.ebuild:
1081 - New EBuild. Remove automake --add-missing since bug 205606
1082 -
1083 - 13 Jan 2008; Jakub Moc <jakub@g.o> -webkitgtk-29336.ebuild,
1084 - webkitgtk-29438.ebuild:
1085 - Nuke old and add a comment on bad autotools usage
1086 -
1087 - 13 Jan 2008; Luca Bruno (Lethalman) <lethalman88@×××××.com>
1088 - +webkitgtk-29438.ebuild:
1089 - New EBuild for r29438 nightly build
1090 -
1091 - 09 Jan 2008; Luca Bruno (Lethalman) <lethalman88@×××××.com> +metadata.xml,
1092 - +webkitgtk-29336.ebuild:
1093 - New EBuild for bug 190347 thanks to Joonas, Dale, genstef and helch