From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0850D138334 for ; Thu, 15 Aug 2019 20:20:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1A1F7E0C4F; Thu, 15 Aug 2019 20:20:02 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D9762E0C4F for ; Thu, 15 Aug 2019 20:20:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B6BBF349BED for ; Thu, 15 Aug 2019 20:20:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15D202A5 for ; Thu, 15 Aug 2019 20:19:58 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1565900369.d131f25ec9ee02f3b9f223b2018ed7cbf6937589.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/rocm-opencl-runtime/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/rocm-opencl-runtime/rocm-opencl-runtime-2.6.0.ebuild X-VCS-Directories: dev-libs/rocm-opencl-runtime/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: d131f25ec9ee02f3b9f223b2018ed7cbf6937589 X-VCS-Branch: master Date: Thu, 15 Aug 2019 20:19:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 122f2710-c7bf-4380-bfda-99e54aac14ea X-Archives-Hash: 72c75f6ccb1aa988dae53ab1d2082c48 commit: d131f25ec9ee02f3b9f223b2018ed7cbf6937589 Author: Craig Andrews gentoo org> AuthorDate: Thu Aug 15 20:19:29 2019 +0000 Commit: Craig Andrews gentoo org> CommitDate: Thu Aug 15 20:19:29 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d131f25e dev-libs/rocm-opencl-runtime: Cleanup old version Package-Manager: Portage-2.3.71, Repoman-2.3.17 Signed-off-by: Craig Andrews gentoo.org> .../rocm-opencl-runtime-2.6.0.ebuild | 50 ---------------------- 1 file changed, 50 deletions(-) diff --git a/dev-libs/rocm-opencl-runtime/rocm-opencl-runtime-2.6.0.ebuild b/dev-libs/rocm-opencl-runtime/rocm-opencl-runtime-2.6.0.ebuild deleted file mode 100644 index cd44ed80e4d..00000000000 --- a/dev-libs/rocm-opencl-runtime/rocm-opencl-runtime-2.6.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake-utils - -OPENCL_ICD_COMMIT="bc9728edf8cace79cf33bf75560be88fc2432dc4" -SRC_URI="https://github.com/KhronosGroup/OpenCL-ICD-Loader/archive/${OPENCL_ICD_COMMIT}.tar.gz -> OpenCL-ICD-Loader-${OPENCL_ICD_COMMIT}.tar.gz" -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime/" - inherit git-r3 -else - SRC_URI+=" https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime/archive/roc-${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" - S="${WORKDIR}/ROCm-OpenCL-Runtime-roc-${PV}" -fi - -DESCRIPTION="Radeon Open Compute OpenCL Compatible Runtime" -HOMEPAGE="https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime" - -LICENSE="Apache-2.0 MIT" -SLOT="0/$(ver_cut 1-2)" - -RDEPEND="dev-libs/rocr-runtime - dev-libs/rocm-comgr - dev-libs/rocm-device-libs - dev-libs/rocm-opencl-driver" -DEPEND="${RDEPEND} - dev-lang/ocaml - dev-ml/findlib" - -PATCHES=( - "${FILESDIR}/${P}-unbundle-dependencies.patch" -) - -src_prepare() { - mkdir -p "${S}"/api/opencl/khronos/ || die - mv "${WORKDIR}/OpenCL-ICD-Loader-${OPENCL_ICD_COMMIT}" "${S}"/api/opencl/khronos/icd || die - cmake-utils_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DLLVM_DIR="${EPREFIX}/usr/lib/llvm/roc/" - -DClang_DIR="${EPREFIX}/usr/lib/llvm/roc/lib/cmake/clang/" - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/" - ) - cmake-utils_src_configure -}