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