Gentoo Archives: gentoo-commits

From: "Sergei Trofimovich (slyfox)" <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/qemu: qemu-9999.ebuild ChangeLog
Date: Tue, 28 Feb 2012 18:31:16
Message-Id: 20120228183106.2958A2004B@flycatcher.gentoo.org
1 slyfox 12/02/28 18:31:06
2
3 Modified: qemu-9999.ebuild ChangeLog
4 Log:
5 Switch to upstream's '--disable-debug-info' to avoid OOM bug #355861.
6
7 (Portage version: 2.2.0_alpha89_p3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.16 app-emulation/qemu/qemu-9999.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/qemu-9999.ebuild?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/qemu-9999.ebuild?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/qemu-9999.ebuild?r1=1.15&r2=1.16
15
16 Index: qemu-9999.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-9999.ebuild,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- qemu-9999.ebuild 29 Jan 2012 12:18:34 -0000 1.15
23 +++ qemu-9999.ebuild 28 Feb 2012 18:31:06 -0000 1.16
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-9999.ebuild,v 1.15 2012/01/29 12:18:34 slyfox Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/qemu-9999.ebuild,v 1.16 2012/02/28 18:31:06 slyfox Exp $
29
30 EAPI=4
31
32 @@ -132,11 +132,6 @@
33 # prevent docs to get automatically installed
34 sed -i '/$(DESTDIR)$(docdir)/d' Makefile || die
35
36 - # drop '-g' by default as it tends to eat
37 - # A LOT (~2GB) of ram for each job #355861
38 - sed -e 's/CFLAGS="-g $CFLAGS"/CFLAGS="$CFLAGS"/g' \
39 - -i configure || die
40 -
41 # Fix underlinking.
42 # Fault reproducer: USE=nss QEMU_SOFTMMU_TARGETS=lm32 QEMU_USER_TARGETS=
43 sed -i 's/opengl_libs="-lGL"/opengl_libs="-lGL -lX11"/' configure || die
44 @@ -171,6 +166,10 @@
45 # Fix QA issues. QEMU needs executable heaps and we need to mark it as such
46 conf_opts="${conf_opts} --extra-ldflags=-Wl,-z,execheap"
47
48 + # drop '-g' by default as it tends to eat
49 + # A LOT (~2GB) of ram for each job #355861
50 + conf_opts="${conf_opts} --disable-debug-info"
51 +
52 # Add support for static builds
53 use static && conf_opts="${conf_opts} --static"
54
55
56
57
58 1.105 app-emulation/qemu/ChangeLog
59
60 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.105&view=markup
61 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/ChangeLog?rev=1.105&content-type=text/plain
62 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/qemu/ChangeLog?r1=1.104&r2=1.105
63
64 Index: ChangeLog
65 ===================================================================
66 RCS file: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v
67 retrieving revision 1.104
68 retrieving revision 1.105
69 diff -u -r1.104 -r1.105
70 --- ChangeLog 25 Feb 2012 21:03:08 -0000 1.104
71 +++ ChangeLog 28 Feb 2012 18:31:06 -0000 1.105
72 @@ -1,6 +1,9 @@
73 # ChangeLog for app-emulation/qemu
74 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
75 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.104 2012/02/25 21:03:08 cardoe Exp $
76 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/qemu/ChangeLog,v 1.105 2012/02/28 18:31:06 slyfox Exp $
77 +
78 + 28 Feb 2012; Sergei Trofimovich <slyfox@g.o> qemu-9999.ebuild:
79 + Switch to upstream's '--disable-debug-info' to avoid OOM bug #355861.
80
81 25 Feb 2012; Doug Goldstein <cardoe@g.o> qemu-1.0-r3.ebuild:
82 When building with USE=static, zlib needs to be built with USE=static-libs.