dev-util/vulkan-utility-libraries: Drop old versions

Signed-off-by: Matt Turner <mattst88@gentoo.org>
This commit is contained in:
Matt Turner
2025-07-20 12:31:16 -04:00
parent 20feba8d4b
commit 869daae1f7
2 changed files with 0 additions and 42 deletions

View File

@@ -1,2 +1 @@
DIST vulkan-utility-libraries-1.4.309.0.tar.gz 576038 BLAKE2B 25aa3fc90c6ef69881627cb8a86ce0e4471f9439b69d40882a4841172e96df14012cbc3fcca2403533f0178265577eab52dc83ba9065f1954f82d4f8aa95885e SHA512 9b875fecc295a45cdb8e6ff26345cf2b7df3959e2271e3f26546df3b415bf46a7bfd709ec482659fc86c35ff4314d7df482641f4c2e82e1b03f4c7ffc26d2a64
DIST vulkan-utility-libraries-1.4.313.0.tar.gz 581279 BLAKE2B e9cd0de3cc63949b3a45bb84005a4a5aea7dbca6445bd83dbc1daa9db809a763e5626c2adbfac488bbd4765528f720d3eda74e3e30723224c6ea27a990b0a979 SHA512 9d48f86272db46d3a01b5cfe9ac4a8a25c453196cc2f7353579acb22d5a21a93b4b95dda9734f0a40483b163ce6b1761b57448a5d7e0602922a58c10c7b3d062

View File

@@ -1,41 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN=Vulkan-Utility-Libraries
PYTHON_COMPAT=( python3_{10..13} )
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}"
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="Share code across various Vulkan repositories"
HOMEPAGE="https://github.com/KhronosGroup/Vulkan-Utility-Libraries"
LICENSE="Apache-2.0"
SLOT="0"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND="~dev-util/vulkan-headers-${PV}
test? (
dev-cpp/gtest
>=dev-cpp/magic_enum-0.9.2
)"
BDEPEND="${PYTHON_DEPS}"
multilib_src_configure() {
local mycmakeargs=(
-DBUILD_TESTS=$(usex test ON OFF)
)
cmake_src_configure
}