commit: 082e67e67126756dfe0baa5d6f1fe56badf5f84f
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 3 16:57:41 2024 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Mar 3 16:58:42 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=082e67e6
dev-util/spirv-tools: Drop old versions
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
dev-util/spirv-tools/Manifest | 1 -
dev-util/spirv-tools/spirv-tools-1.3.268.ebuild | 42 -------------------------
2 files changed, 43 deletions(-)
diff --git a/dev-util/spirv-tools/Manifest b/dev-util/spirv-tools/Manifest
index d97e6f5cf789..b89d69314e5f 100644
--- a/dev-util/spirv-tools/Manifest
+++ b/dev-util/spirv-tools/Manifest
@@ -1,2 +1 @@
-DIST spirv-tools-1.3.268.tar.gz 3148758 BLAKE2B
ddf4c132dcea80d2f631a001d545b46f3f23f72600edd880d90b9693060d7cc57ad45faa0b752c520c43b9f1c199f6656e988a95256bfae064eeccd21277fc6f
SHA512
317ce91ae229efddb98028840fbb6c9000c6a09aace2f04c2f59fdeb3a73b8fdb75048bf5a2189135a734a30b1ead57dc7dc5fcfd70a7267d17c743238a19899
DIST spirv-tools-1.3.275.tar.gz 3153781 BLAKE2B
963504946f9e7b89959da8e280c15027ebe330877e6878d1c03ee163ed5b464f62f3203bd9efc1fcfd85842ff9acfb939ee89029642ac304de44395861a402f3
SHA512
f17692509ecfbd753a853eaa01d559c06b06fa15b287971da814044418da71a94813606acfe536fa519e8aeba92bdfc80971acb749dab6e7cc395773c4f05693
diff --git a/dev-util/spirv-tools/spirv-tools-1.3.268.ebuild
b/dev-util/spirv-tools/spirv-tools-1.3.268.ebuild
deleted file mode 100644
index b32a82166767..000000000000
--- a/dev-util/spirv-tools/spirv-tools-1.3.268.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_PN=SPIRV-Tools
-PYTHON_COMPAT=( python3_{9..12} )
-PYTHON_REQ_USE="xml(+)"
-inherit cmake-multilib python-any-r1
-
-if [[ ${PV} == *9999* ]]; then
- EGIT_REPO_URI="https://github.com/KhronosGroup/${MY_PN}.git"
- inherit git-r3
-else
- EGIT_COMMIT="vulkan-sdk-${PV}.0"
-
SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/${EGIT_COMMIT}.tar.gz
-> ${P}.tar.gz"
- KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv x86"
- S="${WORKDIR}"/${MY_PN}-${EGIT_COMMIT}
-fi
-
-DESCRIPTION="Provides an API and commands for processing SPIR-V modules"
-HOMEPAGE="https://github.com/KhronosGroup/SPIRV-Tools"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-# Tests fail upon finding symbols that do not match a regular expression
-# in the generated library. Easily hit with non-standard compiler flags
-RESTRICT="test"
-
-DEPEND="~dev-util/spirv-headers-${PV}"
-RDEPEND=""
-BDEPEND="${PYTHON_DEPS}"
-
-multilib_src_configure() {
- local mycmakeargs=(
- -DSPIRV-Headers_SOURCE_DIR="${ESYSROOT}"/usr/
- -DSPIRV_WERROR=OFF
- -DSPIRV_TOOLS_BUILD_STATIC=OFF
- )
-
- cmake_src_configure
-}