From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 finch.gentoo.org (Postfix) with ESMTPS id 918F2158091 for ; Fri, 20 Jun 2025 09:33:43 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 79CC0341F67 for ; Fri, 20 Jun 2025 09:33:43 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 6FD021104D9; Fri, 20 Jun 2025 09:33:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 604481104D9 for ; Fri, 20 Jun 2025 09:33:42 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1A67B340F81 for ; Fri, 20 Jun 2025 09:33:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E31929E3 for ; Fri, 20 Jun 2025 09:33:40 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1750411982.a60156345e2d29576f2ee4624acbd8482dc88fc5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/vulkan-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/vulkan-tools/vulkan-tools-1.4.313.0-r1.ebuild dev-util/vulkan-tools/vulkan-tools-9999.ebuild X-VCS-Directories: dev-util/vulkan-tools/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a60156345e2d29576f2ee4624acbd8482dc88fc5 X-VCS-Branch: master Date: Fri, 20 Jun 2025 09:33:40 +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: 86de9fe4-e666-4939-9750-a6688945c8ea X-Archives-Hash: dc17710e2fecbd14e471f6e4d4c5b277 commit: a60156345e2d29576f2ee4624acbd8482dc88fc5 Author: Sam James gentoo org> AuthorDate: Fri Jun 20 09:18:21 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jun 20 09:33:02 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6015634 dev-util/vulkan-tools: wire up tests, drop vulkan-loader to test dep Since upstream commit 134337d7fe8813a041fd66dbde11389ebd7dd874, vulkan-loader should be a test-only dep for our purposes. Signed-off-by: Sam James gentoo.org> .../{vulkan-tools-9999.ebuild => vulkan-tools-1.4.313.0-r1.ebuild} | 6 ++++-- dev-util/vulkan-tools/vulkan-tools-9999.ebuild | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/dev-util/vulkan-tools/vulkan-tools-9999.ebuild b/dev-util/vulkan-tools/vulkan-tools-1.4.313.0-r1.ebuild similarity index 92% copy from dev-util/vulkan-tools/vulkan-tools-9999.ebuild copy to dev-util/vulkan-tools/vulkan-tools-1.4.313.0-r1.ebuild index 2be82cd58fef..51733e9afc29 100644 --- a/dev-util/vulkan-tools/vulkan-tools-9999.ebuild +++ b/dev-util/vulkan-tools/vulkan-tools-1.4.313.0-r1.ebuild @@ -22,13 +22,13 @@ HOMEPAGE="https://github.com/KhronosGroup/Vulkan-Tools" LICENSE="Apache-2.0" SLOT="0" -IUSE="cube wayland X" +IUSE="cube wayland test X" +RESTRICT="!test? ( test )" BDEPEND="${PYTHON_DEPS} cube? ( ~dev-util/glslang-${PV}:=[${MULTILIB_USEDEP}] ) " RDEPEND=" - ~media-libs/vulkan-loader-${PV}[${MULTILIB_USEDEP},wayland?,X?] wayland? ( dev-libs/wayland[${MULTILIB_USEDEP}] ) X? ( x11-libs/libX11[${MULTILIB_USEDEP}] @@ -38,6 +38,7 @@ RDEPEND=" DEPEND="${RDEPEND} ~dev-util/vulkan-headers-${PV} X? ( x11-libs/libXrandr[${MULTILIB_USEDEP}] ) + test? ( ~media-libs/vulkan-loader-${PV}[${MULTILIB_USEDEP},wayland?,X?] ) " pkg_setup() { @@ -60,6 +61,7 @@ multilib_src_configure() { -DCMAKE_SKIP_RPATH=ON -DBUILD_VULKANINFO=ON -DBUILD_CUBE=$(usex cube) + -DBUILD_TESTS=$(usex test) -DBUILD_WERROR=OFF -DBUILD_WSI_WAYLAND_SUPPORT=$(usex wayland) -DBUILD_WSI_XCB_SUPPORT=$(usex X) diff --git a/dev-util/vulkan-tools/vulkan-tools-9999.ebuild b/dev-util/vulkan-tools/vulkan-tools-9999.ebuild index 2be82cd58fef..51733e9afc29 100644 --- a/dev-util/vulkan-tools/vulkan-tools-9999.ebuild +++ b/dev-util/vulkan-tools/vulkan-tools-9999.ebuild @@ -22,13 +22,13 @@ HOMEPAGE="https://github.com/KhronosGroup/Vulkan-Tools" LICENSE="Apache-2.0" SLOT="0" -IUSE="cube wayland X" +IUSE="cube wayland test X" +RESTRICT="!test? ( test )" BDEPEND="${PYTHON_DEPS} cube? ( ~dev-util/glslang-${PV}:=[${MULTILIB_USEDEP}] ) " RDEPEND=" - ~media-libs/vulkan-loader-${PV}[${MULTILIB_USEDEP},wayland?,X?] wayland? ( dev-libs/wayland[${MULTILIB_USEDEP}] ) X? ( x11-libs/libX11[${MULTILIB_USEDEP}] @@ -38,6 +38,7 @@ RDEPEND=" DEPEND="${RDEPEND} ~dev-util/vulkan-headers-${PV} X? ( x11-libs/libXrandr[${MULTILIB_USEDEP}] ) + test? ( ~media-libs/vulkan-loader-${PV}[${MULTILIB_USEDEP},wayland?,X?] ) " pkg_setup() { @@ -60,6 +61,7 @@ multilib_src_configure() { -DCMAKE_SKIP_RPATH=ON -DBUILD_VULKANINFO=ON -DBUILD_CUBE=$(usex cube) + -DBUILD_TESTS=$(usex test) -DBUILD_WERROR=OFF -DBUILD_WSI_WAYLAND_SUPPORT=$(usex wayland) -DBUILD_WSI_XCB_SUPPORT=$(usex X)