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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C0B45158094 for ; Mon, 10 Oct 2022 21:00:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59D5AE0937; Mon, 10 Oct 2022 21:00:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3E74DE0937 for ; Mon, 10 Oct 2022 21:00:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 490A1340C02 for ; Mon, 10 Oct 2022 21:00:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89EB9613 for ; Mon, 10 Oct 2022 21:00:12 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1665435587.5465cdce5fffc56e8d7763531a3a6f7f866d29ac.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/level-zero/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/level-zero/Manifest dev-libs/level-zero/level-zero-1.8.8.ebuild X-VCS-Directories: dev-libs/level-zero/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 5465cdce5fffc56e8d7763531a3a6f7f866d29ac X-VCS-Branch: master Date: Mon, 10 Oct 2022 21:00:12 +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: 875f621b-2d14-40ad-850a-fa10908a21d9 X-Archives-Hash: 1be94524feadf196ea1ddfb6a896fc48 commit: 5465cdce5fffc56e8d7763531a3a6f7f866d29ac Author: Conrad Kostecki gentoo org> AuthorDate: Mon Oct 10 20:42:18 2022 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Mon Oct 10 20:59:47 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5465cdce dev-libs/level-zero: add 1.8.8 Signed-off-by: Conrad Kostecki gentoo.org> dev-libs/level-zero/Manifest | 1 + dev-libs/level-zero/level-zero-1.8.8.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/dev-libs/level-zero/Manifest b/dev-libs/level-zero/Manifest index dd5c297457e2..1a68856ba431 100644 --- a/dev-libs/level-zero/Manifest +++ b/dev-libs/level-zero/Manifest @@ -1 +1,2 @@ DIST level-zero-1.8.5.tar.gz 694514 BLAKE2B ba0a247f07662bca58938600980196a03cc1f5588cbd80b6797a595e6781d7e23ca80d9256530625c1c07317e26cc799b06e4b66433496e5c61da4c45f814958 SHA512 42fde1f57ac86857563573e5367e68640b8e864704d779c3b337fab80d9f9ed85a6f6ca71700e87da92afbc4560eae73a6552a38b8a90f1e8cf039cf5937ae4b +DIST level-zero-1.8.8.tar.gz 695251 BLAKE2B cca0c35bcd9bd168187804eb3600d4ea17276be58a3a7db6da62908d9469e480dde966191e450fc80411f7caf60302bdb6c0cbaf741e7c7b59ad962a85d0d1c5 SHA512 b9b416beebbe96cd75d18d4cf888f539d908007629085f8692cd0898545e564b56671d060bc4961847df57a6c3b3beccbaa6f31539b6f4c201487961236ab83d diff --git a/dev-libs/level-zero/level-zero-1.8.8.ebuild b/dev-libs/level-zero/level-zero-1.8.8.ebuild new file mode 100644 index 000000000000..fc6029d86bbc --- /dev/null +++ b/dev-libs/level-zero/level-zero-1.8.8.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="oneAPI Level Zero headers, loader and validation layer" +HOMEPAGE="https://github.com/oneapi-src/level-zero" +SRC_URI="https://github.com/oneapi-src/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64" + +src_prepare() { + cmake_src_prepare + + # According to upstream, release tarballs should contain this file but at least + # some of them do not. Fortunately it is trivial to make one ourselves. + echo "$(ver_cut 3)" > "${S}"/VERSION_PATCH || die +}