Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/clang/
Date: Tue, 05 Jul 2016 19:04:45
Message-Id: 1467745467.10d0dcb1d623feb131acdf37074dabeb3f49859f.mgorny@gentoo
1 commit: 10d0dcb1d623feb131acdf37074dabeb3f49859f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 4 20:30:12 2016 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 5 19:04:27 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10d0dcb1
7
8 sys-devel/clang: Remove 3.4.2
9
10 sys-devel/clang/clang-3.4.2-r100.ebuild | 36 ---------------------------------
11 1 file changed, 36 deletions(-)
12
13 diff --git a/sys-devel/clang/clang-3.4.2-r100.ebuild b/sys-devel/clang/clang-3.4.2-r100.ebuild
14 deleted file mode 100644
15 index 27c4751..0000000
16 --- a/sys-devel/clang/clang-3.4.2-r100.ebuild
17 +++ /dev/null
18 @@ -1,36 +0,0 @@
19 -# Copyright 1999-2015 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -# $Id$
22 -
23 -EAPI=5
24 -
25 -inherit multilib-build
26 -
27 -DESCRIPTION="C language family frontend for LLVM (meta-ebuild)"
28 -HOMEPAGE="http://clang.llvm.org/"
29 -SRC_URI=""
30 -
31 -LICENSE="UoI-NCSA"
32 -SLOT="0/3.4"
33 -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos"
34 -IUSE="debug multitarget python +static-analyzer"
35 -
36 -RDEPEND="~sys-devel/llvm-${PV}[clang(-),debug=,multitarget?,python?,static-analyzer,${MULTILIB_USEDEP}]"
37 -
38 -# Please keep this package around since it's quite likely that we'll
39 -# return to separate LLVM & clang ebuilds when the cmake build system
40 -# is complete.
41 -
42 -pkg_postinst() {
43 - if has_version ">=dev-util/ccache-3.1.9-r2" ; then
44 - #add ccache links as clang might get installed after ccache
45 - "${EROOT}"/usr/bin/ccache-config --install-links
46 - fi
47 -}
48 -
49 -pkg_postrm() {
50 - if has_version ">=dev-util/ccache-3.1.9-r2" && [[ -z ${REPLACED_BY_VERSION} ]]; then
51 - # --remove-links would remove all links, --install-links updates them
52 - "${EROOT}"/usr/bin/ccache-config --install-links
53 - fi
54 -}