Gentoo Archives: gentoo-commits

From: "Ryan Hill (rhill)" <rhill@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog toolchain.eclass
Date: Wed, 21 May 2014 20:39:24
Message-Id: 20140521203921.3856D2004C@flycatcher.gentoo.org
1 rhill 14/05/21 20:39:21
2
3 Modified: ChangeLog toolchain.eclass
4 Log:
5 Revert libintl change. It turns out we need to depend on gettext anyways, so
6 this change is pointless.
7
8 Revision Changes Path
9 1.1260 eclass/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1260&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1260&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1259&r2=1.1260
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
18 retrieving revision 1.1259
19 retrieving revision 1.1260
20 diff -u -r1.1259 -r1.1260
21 --- ChangeLog 20 May 2014 10:41:23 -0000 1.1259
22 +++ ChangeLog 21 May 2014 20:39:20 -0000 1.1260
23 @@ -1,6 +1,10 @@
24 # ChangeLog for eclass directory
25 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1259 2014/05/20 10:41:23 rhill Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1260 2014/05/21 20:39:20 rhill Exp $
28 +
29 + 21 May 2014; Ryan Hill <rhill@g.o> toolchain.eclass:
30 + Revert libintl change. It turns out we need to depend on gettext anyways, so
31 + this change is pointless.
32
33 20 May 2014; Ryan Hill <rhill@g.o> toolchain.eclass:
34 Strip -mno-rtm and -mno-htm as libitm requires these for x86/x86_64 and
35
36
37
38 1.629 eclass/toolchain.eclass
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?rev=1.629&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?rev=1.629&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?r1=1.628&r2=1.629
43
44 Index: toolchain.eclass
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v
47 retrieving revision 1.628
48 retrieving revision 1.629
49 diff -u -r1.628 -r1.629
50 --- toolchain.eclass 20 May 2014 10:41:23 -0000 1.628
51 +++ toolchain.eclass 21 May 2014 20:39:21 -0000 1.629
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2014 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.628 2014/05/20 10:41:23 rhill Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.629 2014/05/21 20:39:21 rhill Exp $
57
58 # Maintainer: Toolchain Ninjas <toolchain@g.o>
59
60 @@ -148,7 +148,7 @@
61 #---->> DEPEND <<----
62
63 RDEPEND="sys-libs/zlib
64 - nls? ( virtual/libintl )"
65 + nls? ( sys-devel/gettext )"
66
67 tc_version_is_at_least 3 && RDEPEND+=" virtual/libiconv"