dev-debug/gfxreconstruct: Drop old versions

Signed-off-by: Matt Turner <mattst88@gentoo.org>
This commit is contained in:
Matt Turner
2026-03-13 12:54:45 -04:00
parent 441b79acac
commit 2e902ff94a
5 changed files with 0 additions and 280 deletions

View File

@@ -1,8 +1,2 @@
DIST SPIRV-Reflect-1.4.321.0.tar.gz 326302 BLAKE2B 88b80b73c6ff49521351b02c1a077a98366db9b6fdc3e33553bedcda5efb5f89efebf18908e7034b904e9b09ae8c77d449bca9ce40ece8a06e2740ac2ce6dd0d SHA512 3fde31cf92a450b920c789995636dadb77e3f270acb6d26cc5f6905bf769d95297052009ada87deae16c36e3065ba0e300d7cfc9c0651f63555672b12d18f462
DIST SPIRV-Reflect-1.4.328.0.tar.gz 347322 BLAKE2B e6921d260bc0672196881ed63f9340ad5f5b92df3bf5461f3fdb6712d93137711eb363b59c9a7b44ee186cbbe452e3b40473040e4725e632ad2637b7e96d5418 SHA512 0062021edd4694caf417674b3763f0a3361a29c29d399573579206c83054afbf3c999c08534bd234f818875b84711f3ce891ec2316949e29a8360c3c38ca079d
DIST SPIRV-Reflect-1.4.335.0.tar.gz 347336 BLAKE2B 280eb970b7e3f51aa8d7dc236db2010c9893d6549995225ea7158e06f9cc050b974ca0892b1496c0b9a62824da42ba1724535a847dfb0e315fecfad13dc09a69 SHA512 9ed326eae3d4c5d93791c812c17bbe298ded44cd9b2e1b26ac19934cacf0136f9e395ac2a87685adce3a1cf3b12872a097cd235e16347be847f685a3548c7730
DIST SPIRV-Reflect-1.4.341.0.tar.gz 348384 BLAKE2B 1fc461f02a3e35b610cae0b2e41cfc8b0938a13d5c1fe62d2e3a53d3822cf7bc94d3d3a5cda3ba3707ecc9aa34415b351f1ac25f92922e63378a2822e766fb68 SHA512 ee8abc9958af8887300eece7dbcf11ed4bf79d9ee281318e6794f093a988438736e0da642d61b975912475cc3a0b13fe8cd17d3a6b0fcfff653c9831f5d86ba0
DIST gfxreconstruct-1.4.321.0.tar.gz 48957387 BLAKE2B 67293e5d17b70753c1b7e9b6befc8c056fa0ba934b555fcf49c174866db9be04fa3fa1e278add19f9b7c85bb9455307c38d60cf78573ca2588546826c23df654 SHA512 9c90a4e18f1418a55a7e2d01d8a24bfde0af5470932325a37c34dbca646135583fea13090ec66fac84c054d77d7be63f59d55ad3f98948a9144377dbef0c97ba
DIST gfxreconstruct-1.4.328.0.tar.gz 50582022 BLAKE2B 508a47879b469a5fb17feacb2a40113e7caca728c7fb6eccb6a7a0379f23f1e0f8601c89bce24239408c30c45e9c5904a19838433eed52ac344d23ae84775229 SHA512 66adaa1e6d696c82f78bd2e7041cac61c521b367440d342b47af922db2a7dec2721bbe12a171bd914be1ad9d544b89919b9ca102faa1080e2ff36ec99b782288
DIST gfxreconstruct-1.4.335.0.tar.gz 50675011 BLAKE2B 426c90eb7421966aa24d461132af743d9fde5970bc75822345aaced413708eed23a127f4cb1c94e8126bd6776d334525f173ea057157de554089292d94231b1c SHA512 e1dd37e5a84d2442280ea7cbd081bde25f9e8c486bc5590ba378bd5ac0ec61011dd56d41eab6db856df265fa141c230374819664ddae477c8b4a96170a95e578
DIST gfxreconstruct-1.4.341.0.tar.gz 50763927 BLAKE2B b532535012088bb043f1098886bd30ce1e3345515e217a77a05229f98b36678703ed9773169cf7cfa0f09f4694635c69532127df86649cd3e19daa2b6768ec4f SHA512 0efb51431b8ae40e723d06ff3ab6a2505094dc88104a0f2da42f4c1e301dbdd929398e7183a996b7b31854f45506ea636cec40f9fa883aafbe8d8b0b493716aa

View File

@@ -1,27 +0,0 @@
From d4549d672f7a76e21f7781049541e2bf84e267fa Mon Sep 17 00:00:00 2001
From: Matt Turner <mattst88@gmail.com>
Date: Sun, 14 Dec 2025 15:44:16 -0500
Subject: [PATCH] Build project_version as a static library
Gentoo's default CMake rules enable shared libraries, which this library
is not intended to be.
---
CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git ./CMakeLists.txt ./CMakeLists.txt
index 0574f9a5..6300d7da 100644
--- ./CMakeLists.txt
+++ ./CMakeLists.txt
@@ -122,7 +122,7 @@ add_definitions(-DPROJECT_VERSION_HEADER_FILE="project_version_$<CONFIG>.h")
# Isolate the repo SHA in a library to reduce the amount of recompilation on git commit, checkout, etc.
# Clients should #include PROJECT_VERSION_HEADER_FILE and call GetProjectVersionString()
configure_file("${PROJECT_SOURCE_DIR}/project_version_string.h.in" "${CMAKE_BINARY_DIR}/project_version_string.h")
-add_library(project_version "${PROJECT_SOURCE_DIR}/project_version.cpp")
+add_library(project_version STATIC "${PROJECT_SOURCE_DIR}/project_version.cpp")
target_include_directories(project_version PUBLIC "${CMAKE_BINARY_DIR}")
option(BUILD_WERROR "Build with warnings as errors" ON)
--
2.51.2

View File

@@ -1,82 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..14} )
inherit cmake flag-o-matic
if [[ ${PV} == 9999* ]]; then
EGIT_REPO_URI="https://github.com/LunarG/gfxreconstruct.git"
EGIT_SUBMODULES=( external/{Vulkan-Headers,SPIRV-Headers,SPIRV-Reflect} )
inherit git-r3
else
SRC_URI="
https://github.com/LunarG/${PN}/archive/vulkan-sdk-${PV}.tar.gz -> ${P}.tar.gz
https://github.com/KhronosGroup/SPIRV-Reflect/archive/vulkan-sdk-${PV}.tar.gz -> SPIRV-Reflect-${PV}.tar.gz
"
KEYWORDS="~amd64"
S="${WORKDIR}"/${PN}-vulkan-sdk-${PV}
fi
DESCRIPTION="Graphics API Capture and Replay Tools"
HOMEPAGE="https://github.com/LunarG/gfxreconstruct"
LICENSE="MIT"
SLOT="0"
IUSE="wayland X"
RDEPEND="
app-arch/lz4:=
app-arch/zstd:=
virtual/zlib:=
media-libs/vulkan-loader[wayland?,X?]
wayland? ( dev-libs/wayland )
X? (
x11-libs/libX11
x11-libs/libxcb
x11-libs/xcb-util-keysyms
)
"
DEPEND="${RDEPEND}
X? ( x11-libs/libXrandr )
"
if [[ ${PV} != 9999* ]]; then
DEPEND+="
~dev-util/spirv-headers-${PV}
~dev-util/vulkan-headers-${PV}
"
PATCHES=(
"${FILESDIR}"/1.3.313.0-use-system-vulkan.patch
)
fi
src_unpack() {
if [[ ${PV} == 9999* ]]; then
git-r3_src_unpack
else
default
rmdir "${S}"/external/SPIRV-Reflect || die
mv "${WORKDIR}"/SPIRV-Reflect-vulkan-sdk-${PV} "${S}"/external/SPIRV-Reflect || die
fi
}
src_configure() {
# -Werror=strict-aliasing
# https://bugs.gentoo.org/956019
# https://github.com/LunarG/gfxreconstruct/issues/2358
append-flags -fno-strict-aliasing
filter-lto
local mycmakeargs=(
-DCMAKE_SKIP_RPATH=ON
-DBUILD_WERROR=OFF
-DBUILD_WSI_DISPLAY_SUPPORT=ON
-DBUILD_WSI_WAYLAND_SUPPORT=$(usex wayland)
-DBUILD_WSI_XCB_SUPPORT=$(usex X)
-DBUILD_WSI_XLIB_SUPPORT=$(usex X)
-DGFXRECON_ENABLE_OPENXR=OFF
)
cmake_src_configure
}

View File

@@ -1,82 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..14} )
inherit cmake flag-o-matic
if [[ ${PV} == 9999* ]]; then
EGIT_REPO_URI="https://github.com/LunarG/gfxreconstruct.git"
EGIT_SUBMODULES=( external/{Vulkan-Headers,SPIRV-Headers,SPIRV-Reflect} )
inherit git-r3
else
SRC_URI="
https://github.com/LunarG/${PN}/archive/vulkan-sdk-${PV}.tar.gz -> ${P}.tar.gz
https://github.com/KhronosGroup/SPIRV-Reflect/archive/vulkan-sdk-${PV}.tar.gz -> SPIRV-Reflect-${PV}.tar.gz
"
KEYWORDS="~amd64"
S="${WORKDIR}"/${PN}-vulkan-sdk-${PV}
fi
DESCRIPTION="Graphics API Capture and Replay Tools"
HOMEPAGE="https://github.com/LunarG/gfxreconstruct"
LICENSE="MIT"
SLOT="0"
IUSE="wayland X"
RDEPEND="
app-arch/lz4:=
app-arch/zstd:=
virtual/zlib:=
media-libs/vulkan-loader[wayland?,X?]
wayland? ( dev-libs/wayland )
X? (
x11-libs/libX11
x11-libs/libxcb
x11-libs/xcb-util-keysyms
)
"
DEPEND="${RDEPEND}
X? ( x11-libs/libXrandr )
"
if [[ ${PV} != 9999* ]]; then
DEPEND+="
~dev-util/spirv-headers-${PV}
~dev-util/vulkan-headers-${PV}
"
PATCHES=(
"${FILESDIR}"/1.3.313.0-use-system-vulkan.patch
)
fi
src_unpack() {
if [[ ${PV} == 9999* ]]; then
git-r3_src_unpack
else
default
rmdir "${S}"/external/SPIRV-Reflect || die
mv "${WORKDIR}"/SPIRV-Reflect-vulkan-sdk-${PV} "${S}"/external/SPIRV-Reflect || die
fi
}
src_configure() {
# -Werror=strict-aliasing
# https://bugs.gentoo.org/956019
# https://github.com/LunarG/gfxreconstruct/issues/2358
append-flags -fno-strict-aliasing
filter-lto
local mycmakeargs=(
-DCMAKE_SKIP_RPATH=ON
-DBUILD_WERROR=OFF
-DBUILD_WSI_DISPLAY_SUPPORT=ON
-DBUILD_WSI_WAYLAND_SUPPORT=$(usex wayland)
-DBUILD_WSI_XCB_SUPPORT=$(usex X)
-DBUILD_WSI_XLIB_SUPPORT=$(usex X)
-DGFXRECON_ENABLE_OPENXR=OFF
)
cmake_src_configure
}

View File

@@ -1,83 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..14} )
inherit cmake flag-o-matic
if [[ ${PV} == 9999* ]]; then
EGIT_REPO_URI="https://github.com/LunarG/gfxreconstruct.git"
EGIT_SUBMODULES=( external/{Vulkan-Headers,SPIRV-Headers,SPIRV-Reflect} )
inherit git-r3
else
SRC_URI="
https://github.com/LunarG/${PN}/archive/vulkan-sdk-${PV}.tar.gz -> ${P}.tar.gz
https://github.com/KhronosGroup/SPIRV-Reflect/archive/vulkan-sdk-${PV}.tar.gz -> SPIRV-Reflect-${PV}.tar.gz
"
KEYWORDS="~amd64"
S="${WORKDIR}"/${PN}-vulkan-sdk-${PV}
fi
DESCRIPTION="Graphics API Capture and Replay Tools"
HOMEPAGE="https://github.com/LunarG/gfxreconstruct"
LICENSE="MIT"
SLOT="0"
IUSE="wayland X"
RDEPEND="
app-arch/lz4:=
app-arch/zstd:=
virtual/zlib:=
media-libs/vulkan-loader[wayland?,X?]
wayland? ( dev-libs/wayland )
X? (
x11-libs/libX11
x11-libs/libxcb
x11-libs/xcb-util-keysyms
)
"
DEPEND="${RDEPEND}
X? ( x11-libs/libXrandr )
"
if [[ ${PV} != 9999* ]]; then
DEPEND+="
~dev-util/spirv-headers-${PV}
~dev-util/vulkan-headers-${PV}
"
PATCHES=(
"${FILESDIR}"/1.3.313.0-use-system-vulkan.patch
"${FILESDIR}"/1.3.335.0-static-project_version.patch
)
fi
src_unpack() {
if [[ ${PV} == 9999* ]]; then
git-r3_src_unpack
else
default
rmdir "${S}"/external/SPIRV-Reflect || die
mv "${WORKDIR}"/SPIRV-Reflect-vulkan-sdk-${PV} "${S}"/external/SPIRV-Reflect || die
fi
}
src_configure() {
# -Werror=strict-aliasing
# https://bugs.gentoo.org/956019
# https://github.com/LunarG/gfxreconstruct/issues/2358
append-flags -fno-strict-aliasing
filter-lto
local mycmakeargs=(
-DCMAKE_SKIP_RPATH=ON
-DBUILD_WERROR=OFF
-DBUILD_WSI_DISPLAY_SUPPORT=ON
-DBUILD_WSI_WAYLAND_SUPPORT=$(usex wayland)
-DBUILD_WSI_XCB_SUPPORT=$(usex X)
-DBUILD_WSI_XLIB_SUPPORT=$(usex X)
-DGFXRECON_ENABLE_OPENXR=OFF
)
cmake_src_configure
}