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 729D4138331 for ; Fri, 23 Mar 2018 23:36:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83E19E09CF; Fri, 23 Mar 2018 23:36:45 +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 48437E09CF for ; Fri, 23 Mar 2018 23:36:45 +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 C6CB1335C2C for ; Fri, 23 Mar 2018 23:36:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC398265 for ; Fri, 23 Mar 2018 23:36:41 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1521848171.9c4878c78c9481ea62e0a6665f0409fc06afd170.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/spirv-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/spirv-tools/Manifest dev-util/spirv-tools/metadata.xml dev-util/spirv-tools/spirv-tools-2018.2.ebuild dev-util/spirv-tools/spirv-tools-9999.ebuild X-VCS-Directories: dev-util/spirv-tools/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 9c4878c78c9481ea62e0a6665f0409fc06afd170 X-VCS-Branch: master Date: Fri, 23 Mar 2018 23:36:41 +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-Archives-Salt: bb8bcd16-3603-41a7-b78d-a5da210cc254 X-Archives-Hash: 3c42e0bf01b8627bf5362edc9bf33e63 commit: 9c4878c78c9481ea62e0a6665f0409fc06afd170 Author: Nick Sarnie gmail com> AuthorDate: Tue Mar 13 01:10:01 2018 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Mar 23 23:36:11 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c4878c7 dev-util/spirv-tools: Initial Versions Signed-off-by: Nick Sarnie gmail.com> dev-util/spirv-tools/Manifest | 1 + dev-util/spirv-tools/metadata.xml | 16 +++++++++++++++ dev-util/spirv-tools/spirv-tools-2018.2.ebuild | 27 ++++++++++++++++++++++++++ dev-util/spirv-tools/spirv-tools-9999.ebuild | 25 ++++++++++++++++++++++++ 4 files changed, 69 insertions(+) diff --git a/dev-util/spirv-tools/Manifest b/dev-util/spirv-tools/Manifest new file mode 100644 index 00000000000..f797048754e --- /dev/null +++ b/dev-util/spirv-tools/Manifest @@ -0,0 +1 @@ +DIST spirv-tools-2018.2.tar.gz 1039360 BLAKE2B bef1c3e4efa598bffad8f71c4a92cce9db98fd5699ab2f5616a7a4985c15da87f1e246391a2ca5e07affd352c6314896ff1599cdddc117b01655990f9c7b78f4 SHA512 6deed7a36b460135fd7db613b7101d53a87ae5d555f1795aa9a96ab14f437621d4667a41e5f5ae16e849f8e5d66e02611bed21e3110a902feac6c7f376eb5815 diff --git a/dev-util/spirv-tools/metadata.xml b/dev-util/spirv-tools/metadata.xml new file mode 100644 index 00000000000..72d8623dc68 --- /dev/null +++ b/dev-util/spirv-tools/metadata.xml @@ -0,0 +1,16 @@ + + + + + x11@gentoo.org + X11 + + + commendsarnex@gmail.com + Nick Sarnie + + + KhronosGroup/SPIRV-Tools + + + diff --git a/dev-util/spirv-tools/spirv-tools-2018.2.ebuild b/dev-util/spirv-tools/spirv-tools-2018.2.ebuild new file mode 100644 index 00000000000..ccda0233158 --- /dev/null +++ b/dev-util/spirv-tools/spirv-tools-2018.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-multilib cmake-utils + +DESCRIPTION="Provides an API and commands for processing SPIR-V modules" +HOMEPAGE="https://github.com/KhronosGroup/SPIRV-Tools" +SRC_URI="https://github.com/KhronosGroup/SPIRV-Tools/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="" +DEPEND="dev-util/spirv-headers" + +S="${WORKDIR}/SPIRV-Tools-${PV}" + +multilib_src_configure() { + local mycmakeargs=( + "-DSPIRV-Headers_SOURCE_DIR=/usr/" + ) + + cmake-utils_src_configure +} diff --git a/dev-util/spirv-tools/spirv-tools-9999.ebuild b/dev-util/spirv-tools/spirv-tools-9999.ebuild new file mode 100644 index 00000000000..e6ecb91d83e --- /dev/null +++ b/dev-util/spirv-tools/spirv-tools-9999.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-multilib cmake-utils git-r3 + +DESCRIPTION="Provides an API and commands for processing SPIR-V modules" +HOMEPAGE="https://github.com/KhronosGroup/SPIRV-Tools" +EGIT_REPO_URI="https://github.com/KhronosGroup/SPIRV-Tools.git" +SRC_URI="" + +LICENSE="Apache-2.0" +SLOT="0" + +RDEPEND="" +DEPEND="dev-util/spirv-headers" + +multilib_src_configure() { + local mycmakeargs=( + "-DSPIRV-Headers_SOURCE_DIR=/usr/" + ) + + cmake-utils_src_configure +}