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-common/
Date: Sun, 30 Dec 2018 11:40:18
Message-Id: 1546169985.1eaa7183a5fd4a8580ab42741811ddea12bb3cd7.mgorny@gentoo
1 commit: 1eaa7183a5fd4a8580ab42741811ddea12bb3cd7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 30 11:31:57 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 30 11:39:45 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eaa7183
7
8 sys-devel/clang-common: Remove 7.0.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sys-devel/clang-common/Manifest | 1 -
13 sys-devel/clang-common/clang-common-7.0.0.ebuild | 33 ------------------------
14 2 files changed, 34 deletions(-)
15
16 diff --git a/sys-devel/clang-common/Manifest b/sys-devel/clang-common/Manifest
17 index d8aa92319f3..78fcd43ab27 100644
18 --- a/sys-devel/clang-common/Manifest
19 +++ b/sys-devel/clang-common/Manifest
20 @@ -1,3 +1,2 @@
21 DIST cfe-6.0.1.src.tar.xz 11905772 BLAKE2B abb60e9f9827d1d8a24f0aaf8a1d1e32979293cc401258d230f93290e633645747fd0344af189ac7081b06be2cada503364e1e432b37110ade4b3578e40c7605 SHA512 f64ba9290059f6e36fee41c8f32bf483609d31c291fcd2f77d41fecfdf3c8233a5e23b93a1c73fed03683823bd6e72757ed993dd32527de3d5f2b7a64bb031b9
22 -DIST cfe-7.0.0.src.tar.xz 12541904 BLAKE2B 92ecfcb37e7efb4f3dde275e7a087a52f1ddc607bee78fd222f87e6391ab7deb9a4e761c05e405126f46170fdff04aeaf9bd1e886a326c92a064ca81be4e6f21 SHA512 17a658032a0160c57d4dc23cb45a1516a897e0e2ba4ebff29472e471feca04c5b68cff351cdf231b42aab0cff587b84fe11b921d1ca7194a90e6485913d62cb7
23 DIST cfe-7.0.1.src.tar.xz 12488668 BLAKE2B b80247b5caf81661dfa715d9bf454b8023221bd27ce49b6bd8cd66f40ffe01448e40fb828fbcc64e49f059af7a7c5a95a0737b0b998454ac5c1dd39388150fa6 SHA512 df2f38153ebdc261bcfa6a569567f759bbb1a803192882a9d4eca55a47878166ac9057151a94ad341dc1281136547e4faa783a68070dfde2307b48cacd4b9194
24
25 diff --git a/sys-devel/clang-common/clang-common-7.0.0.ebuild b/sys-devel/clang-common/clang-common-7.0.0.ebuild
26 deleted file mode 100644
27 index f00d208a860..00000000000
28 --- a/sys-devel/clang-common/clang-common-7.0.0.ebuild
29 +++ /dev/null
30 @@ -1,33 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit bash-completion-r1
37 -
38 -MY_P=cfe-${PV/_/}.src
39 -DESCRIPTION="Common files shared between multiple slots of clang"
40 -HOMEPAGE="https://llvm.org/"
41 -SRC_URI="https://releases.llvm.org/${PV/_//}/${MY_P}.tar.xz"
42 -
43 -LICENSE="UoI-NCSA"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
46 -IUSE=""
47 -
48 -PDEPEND="sys-devel/clang:*"
49 -
50 -S=${WORKDIR}/${MY_P}
51 -
52 -src_unpack() {
53 - einfo "Unpacking parts of ${MY_P}.tar.xz ..."
54 - tar -xJf "${DISTDIR}/${MY_P}.tar.xz" "${MY_P}/utils/bash-autocomplete.sh" || die
55 -}
56 -
57 -src_configure() { :; }
58 -src_compile() { :; }
59 -src_test() { :; }
60 -
61 -src_install() {
62 - newbashcomp utils/bash-autocomplete.sh clang
63 -}