diff options
author | Craig Andrews <candrews@gentoo.org> | 2020-04-06 13:10:49 -0400 |
---|---|---|
committer | Craig Andrews <candrews@gentoo.org> | 2020-04-06 13:12:06 -0400 |
commit | 6739d9144e2267ff04d073ff61d571fa80f59bf5 (patch) | |
tree | 58524fd372b10cbe3a4cc598564b8afa608ea0b8 /dev-libs | |
parent | sci-libs/libgeotiff: Fix tests with >=sci-libs/proj-6.2 (diff) | |
download | gentoo-6739d9144e2267ff04d073ff61d571fa80f59bf5.tar.gz gentoo-6739d9144e2267ff04d073ff61d571fa80f59bf5.tar.bz2 gentoo-6739d9144e2267ff04d073ff61d571fa80f59bf5.zip |
dev-libs/rocm-opencl-driver: Remove last rited package
Closes: https://bugs.gentoo.org/711398
Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/rocm-opencl-driver/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/rocm-opencl-driver/metadata.xml | 14 | ||||
-rw-r--r-- | dev-libs/rocm-opencl-driver/rocm-opencl-driver-2.10.0.ebuild | 41 |
3 files changed, 0 insertions, 56 deletions
diff --git a/dev-libs/rocm-opencl-driver/Manifest b/dev-libs/rocm-opencl-driver/Manifest deleted file mode 100644 index 32dba2015914..000000000000 --- a/dev-libs/rocm-opencl-driver/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST rocm-opencl-driver-2.10.0.tar.gz 21380 BLAKE2B 0ffdeb00b8d35a2619f37c6aa5efa53259151b2dfca8fd2dbd2dbaa49c9806599199340043a310cb8b855384d276d482e401ccbdf60cbff8c9efc1a80241df66 SHA512 dc6ba05c2a641c0379590af71ca28425495297b753eb4bcc5ff37f44f15a5d0a7f5477c3a426aa5350df969a6a6dabbeb4a71b3ae4b4ad63abd28b28ec87837e diff --git a/dev-libs/rocm-opencl-driver/metadata.xml b/dev-libs/rocm-opencl-driver/metadata.xml deleted file mode 100644 index 359755b2e5a5..000000000000 --- a/dev-libs/rocm-opencl-driver/metadata.xml +++ /dev/null @@ -1,14 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>candrews@gentoo.org</email> - <name>Craig Andrews</name> - </maintainer> - <upstream> - <remote-id type="github">RadeonOpenCompute/ROCm-OpenCL-Runtime</remote-id> - </upstream> - <longdescription lang="en"> - Radeon Open Compute OpenCL Compatible Runtime - </longdescription> -</pkgmetadata> diff --git a/dev-libs/rocm-opencl-driver/rocm-opencl-driver-2.10.0.ebuild b/dev-libs/rocm-opencl-driver/rocm-opencl-driver-2.10.0.ebuild deleted file mode 100644 index 54ba4d3eb585..000000000000 --- a/dev-libs/rocm-opencl-driver/rocm-opencl-driver-2.10.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/RadeonOpenCompute/ROCm-OpenCL-Driver/" - inherit git-r3 -else - SRC_URI="https://github.com/RadeonOpenCompute/ROCm-OpenCL-Driver/archive/roc-${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/ROCm-OpenCL-Driver-roc-${PV}" - KEYWORDS="~amd64" -fi - -DESCRIPTION="Radeon Open Compute OpenCL Compiler Tool Driver" -HOMEPAGE="https://github.com/RadeonOpenCompute/ROCm-OpenCL-Driver" - -LICENSE="MIT" -SLOT="0/$(ver_cut 1-2)" -IUSE="test" - -RDEPEND=">=sys-devel/llvm-roc-${PV}:= - >=dev-libs/rocr-runtime-${PV}" -DEPEND="${RDEPEND}" -RESTRICT="!test? ( test )" - -src_prepare() { - # remove unittest, because it downloads additional file from github.com - sed -e "s:add_subdirectory(src/unittest):#add_subdirectory(src/unittest):" -i CMakeLists.txt || die - - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DLLVM_DIR="${EPREFIX}/usr/lib/llvm/roc/" - ) - cmake_src_configure -} |