Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/llvm: llvm-9999.ebuild ChangeLog
Date: Thu, 31 Oct 2013 16:22:08
Message-Id: 20131031162200.5D9DA20047@flycatcher.gentoo.org
1 mgorny 13/10/31 16:22:00
2
3 Modified: llvm-9999.ebuild ChangeLog
4 Log:
5 Update the Gentoo patch. Use multilib_build_binaries per bug #489586.
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
8
9 Revision Changes Path
10 1.58 sys-devel/llvm/llvm-9999.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/llvm-9999.ebuild?rev=1.58&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/llvm-9999.ebuild?rev=1.58&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/llvm-9999.ebuild?r1=1.57&r2=1.58
15
16 Index: llvm-9999.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-9999.ebuild,v
19 retrieving revision 1.57
20 retrieving revision 1.58
21 diff -u -r1.57 -r1.58
22 --- llvm-9999.ebuild 14 Oct 2013 16:39:57 -0000 1.57
23 +++ llvm-9999.ebuild 31 Oct 2013 16:22:00 -0000 1.58
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-9999.ebuild,v 1.57 2013/10/14 16:39:57 mgorny Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-9999.ebuild,v 1.58 2013/10/31 16:22:00 mgorny Exp $
29
30 EAPI=5
31
32 @@ -204,7 +204,7 @@
33 fi
34 fi
35
36 - if multilib_is_native_abi && use gold; then
37 + if multilib_build_binaries && use gold; then
38 CONF_FLAGS="${CONF_FLAGS} --with-binutils-include=${EPREFIX}/usr/include/"
39 fi
40 if multilib_is_native_abi && use ocaml; then
41 @@ -282,7 +282,7 @@
42 "${ED}"/usr/bin/* || die
43 fi
44
45 - if multilib_is_native_abi; then
46 + if multilib_build_binaries; then
47 # Move files back.
48 if path_exists -o "${ED}"/tmp/llvm-config.*; then
49 mv "${ED}"/tmp/llvm-config.* "${ED}"/usr/bin || die
50
51
52
53 1.143 sys-devel/llvm/ChangeLog
54
55 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?rev=1.143&view=markup
56 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?rev=1.143&content-type=text/plain
57 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?r1=1.142&r2=1.143
58
59 Index: ChangeLog
60 ===================================================================
61 RCS file: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v
62 retrieving revision 1.142
63 retrieving revision 1.143
64 diff -u -r1.142 -r1.143
65 --- ChangeLog 14 Oct 2013 16:39:57 -0000 1.142
66 +++ ChangeLog 31 Oct 2013 16:22:00 -0000 1.143
67 @@ -1,6 +1,10 @@
68 # ChangeLog for sys-devel/llvm
69 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
70 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.142 2013/10/14 16:39:57 mgorny Exp $
71 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.143 2013/10/31 16:22:00 mgorny Exp $
72 +
73 + 31 Oct 2013; Michał Górny <mgorny@g.o>
74 + files/llvm-3.4-gentoo-install.patch, llvm-9999.ebuild:
75 + Update the Gentoo patch. Use multilib_build_binaries per bug #489586.
76
77 14 Oct 2013; Michał Górny <mgorny@g.o> llvm-9999.ebuild, metadata.xml:
78 Clean up the deps & configure call. Add USE=ncurses to control terminfo use.