From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6CE7C138336 for ; Wed, 1 May 2019 16:52:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53F63E08AE; Wed, 1 May 2019 16:52:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 11607E08AE for ; Wed, 1 May 2019 16:52:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 01F3E343215 for ; Wed, 1 May 2019 16:52:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E50B5D4 for ; Wed, 1 May 2019 16:52:05 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1556729493.8064dd92a637ddc882ce7e5beaf229618ab478f2.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/intel-graphics-compiler/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/intel-graphics-compiler/Manifest dev-util/intel-graphics-compiler/intel-graphics-compiler-1.0.3.ebuild dev-util/intel-graphics-compiler/metadata.xml X-VCS-Directories: dev-util/intel-graphics-compiler/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 8064dd92a637ddc882ce7e5beaf229618ab478f2 X-VCS-Branch: master Date: Wed, 1 May 2019 16:52:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2aeacaad-fbf2-425d-9bff-68fa95d69e41 X-Archives-Hash: c530fdb15c2045218855cbec5745c488 commit: 8064dd92a637ddc882ce7e5beaf229618ab478f2 Author: Marek Szuba gentoo org> AuthorDate: Tue Apr 30 14:54:04 2019 +0000 Commit: Marek Szuba gentoo org> CommitDate: Wed May 1 16:51:33 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8064dd92 dev-util/intel-graphics-compiler: new package First-order dependency of Intel Graphics Compute Runtime. Signed-off-by: Marek Szuba gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 dev-util/intel-graphics-compiler/Manifest | 1 + .../intel-graphics-compiler-1.0.3.ebuild | 35 ++++++++++++++++++++++ dev-util/intel-graphics-compiler/metadata.xml | 12 ++++++++ 3 files changed, 48 insertions(+) diff --git a/dev-util/intel-graphics-compiler/Manifest b/dev-util/intel-graphics-compiler/Manifest new file mode 100644 index 00000000000..74cb134a495 --- /dev/null +++ b/dev-util/intel-graphics-compiler/Manifest @@ -0,0 +1 @@ +DIST intel-graphics-compiler-1.0.3.tar.gz 6721202 BLAKE2B 2934778e931a4b38a239ede5944757cc42c0a965e700ba471272ba8e9ca08b1c1c790c920ed6896a870985b1d2819a182a9aaf5a5a8cbfc13038ecd7cf1def1e SHA512 c0c0cc21263b71bc57aed43a3e8bd641ea7853db0a574823a70abb592a69b7f8a9f426e88e7fddea4cf6a14de44e064f80abcfa3ea709701e5003e0d4b7adfb0 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 new file mode 100644 index 00000000000..b15c94ceace --- /dev/null +++ b/dev-util/intel-graphics-compiler/intel-graphics-compiler-1.0.3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-multilib llvm + +DESCRIPTION="LLVM-based OpenCL compiler targetting Intel Gen graphics hardware" +HOMEPAGE="https://github.com/intel/intel-graphics-compiler" +SRC_URI="https://github.com/intel/${PN}/archive/igc-${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +COMMON="sys-devel/llvm:8=[${MULTILIB_USEDEP}] + dev-libs/opencl-clang:8=[${MULTILIB_USEDEP}]" +DEPEND="${COMMON}" +RDEPEND="${COMMON}" + +LLVM_MAX_SLOT=8 + +S="${WORKDIR}"/${PN}-igc-${PV} + +multilib_src_configure() { + local mycmakeargs=( + -DCCLANG_BUILD_INTREE_LLVM=OFF + -DCMAKE_LIBRARY_PATH=$(get_llvm_prefix)/$(get_libdir) + -DIGC_OPTION__FORCE_SYSTEM_LLVM=ON + -DIGC_PREFERRED_LLVM_VERSION=8 + # Until a new official release of opencl-clang + -DCOMMON_CLANG_LIBRARY_NAME=common_clang + ) + cmake-utils_src_configure +} diff --git a/dev-util/intel-graphics-compiler/metadata.xml b/dev-util/intel-graphics-compiler/metadata.xml new file mode 100644 index 00000000000..b124b9c5304 --- /dev/null +++ b/dev-util/intel-graphics-compiler/metadata.xml @@ -0,0 +1,12 @@ + + + + + marecki@gentoo.org + Marek Szuba + + + intel/intel-graphics-compiler + + +