Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/clang: clang-3.6.0-r100.ebuild ChangeLog clang-3.6.0_rc4-r100.ebuild
Date: Sat, 28 Feb 2015 09:38:34
Message-Id: 20150228093831.5D4B012B9B@oystercatcher.gentoo.org
1 voyageur 15/02/28 09:38:31
2
3 Modified: ChangeLog
4 Added: clang-3.6.0-r100.ebuild
5 Removed: clang-3.6.0_rc4-r100.ebuild
6 Log:
7 Bump to final version
8
9 (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
10
11 Revision Changes Path
12 1.121 sys-devel/clang/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?rev=1.121&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?rev=1.121&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?r1=1.120&r2=1.121
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v
21 retrieving revision 1.120
22 retrieving revision 1.121
23 diff -u -r1.120 -r1.121
24 --- ChangeLog 23 Feb 2015 13:09:45 -0000 1.120
25 +++ ChangeLog 28 Feb 2015 09:38:31 -0000 1.121
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sys-devel/clang
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v 1.120 2015/02/23 13:09:45 voyageur Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v 1.121 2015/02/28 09:38:31 voyageur Exp $
31 +
32 +*clang-3.6.0-r100 (27 Feb 2015)
33 +
34 + 27 Feb 2015; Bernard Cafarelli <voyageur@g.o>
35 + -clang-3.6.0_rc4-r100.ebuild, +clang-3.6.0-r100.ebuild:
36 + Bump to final version
37
38 *clang-3.6.0_rc4-r100 (23 Feb 2015)
39
40
41
42
43 1.1 sys-devel/clang/clang-3.6.0-r100.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-3.6.0-r100.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-3.6.0-r100.ebuild?rev=1.1&content-type=text/plain
47
48 Index: clang-3.6.0-r100.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-3.6.0-r100.ebuild,v 1.1 2015/02/28 09:38:31 voyageur Exp $
53
54 EAPI=5
55
56 inherit multilib-build
57
58 DESCRIPTION="C language family frontend for LLVM (meta-ebuild)"
59 HOMEPAGE="http://clang.llvm.org/"
60 SRC_URI=""
61
62 LICENSE="UoI-NCSA"
63 SLOT="0/3.6"
64 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos"
65 IUSE="debug multitarget python +static-analyzer"
66
67 RDEPEND="~sys-devel/llvm-${PV}[clang(-),debug=,multitarget?,python?,static-analyzer,${MULTILIB_USEDEP}]"
68
69 # Please keep this package around since it's quite likely that we'll
70 # return to separate LLVM & clang ebuilds when the cmake build system
71 # is complete.
72
73 pkg_postinst() {
74 if has_version ">=dev-util/ccache-3.1.9-r2" ; then
75 #add ccache links as clang might get installed after ccache
76 "${EROOT}"/usr/bin/ccache-config --install-links
77 fi
78 }
79
80 pkg_postrm() {
81 if has_version ">=dev-util/ccache-3.1.9-r2" && [[ -z ${REPLACED_BY_VERSION} ]]; then
82 # --remove-links would remove all links, --install-links updates them
83 "${EROOT}"/usr/bin/ccache-config --install-links
84 fi
85 }