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 E978E15ACFB for ; Sun, 9 Apr 2023 19:35:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D60CDE085B; Sun, 9 Apr 2023 19:35:10 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 9654EE0858 for ; Sun, 9 Apr 2023 19:35:10 +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 DD16B340C42 for ; Sun, 9 Apr 2023 19:35:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C33EA3E for ; Sun, 9 Apr 2023 19:35:07 +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: <1681068896.a9a120354882ca9799eefa19916bf4787c749c17.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.9.4.ebuild X-VCS-Directories: dev-libs/level-zero/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: a9a120354882ca9799eefa19916bf4787c749c17 X-VCS-Branch: master Date: Sun, 9 Apr 2023 19:35:07 +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: f5caa73b-b915-4f9f-b77e-e80f39c5b550 X-Archives-Hash: 3bfbe3b5197c89bf4b04ebf980dc765e commit: a9a120354882ca9799eefa19916bf4787c749c17 Author: Conrad Kostecki gentoo org> AuthorDate: Sun Apr 9 19:24:18 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Apr 9 19:34:56 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9a12035 dev-libs/level-zero: drop 1.9.4 Signed-off-by: Conrad Kostecki gentoo.org> dev-libs/level-zero/Manifest | 1 - dev-libs/level-zero/level-zero-1.9.4.ebuild | 22 ---------------------- 2 files changed, 23 deletions(-) diff --git a/dev-libs/level-zero/Manifest b/dev-libs/level-zero/Manifest index a9dc3b8876fe..e58c98e4e66d 100644 --- a/dev-libs/level-zero/Manifest +++ b/dev-libs/level-zero/Manifest @@ -1,2 +1 @@ -DIST level-zero-1.9.4.tar.gz 742767 BLAKE2B 191bb317a5d9ac3b7806172f2e42ced3a3f1a82bf806fc5afe85e7f2976f27c733c9f13c1b68b3fdc99e1bbff2c2dceffe2d9621c755b3e5c9e0c3aec341c111 SHA512 aff8f7965c70541bfbc5db05d3c2306d11c69f7b20396618520e0eb141fa021b0d89872e362e8137311d9b5ba68667754357c917f0108a5a5eb030e9883bddea DIST level-zero-1.9.9.tar.gz 784262 BLAKE2B d0a1b6d3f6fb4ebe25cedfb0fd2953726c4f903cbd9f77668fd3687410707e362b765f0bbf5261fa3b89092967daf63206c3bc0bd6ec9ca5650c352d67864e99 SHA512 07970c0f90a2626d8ea543ef473b7c57e16652848b8759598ab2188f956fdc54d5adba3bb78c79d28109b818a28ae4929c5b7851df1cbb68e0fe98bb66e3affb diff --git a/dev-libs/level-zero/level-zero-1.9.4.ebuild b/dev-libs/level-zero/level-zero-1.9.4.ebuild deleted file mode 100644 index 44fda91ff929..000000000000 --- a/dev-libs/level-zero/level-zero-1.9.4.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2023 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 -}