Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/x264: ChangeLog x264-0.0.20110825.ebuild
Date: Wed, 07 Sep 2011 09:04:37
Message-Id: 20110907090425.C00292004C@flycatcher.gentoo.org
1 flameeyes 11/09/07 09:04:25
2
3 Modified: ChangeLog x264-0.0.20110825.ebuild
4 Log:
5 QA: stop failing when using -ggdb in CFLAGS.
6
7 (Portage version: 2.2.0_alpha54/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.59 media-libs/x264/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x264/ChangeLog?rev=1.59&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x264/ChangeLog?rev=1.59&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x264/ChangeLog?r1=1.58&r2=1.59
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/x264/ChangeLog,v
19 retrieving revision 1.58
20 retrieving revision 1.59
21 diff -u -r1.58 -r1.59
22 --- ChangeLog 7 Sep 2011 02:24:28 -0000 1.58
23 +++ ChangeLog 7 Sep 2011 09:04:25 -0000 1.59
24 @@ -1,6 +1,10 @@
25 # ChangeLog for media-libs/x264
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/ChangeLog,v 1.58 2011/09/07 02:24:28 chutzpah Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/ChangeLog,v 1.59 2011/09/07 09:04:25 flameeyes Exp $
29 +
30 + 07 Sep 2011; Diego E. Pettenò <flameeyes@g.o>
31 + x264-0.0.20110825.ebuild:
32 + QA: stop failing when using -ggdb in CFLAGS.
33
34 *x264-0.0.20110825 (07 Sep 2011)
35
36
37
38
39 1.2 media-libs/x264/x264-0.0.20110825.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x264/x264-0.0.20110825.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x264/x264-0.0.20110825.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x264/x264-0.0.20110825.ebuild?r1=1.1&r2=1.2
44
45 Index: x264-0.0.20110825.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-libs/x264/x264-0.0.20110825.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- x264-0.0.20110825.ebuild 7 Sep 2011 02:24:28 -0000 1.1
52 +++ x264-0.0.20110825.ebuild 7 Sep 2011 09:04:25 -0000 1.2
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/x264-0.0.20110825.ebuild,v 1.1 2011/09/07 02:24:28 chutzpah Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/x264-0.0.20110825.ebuild,v 1.2 2011/09/07 09:04:25 flameeyes Exp $
58
59 EAPI=4
60 inherit eutils flag-o-matic multilib toolchain-funcs versionator
61 @@ -61,8 +61,8 @@
62 local cflags
63 cflags="$(grep "^CFLAGS=" config.mak | sed 's/CFLAGS=//')"
64 cflags="${cflags//$(get-flag O)/}"
65 - cflags="${cflags//-O?/$(get-flag O)}"
66 - cflags="${cflags//-g/}"
67 + cflags="${cflags//-O? /$(get-flag O) }"
68 + cflags="${cflags//-g /}"
69 sed -i "s:^CFLAGS=.*:CFLAGS=${cflags//:/\\:}:" config.mak
70 fi
71 }