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: Tue, 31 Jan 2023 15:17:50
Message-Id: 1675178131.f45833d9a8cfa579f8c31206f401fdb35faedfc8.conikost@gentoo
1 commit: f45833d9a8cfa579f8c31206f401fdb35faedfc8
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 31 03:21:54 2023 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 31 15:15:31 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f45833d9
7
8 dev-libs/intel-compute-runtime: drop 22.43.24558
9
10 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
11
12 dev-libs/intel-compute-runtime/Manifest | 1 -
13 .../intel-compute-runtime-22.43.24558.ebuild | 79 ----------------------
14 2 files changed, 80 deletions(-)
15
16 diff --git a/dev-libs/intel-compute-runtime/Manifest b/dev-libs/intel-compute-runtime/Manifest
17 index cb92af94456d..b0218b59ad7a 100644
18 --- a/dev-libs/intel-compute-runtime/Manifest
19 +++ b/dev-libs/intel-compute-runtime/Manifest
20 @@ -1,2 +1 @@
21 -DIST intel-compute-runtime-22.43.24558.tar.gz 5858180 BLAKE2B bed2ccd84424f8b4b76483d1cbffa9f587e666b8a24555d51de1edcfa23651a54b7d6b219fb27512cd8438127aa46945b181b3e94699444f36a05976b0b1206d SHA512 130849d1c3ef6586abbec3a3eb96397e6b5e861d17576b68b75d18023a4864938f82067079ea0d5475a8ac4f02cd0056d74d6b634894cbb5d0e23bef1c12fae0
22 DIST intel-compute-runtime-22.43.24595.35.tar.gz 5880869 BLAKE2B c9d4a16e9908427b69154a5a6550e4eec47bcce4fa811a9121c54de75bcd3e17e1d4cff8b1fa7486b2ffe0dd01f7fae06e5fd3b1d241378dcf521d1f8822bedb SHA512 0aab6cc16f7d523819c9a9eb58fba916c3b06c4be450c94cfc30b36038c768d6ddb79937ded7d9df68b7bdc97679756450c1c54844caed1655ddc688a6ae8a54
23
24 diff --git a/dev-libs/intel-compute-runtime/intel-compute-runtime-22.43.24558.ebuild b/dev-libs/intel-compute-runtime/intel-compute-runtime-22.43.24558.ebuild
25 deleted file mode 100644
26 index 46508e658896..000000000000
27 --- a/dev-libs/intel-compute-runtime/intel-compute-runtime-22.43.24558.ebuild
28 +++ /dev/null
29 @@ -1,79 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -CMAKE_BUILD_TYPE="Release"
36 -MY_PN="${PN/intel-/}"
37 -MY_P="${MY_PN}-${PV}"
38 -
39 -inherit cmake flag-o-matic
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=">=media-libs/gmmlib-22.1.7:="
52 -
53 -DEPEND="
54 - ${DEPEND}
55 - >=dev-libs/intel-metrics-library-0_pre20220930:=
56 - dev-libs/libnl:3
57 - dev-libs/libxml2:2
58 - >=dev-util/intel-graphics-compiler-1.0.12149.1
59 - >=dev-util/intel-graphics-system-controller-0.8.4:=
60 - media-libs/mesa
61 - >=virtual/opencl-3
62 - l0? ( >=dev-libs/level-zero-1.8.5:= )
63 - vaapi? (
64 - x11-libs/libdrm[video_cards_intel]
65 - media-libs/libva
66 - )
67 -"
68 -
69 -BDEPEND="virtual/pkgconfig"
70 -
71 -DOCS=( "README.md" "FAQ.md" )
72 -
73 -PATCHES=( "${FILESDIR}/${PN}-22.24.23453-remove-fortify-sources.patch" )
74 -
75 -src_prepare() {
76 - # Remove '-Werror' from default
77 - sed -e '/Werror/d' -i CMakeLists.txt || die
78 -
79 - cmake_src_prepare
80 -}
81 -
82 -src_configure() {
83 - # See https://github.com/intel/compute-runtime/issues/531
84 - filter-flags -flto=* -flto
85 -
86 - local mycmakeargs=(
87 - -DCCACHE_ALLOWED="OFF"
88 - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr"
89 - -DCMAKE_INSTALL_LIBDIR="$(get_libdir)"
90 - -DBUILD_WITH_L0="$(usex l0)"
91 - -DDISABLE_LIBVA="$(usex !vaapi)"
92 - -DNEO__METRICS_LIBRARY_INCLUDE_DIR="${ESYSROOT}/usr/include"
93 - -DKHRONOS_GL_HEADERS_DIR="${ESYSROOT}/usr/include"
94 - -DOCL_ICD_VENDORDIR="${EPREFIX}/etc/OpenCL/vendors"
95 - -DSUPPORT_DG1="ON"
96 - -Wno-dev
97 -
98 - # See https://github.com/intel/intel-graphics-compiler/issues/204
99 - # -DNEO_DISABLE_BUILTINS_COMPILATION="ON"
100 -
101 - # If enabled, tests are automatically run during
102 - # the compile phase and we cannot run them because
103 - # they require permissions to access the hardware.
104 - -DSKIP_UNIT_TESTS="1"
105 - )
106 -
107 - cmake_src_configure
108 -}