Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/intel-neo/
Date: Tue, 02 Feb 2021 13:46:06
Message-Id: 1612273556.234c95fd29c9faed823e26bbd10566dc2fe9f77e.juippis@gentoo
1 commit: 234c95fd29c9faed823e26bbd10566dc2fe9f77e
2 Author: Khue Nguyen <Z5483Y <AT> gmail <DOT> com>
3 AuthorDate: Sat Jan 16 01:27:26 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 2 13:45:56 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=234c95fd
7
8 dev-libs/intel-neo: bump to 20.44.18297
9
10 Signed-off-by: Khue Nguyen <Z5483Y <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/19074
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 dev-libs/intel-neo/Manifest | 1 +
15 dev-libs/intel-neo/intel-neo-20.44.18297.ebuild | 55 +++++++++++++++++++++++++
16 2 files changed, 56 insertions(+)
17
18 diff --git a/dev-libs/intel-neo/Manifest b/dev-libs/intel-neo/Manifest
19 index bc6d4dd0fa9..0a5d7e182c9 100644
20 --- a/dev-libs/intel-neo/Manifest
21 +++ b/dev-libs/intel-neo/Manifest
22 @@ -1,2 +1,3 @@
23 DIST intel-neo-20.16.16582.tar.gz 3042531 BLAKE2B adfc0aee2a315e67ccb3e4fe39ab09b618930607d3de931d1367881642d8e542385589299f593d3ab1cd6e16de7a8fce7b55fa1b4259097e15da7e55034d344b SHA512 700bee3ccf72c2bc89f5c8a75591de9dafbfe0a6480e3216258842c6b68ce1b527569d5fe1327a0a80cfbf79dca1d956820f060b602feefa83fc9b47cb46d7d0
24 DIST intel-neo-20.37.17906.tar.gz 3492080 BLAKE2B e133dde18c67e5b50dc65372faeaf78ee2512adf80f6869e9a99ff18aba5463b2c47e62cac3122eb899c644f5bbea6dd3205d348d071ea8854e3271b9e25fb34 SHA512 3db9b05dbfc05de8e5aad4eac631320642ff03444ff3eafe0f9cf72897e2dfb723563ad9f953a900a19511cc8affd3832d3f3fa966d9388714c326c71180e8f6
25 +DIST intel-neo-20.44.18297.tar.gz 3586089 BLAKE2B ddaa719db25bb9b57b76a47c438e7a3185a15ce0863665efa7dd205354684773dbc89a05c943a87987588dcc2220683b47e7209ff959b2a8ad596090ff253c15 SHA512 919aba7cde56304c84db7c7ba30c53fabcca72ceab362a2b406f5ecf124e1c024980c29689f19b173b76c903da1cb25a4f1e4b19ba9279bc6ca2ad1d100e046a
26
27 diff --git a/dev-libs/intel-neo/intel-neo-20.44.18297.ebuild b/dev-libs/intel-neo/intel-neo-20.44.18297.ebuild
28 new file mode 100644
29 index 00000000000..0499936a2f0
30 --- /dev/null
31 +++ b/dev-libs/intel-neo/intel-neo-20.44.18297.ebuild
32 @@ -0,0 +1,55 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit cmake
39 +
40 +MY_PN="compute-runtime"
41 +MY_P="${MY_PN}-${PV}"
42 +
43 +DESCRIPTION="Intel Graphics Compute Runtime for L0 and OpenCL, for Broadwell and beyond"
44 +HOMEPAGE="https://github.com/intel/compute-runtime"
45 +SRC_URI="https://github.com/intel/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~amd64"
50 +IUSE="l0 vaapi"
51 +
52 +BDEPEND="virtual/pkgconfig"
53 +COMMON=">=virtual/opencl-3
54 + >=dev-util/intel-graphics-compiler-1.0.5353
55 + >=media-libs/gmmlib-20.3.2
56 + l0? ( >=dev-libs/level-zero-1.0.0 )
57 + vaapi? (
58 + x11-libs/libdrm[video_cards_intel]
59 + x11-libs/libva
60 + )"
61 +DEPEND="${COMMON}
62 + media-libs/mesa" # for Khronos OpenGL headers
63 +RDEPEND="${COMMON}"
64 +
65 +PATCHES=(
66 + "${FILESDIR}"/${PN}-20.37.17906-no_Werror.patch
67 +)
68 +
69 +DOCS=(
70 + README.md
71 + FAQ.md
72 +)
73 +
74 +S="${WORKDIR}"/${MY_P}
75 +
76 +src_configure() {
77 + local mycmakeargs=(
78 + -DKHRONOS_GL_HEADERS_DIR="${EPREFIX}/usr/include"
79 + -DBUILD_WITH_L0=$(usex l0)
80 + -DDISABLE_LIBVA=$(usex vaapi "no" "yes")
81 + # If enabled, tests are automatically run during the compile phase
82 + # - and we cannot run them because they require permissions to access
83 + # the hardware.
84 + -DSKIP_UNIT_TESTS=ON
85 + )
86 + cmake_src_configure
87 +}