Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/intel-graphics-compiler/
Date: Wed, 01 May 2019 16:52:11
Message-Id: 1556729493.8064dd92a637ddc882ce7e5beaf229618ab478f2.marecki@gentoo
1 commit: 8064dd92a637ddc882ce7e5beaf229618ab478f2
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 30 14:54:04 2019 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Wed May 1 16:51:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8064dd92
7
8 dev-util/intel-graphics-compiler: new package
9
10 First-order dependency of Intel Graphics Compute Runtime.
11
12 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
13 Package-Manager: Portage-2.3.62, Repoman-2.3.11
14
15 dev-util/intel-graphics-compiler/Manifest | 1 +
16 .../intel-graphics-compiler-1.0.3.ebuild | 35 ++++++++++++++++++++++
17 dev-util/intel-graphics-compiler/metadata.xml | 12 ++++++++
18 3 files changed, 48 insertions(+)
19
20 diff --git a/dev-util/intel-graphics-compiler/Manifest b/dev-util/intel-graphics-compiler/Manifest
21 new file mode 100644
22 index 00000000000..74cb134a495
23 --- /dev/null
24 +++ b/dev-util/intel-graphics-compiler/Manifest
25 @@ -0,0 +1 @@
26 +DIST intel-graphics-compiler-1.0.3.tar.gz 6721202 BLAKE2B 2934778e931a4b38a239ede5944757cc42c0a965e700ba471272ba8e9ca08b1c1c790c920ed6896a870985b1d2819a182a9aaf5a5a8cbfc13038ecd7cf1def1e SHA512 c0c0cc21263b71bc57aed43a3e8bd641ea7853db0a574823a70abb592a69b7f8a9f426e88e7fddea4cf6a14de44e064f80abcfa3ea709701e5003e0d4b7adfb0
27
28 diff --git a/dev-util/intel-graphics-compiler/intel-graphics-compiler-1.0.3.ebuild b/dev-util/intel-graphics-compiler/intel-graphics-compiler-1.0.3.ebuild
29 new file mode 100644
30 index 00000000000..b15c94ceace
31 --- /dev/null
32 +++ b/dev-util/intel-graphics-compiler/intel-graphics-compiler-1.0.3.ebuild
33 @@ -0,0 +1,35 @@
34 +# Copyright 1999-2019 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=6
38 +
39 +inherit cmake-multilib llvm
40 +
41 +DESCRIPTION="LLVM-based OpenCL compiler targetting Intel Gen graphics hardware"
42 +HOMEPAGE="https://github.com/intel/intel-graphics-compiler"
43 +SRC_URI="https://github.com/intel/${PN}/archive/igc-${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64"
48 +
49 +COMMON="sys-devel/llvm:8=[${MULTILIB_USEDEP}]
50 + dev-libs/opencl-clang:8=[${MULTILIB_USEDEP}]"
51 +DEPEND="${COMMON}"
52 +RDEPEND="${COMMON}"
53 +
54 +LLVM_MAX_SLOT=8
55 +
56 +S="${WORKDIR}"/${PN}-igc-${PV}
57 +
58 +multilib_src_configure() {
59 + local mycmakeargs=(
60 + -DCCLANG_BUILD_INTREE_LLVM=OFF
61 + -DCMAKE_LIBRARY_PATH=$(get_llvm_prefix)/$(get_libdir)
62 + -DIGC_OPTION__FORCE_SYSTEM_LLVM=ON
63 + -DIGC_PREFERRED_LLVM_VERSION=8
64 + # Until a new official release of opencl-clang
65 + -DCOMMON_CLANG_LIBRARY_NAME=common_clang
66 + )
67 + cmake-utils_src_configure
68 +}
69
70 diff --git a/dev-util/intel-graphics-compiler/metadata.xml b/dev-util/intel-graphics-compiler/metadata.xml
71 new file mode 100644
72 index 00000000000..b124b9c5304
73 --- /dev/null
74 +++ b/dev-util/intel-graphics-compiler/metadata.xml
75 @@ -0,0 +1,12 @@
76 +<?xml version="1.0" encoding="UTF-8"?>
77 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
78 +<pkgmetadata>
79 + <maintainer type="person">
80 + <email>marecki@g.o</email>
81 + <name>Marek Szuba</name>
82 + </maintainer>
83 + <upstream>
84 + <remote-id type="github">intel/intel-graphics-compiler</remote-id>
85 + </upstream>
86 +</pkgmetadata>
87 +