* [gentoo-commits] gentoo-x86 commit in www-client/firefox: firefox-6.0.ebuild ChangeLog
@ 2011-08-24 7:29 Nirbheek Chauhan (nirbheek)
0 siblings, 0 replies; 4+ messages in thread
From: Nirbheek Chauhan (nirbheek) @ 2011-08-24 7:29 UTC (permalink / raw
To: gentoo-commits
nirbheek 11/08/24 07:29:10
Modified: firefox-6.0.ebuild ChangeLog
Log:
Fix access violation, bug 380283
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Revision Changes Path
1.3 www-client/firefox/firefox-6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/firefox-6.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/firefox-6.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/firefox-6.0.ebuild?r1=1.2&r2=1.3
Index: firefox-6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-6.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- firefox-6.0.ebuild 23 Aug 2011 19:35:58 -0000 1.2
+++ firefox-6.0.ebuild 24 Aug 2011 07:29:10 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-6.0.ebuild,v 1.2 2011/08/23 19:35:58 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-6.0.ebuild,v 1.3 2011/08/24 07:29:10 nirbheek Exp $
EAPI="3"
VIRTUALX_REQUIRED="pgo"
@@ -34,7 +34,7 @@
>=sys-devel/binutils-2.16.1
>=dev-libs/nss-3.12.10
>=dev-libs/nspr-4.8.8
- >=dev-libs/glib-2.26
+ >=dev-libs/glib-2.26:2
>=media-libs/mesa-7.10
media-libs/libpng[apng]
dev-libs/libffi
@@ -262,7 +262,12 @@
if use pgo; then
addpredict /root
addpredict /etc/gconf
- addpredict /dev/dri
+ # Firefox tries to dri stuff when it's run, see bug 380283
+ shopt -s nullglob
+ local cards=$(echo -n /dev/{dri,ati}/card* /dev/nvidiactl* | sed 's/ /:/g')
+ shopt -u nullglob
+ test -n "${cards}" && addpredict "${cards}"
+
CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getLD)" \
MOZ_MAKE_FLAGS="${MAKEOPTS}" \
Xemake -f client.mk profiledbuild || die "Xemake failed"
1.86 www-client/firefox/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/ChangeLog?r1=1.85&r2=1.86
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/firefox/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog 23 Aug 2011 19:28:03 -0000 1.85
+++ ChangeLog 24 Aug 2011 07:29:10 -0000 1.86
@@ -1,6 +1,9 @@
# ChangeLog for www-client/firefox
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/ChangeLog,v 1.85 2011/08/23 19:28:03 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/ChangeLog,v 1.86 2011/08/24 07:29:10 nirbheek Exp $
+
+ 24 Aug 2011; Nirbheek Chauhan <nirbheek@gentoo.org> firefox-6.0.ebuild:
+ Fix access violation, bug 380283
23 Aug 2011; Lars Wendler <polynomial-c@gentoo.org> firefox-3.6.17.ebuild,
firefox-3.6.18.ebuild, firefox-3.6.20.ebuild:
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-client/firefox: firefox-6.0.ebuild ChangeLog
@ 2011-08-25 20:52 Markus Meier (maekke)
0 siblings, 0 replies; 4+ messages in thread
From: Markus Meier (maekke) @ 2011-08-25 20:52 UTC (permalink / raw
To: gentoo-commits
maekke 11/08/25 20:52:01
Modified: firefox-6.0.ebuild ChangeLog
Log:
add ~arm, bug #360427
(Portage version: 2.1.10.11/cvs/Linux i686)
Revision Changes Path
1.4 www-client/firefox/firefox-6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/firefox-6.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/firefox-6.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/firefox-6.0.ebuild?r1=1.3&r2=1.4
Index: firefox-6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-6.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- firefox-6.0.ebuild 24 Aug 2011 07:29:10 -0000 1.3
+++ firefox-6.0.ebuild 25 Aug 2011 20:52:01 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-6.0.ebuild,v 1.3 2011/08/24 07:29:10 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-6.0.ebuild,v 1.4 2011/08/25 20:52:01 maekke Exp $
EAPI="3"
VIRTUALX_REQUIRED="pgo"
@@ -18,7 +18,7 @@
DESCRIPTION="Firefox Web Browser"
HOMEPAGE="http://www.mozilla.com/firefox"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux"
SLOT="0"
LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )"
IUSE="bindist +crashreporter +methodjit +ipc pgo system-sqlite +webm"
1.87 www-client/firefox/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/ChangeLog?r1=1.86&r2=1.87
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/firefox/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog 24 Aug 2011 07:29:10 -0000 1.86
+++ ChangeLog 25 Aug 2011 20:52:01 -0000 1.87
@@ -1,6 +1,9 @@
# ChangeLog for www-client/firefox
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/ChangeLog,v 1.86 2011/08/24 07:29:10 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/ChangeLog,v 1.87 2011/08/25 20:52:01 maekke Exp $
+
+ 25 Aug 2011; Markus Meier <maekke@gentoo.org> firefox-6.0.ebuild:
+ add ~arm, bug #360427
24 Aug 2011; Nirbheek Chauhan <nirbheek@gentoo.org> firefox-6.0.ebuild:
Fix access violation, bug 380283
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-client/firefox: firefox-6.0.ebuild ChangeLog
@ 2011-08-28 0:03 Jory Pratt (anarchy)
0 siblings, 0 replies; 4+ messages in thread
From: Jory Pratt (anarchy) @ 2011-08-28 0:03 UTC (permalink / raw
To: gentoo-commits
anarchy 11/08/28 00:03:08
Modified: firefox-6.0.ebuild ChangeLog
Log:
Fix cross compiliation support, bug #380885
(Portage version: 2.1.10.11/cvs/Linux x86_64)
Revision Changes Path
1.5 www-client/firefox/firefox-6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/firefox-6.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/firefox-6.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/firefox-6.0.ebuild?r1=1.4&r2=1.5
Index: firefox-6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-6.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- firefox-6.0.ebuild 25 Aug 2011 20:52:01 -0000 1.4
+++ firefox-6.0.ebuild 28 Aug 2011 00:03:08 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-6.0.ebuild,v 1.4 2011/08/25 20:52:01 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-6.0.ebuild,v 1.5 2011/08/28 00:03:08 anarchy Exp $
EAPI="3"
VIRTUALX_REQUIRED="pgo"
@@ -228,6 +228,7 @@
mozconfig_annotate '' --prefix="${EPREFIX}"/usr
mozconfig_annotate '' --libdir="${EPREFIX}"/usr/$(get_libdir)
+ mozconfig_annotate '' --target="${target}"
mozconfig_annotate '' --enable-extensions="${MEXTENSIONS}"
mozconfig_annotate '' --disable-gconf
mozconfig_annotate '' --disable-mailnews
1.88 www-client/firefox/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/ChangeLog?r1=1.87&r2=1.88
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/firefox/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog 25 Aug 2011 20:52:01 -0000 1.87
+++ ChangeLog 28 Aug 2011 00:03:08 -0000 1.88
@@ -1,6 +1,9 @@
# ChangeLog for www-client/firefox
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/ChangeLog,v 1.87 2011/08/25 20:52:01 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/ChangeLog,v 1.88 2011/08/28 00:03:08 anarchy Exp $
+
+ 27 Aug 2011; Jory A. Pratt <anarchy@gentoo.org> firefox-6.0.ebuild:
+ Fix cross compiliation support, bug #380885
25 Aug 2011; Markus Meier <maekke@gentoo.org> firefox-6.0.ebuild:
add ~arm, bug #360427
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-client/firefox: firefox-6.0.ebuild ChangeLog
@ 2011-08-28 1:03 Jory Pratt (anarchy)
0 siblings, 0 replies; 4+ messages in thread
From: Jory Pratt (anarchy) @ 2011-08-28 1:03 UTC (permalink / raw
To: gentoo-commits
anarchy 11/08/28 01:03:44
Modified: firefox-6.0.ebuild ChangeLog
Log:
revert cross compilation fix
(Portage version: 2.1.10.11/cvs/Linux x86_64)
Revision Changes Path
1.6 www-client/firefox/firefox-6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/firefox-6.0.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/firefox-6.0.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/firefox-6.0.ebuild?r1=1.5&r2=1.6
Index: firefox-6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-6.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- firefox-6.0.ebuild 28 Aug 2011 00:03:08 -0000 1.5
+++ firefox-6.0.ebuild 28 Aug 2011 01:03:44 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-6.0.ebuild,v 1.5 2011/08/28 00:03:08 anarchy Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-6.0.ebuild,v 1.6 2011/08/28 01:03:44 anarchy Exp $
EAPI="3"
VIRTUALX_REQUIRED="pgo"
@@ -228,7 +228,7 @@
mozconfig_annotate '' --prefix="${EPREFIX}"/usr
mozconfig_annotate '' --libdir="${EPREFIX}"/usr/$(get_libdir)
- mozconfig_annotate '' --target="${target}"
+ # mozconfig_annotate '' --target="${target}"
mozconfig_annotate '' --enable-extensions="${MEXTENSIONS}"
mozconfig_annotate '' --disable-gconf
mozconfig_annotate '' --disable-mailnews
1.89 www-client/firefox/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/ChangeLog?rev=1.89&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/ChangeLog?rev=1.89&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/firefox/ChangeLog?r1=1.88&r2=1.89
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/firefox/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog 28 Aug 2011 00:03:08 -0000 1.88
+++ ChangeLog 28 Aug 2011 01:03:44 -0000 1.89
@@ -1,6 +1,9 @@
# ChangeLog for www-client/firefox
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/ChangeLog,v 1.88 2011/08/28 00:03:08 anarchy Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/ChangeLog,v 1.89 2011/08/28 01:03:44 anarchy Exp $
+
+ 28 Aug 2011; Jory A. Pratt <anarchy@gentoo.org> firefox-6.0.ebuild:
+ revert target support
27 Aug 2011; Jory A. Pratt <anarchy@gentoo.org> firefox-6.0.ebuild:
Fix cross compiliation support, bug #380885
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-08-28 1:03 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-24 7:29 [gentoo-commits] gentoo-x86 commit in www-client/firefox: firefox-6.0.ebuild ChangeLog Nirbheek Chauhan (nirbheek)
-- strict thread matches above, loose matches on Subject: below --
2011-08-25 20:52 Markus Meier (maekke)
2011-08-28 0:03 Jory Pratt (anarchy)
2011-08-28 1:03 Jory Pratt (anarchy)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox