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: Sat, 03 Jun 2017 08:28:16
Message-Id: 1496478463.66165c1f42e0fddf82bb7f5bc90797f9874e4ee0.mgorny@gentoo
1 commit: 66165c1f42e0fddf82bb7f5bc90797f9874e4ee0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 24 15:52:53 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 3 08:27:43 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66165c1f
7
8 sys-devel/clang: Remove 3.9.0 (old intermediate version)
9
10 sys-devel/clang/clang-3.9.0-r100.ebuild | 46 ---------------------------------
11 1 file changed, 46 deletions(-)
12
13 diff --git a/sys-devel/clang/clang-3.9.0-r100.ebuild b/sys-devel/clang/clang-3.9.0-r100.ebuild
14 deleted file mode 100644
15 index 34ac7c96826..00000000000
16 --- a/sys-devel/clang/clang-3.9.0-r100.ebuild
17 +++ /dev/null
18 @@ -1,46 +0,0 @@
19 -# Copyright 1999-2016 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -
22 -EAPI=5
23 -
24 -inherit multilib-build
25 -
26 -DESCRIPTION="C language family frontend for LLVM (meta-ebuild)"
27 -HOMEPAGE="http://clang.llvm.org/"
28 -SRC_URI=""
29 -
30 -# Keep in sync with sys-devel/llvm
31 -ALL_LLVM_TARGETS=( AArch64 AMDGPU ARM BPF Hexagon Mips MSP430
32 - NVPTX PowerPC Sparc SystemZ X86 XCore )
33 -ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" )
34 -LLVM_TARGET_USEDEPS=${ALL_LLVM_TARGETS[@]/%/?}
35 -
36 -LICENSE="UoI-NCSA"
37 -# keep in sync with sys-devel/llvm!
38 -SLOT="0/${PV}"
39 -KEYWORDS="~amd64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
40 -IUSE="debug multitarget python +static-analyzer ${ALL_LLVM_TARGETS[*]}"
41 -
42 -RDEPEND="~sys-devel/llvm-${PV}[clang(-),debug=,python?,static-analyzer?,${LLVM_TARGET_USEDEPS// /,},${MULTILIB_USEDEP}]"
43 -
44 -REQUIRED_USE="
45 - || ( ${ALL_LLVM_TARGETS[*]} )
46 - multitarget? ( ${ALL_LLVM_TARGETS[*]} )"
47 -
48 -# Please keep this package around since it's quite likely that we'll
49 -# return to separate LLVM & clang ebuilds when the cmake build system
50 -# is complete.
51 -
52 -pkg_postinst() {
53 - if has_version ">=dev-util/ccache-3.1.9-r2" ; then
54 - #add ccache links as clang might get installed after ccache
55 - "${EROOT}"/usr/bin/ccache-config --install-links
56 - fi
57 -}
58 -
59 -pkg_postrm() {
60 - if has_version ">=dev-util/ccache-3.1.9-r2" && [[ -z ${REPLACED_BY_VERSION} ]]; then
61 - # --remove-links would remove all links, --install-links updates them
62 - "${EROOT}"/usr/bin/ccache-config --install-links
63 - fi
64 -}