Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/intel-compute-runtime/
Date: Sun, 27 Mar 2022 22:23:18
Message-Id: 1648419667.05bf2abb72e2c508ebefd17dda0acfa26442d8dc.conikost@gentoo
1 commit: 05bf2abb72e2c508ebefd17dda0acfa26442d8dc
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 27 14:47:03 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 27 22:21:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05bf2abb
7
8 dev-libs/intel-compute-runtime: drop 21.50.21939
9
10 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
11
12 dev-libs/intel-compute-runtime/Manifest | 1 -
13 .../intel-compute-runtime-21.50.21939.ebuild | 61 ----------------------
14 2 files changed, 62 deletions(-)
15
16 diff --git a/dev-libs/intel-compute-runtime/Manifest b/dev-libs/intel-compute-runtime/Manifest
17 index ada3d0bc4175..c21ef1ba4fbf 100644
18 --- a/dev-libs/intel-compute-runtime/Manifest
19 +++ b/dev-libs/intel-compute-runtime/Manifest
20 @@ -1,3 +1,2 @@
21 DIST intel-compute-runtime-21.46.21636.tar.gz 4878855 BLAKE2B 0ada296b36567038b2abeba50c2dae6604981f00cdfc0d5d9d197c793534c887fa1d321ced34b37cf6760bdc9e2b8769cdc24fe3884036b78b983660c90b1ee7 SHA512 a63436d049737b955f0e23bbfc78684f665f3d1a668120e803165839792144154f3f42a52c6533611711592ba6e41408d81196a61e318746b1dae1392d1d29ac
22 -DIST intel-compute-runtime-21.50.21939.tar.gz 5106368 BLAKE2B 3a8613c7178975bf930f0ccbed06d31952f05c8316e7735db759a7bcc8b81b5bd3040af62bae6e63fc9781ce2e6e8f035751cd6696b4c7cfbb6025f3d4fcfd8b SHA512 cabcb0fb9816ca8e6b93fa069c73926ccdaf3803c073b11f62477f80d38af49a7b4e814765a40e3daae50a6159560872c5b5123f64e68a570556c80d47a120c9
23 DIST intel-compute-runtime-22.11.22682.tar.gz 5220769 BLAKE2B c5cacdb0140fe9247353b9922a2e401a866d73ea9d4fa6a4312c984d4ba0751ff60d58f15b49003020d88bef13808113ba8ca84239c140fa7c26edcd401c0d9c SHA512 0e4007b152a20e85d40e71d68144a8dab1be536800650fbd1c3f5e23a0731c733d7dfa943d7ea4e1f19548313b12474bd5b9426ef7f2057a9b106a0fc9a1762a
24
25 diff --git a/dev-libs/intel-compute-runtime/intel-compute-runtime-21.50.21939.ebuild b/dev-libs/intel-compute-runtime/intel-compute-runtime-21.50.21939.ebuild
26 deleted file mode 100644
27 index 211c859a70c9..000000000000
28 --- a/dev-libs/intel-compute-runtime/intel-compute-runtime-21.50.21939.ebuild
29 +++ /dev/null
30 @@ -1,61 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -inherit cmake
37 -
38 -MY_PN="${PN/intel-/}"
39 -MY_P="${MY_PN}-${PV}"
40 -
41 -DESCRIPTION="Intel Graphics Compute Runtime for oneAPI Level Zero and OpenCL Driver"
42 -HOMEPAGE="https://github.com/intel/compute-runtime"
43 -SRC_URI="https://github.com/intel/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 -S="${WORKDIR}/${MY_P}"
45 -
46 -LICENSE="MIT"
47 -SLOT="0"
48 -KEYWORDS="~amd64"
49 -IUSE="+l0 +vaapi"
50 -
51 -RDEPEND="
52 - dev-libs/libnl:3
53 - dev-libs/libxml2:2
54 - >=dev-util/intel-graphics-compiler-1.0.9389
55 - >=dev-util/intel-graphics-system-controller-0.2.4
56 - >=media-libs/gmmlib-21.2.1:=
57 - >=virtual/opencl-3
58 - l0? ( >=dev-libs/level-zero-1.6.2 )
59 - vaapi? (
60 - x11-libs/libdrm[video_cards_intel]
61 - x11-libs/libva
62 - )
63 -"
64 -
65 -# for Khronos OpenGL headers
66 -DEPEND="
67 - ${RDEPEND}
68 - media-libs/mesa
69 -"
70 -
71 -BDEPEND="virtual/pkgconfig"
72 -
73 -DOCS=( "README.md" "FAQ.md" )
74 -
75 -PATCHES=( "${FILESDIR}/${PN}-21.31.20514-no_Werror.patch" )
76 -
77 -src_configure() {
78 - local mycmakeargs=(
79 - -DBUILD_WITH_L0="$(usex l0)"
80 - -DDISABLE_LIBVA="$(usex !vaapi)"
81 - -DKHRONOS_GL_HEADERS_DIR="${ESYSROOT}/usr/include"
82 - -DOCL_ICD_VENDORDIR="${EPREFIX}/etc/OpenCL/vendors"
83 -
84 - # If enabled, tests are automatically run during
85 - # the compile phase and we cannot run them because
86 - # they require permissions to access the hardware.
87 - -DSKIP_UNIT_TESTS="ON"
88 - )
89 -
90 - cmake_src_configure
91 -}