Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm-roc/
Date: Wed, 14 Aug 2019 00:27:24
Message-Id: 1565742431.c1059d81c53fe153e46c07738756125d5f616847.candrews@gentoo
1 commit: c1059d81c53fe153e46c07738756125d5f616847
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 13 19:22:52 2019 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 14 00:27:11 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1059d81
7
8 sys-devel/llvm-roc: Drop old version
9
10 Package-Manager: Portage-2.3.71, Repoman-2.3.17
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 sys-devel/llvm-roc/llvm-roc-2.6.0.ebuild | 39 --------------------------------
14 1 file changed, 39 deletions(-)
15
16 diff --git a/sys-devel/llvm-roc/llvm-roc-2.6.0.ebuild b/sys-devel/llvm-roc/llvm-roc-2.6.0.ebuild
17 deleted file mode 100644
18 index 63d3cc7cf47..00000000000
19 --- a/sys-devel/llvm-roc/llvm-roc-2.6.0.ebuild
20 +++ /dev/null
21 @@ -1,39 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit cmake-utils
28 -
29 -DESCRIPTION="Radeon Open Compute llvm,lld,clang"
30 -HOMEPAGE="https://github.com/RadeonOpenCompute/ROCm/"
31 -SRC_URI="https://github.com/RadeonOpenCompute/llvm/archive/roc-ocl-${PV}.tar.gz -> llvm-roc-ocl-${PV}.tar.gz
32 - https://github.com/RadeonOpenCompute/clang/archive/roc-${PV}.tar.gz -> clang-roc-${PV}.tar.gz
33 - https://github.com/RadeonOpenCompute/lld/archive/roc-ocl-${PV}.tar.gz -> lld-roc-ocl-${PV}.tar.gz"
34 -
35 -LICENSE="UoI-NCSA rc BSD public-domain"
36 -SLOT="0"
37 -KEYWORDS="~amd64"
38 -IUSE=""
39 -
40 -RDEPEND="virtual/cblas
41 - dev-libs/rocr-runtime"
42 -DEPEND="${RDEPEND}"
43 -
44 -CMAKE_BUILD_TYPE=RelWithDebInfo
45 -
46 -S="${WORKDIR}/llvm-roc-ocl-${PV}"
47 -
48 -src_unpack() {
49 - unpack ${A}
50 - ln -s "${WORKDIR}/clang-roc-${PV}" "${WORKDIR}/llvm-roc-ocl-${PV}/tools/clang"
51 - ln -s "${WORKDIR}/lld-roc-ocl-${PV}" "${WORKDIR}/llvm-roc-ocl-${PV}/tools/lld"
52 -}
53 -
54 -src_configure() {
55 - local mycmakeargs=(
56 - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/lib/llvm/roc"
57 - -DLLVM_TARGETS_TO_BUILD="AMDGPU;X86" "${S}"
58 - )
59 - cmake-utils_src_configure
60 -}