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 D9E53158091 for ; Fri, 20 Jun 2025 09:33:47 +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 C3A64341F64 for ; Fri, 20 Jun 2025 09:33:47 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id B561E1104DE; 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 ACC931104DE 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 6891C340F81 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 A554229FA 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: <1750411983.f1115c5178b905e06958ed3d2d5aa3464c427e8b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/vulkan-headers/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/vulkan-headers/vulkan-headers-1.4.313.0.ebuild dev-util/vulkan-headers/vulkan-headers-9999.ebuild X-VCS-Directories: dev-util/vulkan-headers/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f1115c5178b905e06958ed3d2d5aa3464c427e8b 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: 38c25a57-734e-4c08-8644-c755a4f7b590 X-Archives-Hash: afce919f9d483f8d43b586f141130455 commit: f1115c5178b905e06958ed3d2d5aa3464c427e8b Author: Sam James gentoo org> AuthorDate: Fri Jun 20 09:20:39 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jun 20 09:33:03 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1115c51 dev-util/vulkan-headers: no-op test change Wire up VULKAN_HEADERS_ENABLE_TESTS, though it doesn't make an actual difference here because nothing gets built in src_compile anyway, but let's have it here to silence a QA check I have locally and also in case it does something in future. (vulkan-headers does have a tiny testsuite, just VULKAN_HEADERS_ENABLE_TESTS isn't needed as-is to make it run.) Signed-off-by: Sam James gentoo.org> dev-util/vulkan-headers/vulkan-headers-1.4.313.0.ebuild | 3 +++ dev-util/vulkan-headers/vulkan-headers-9999.ebuild | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-util/vulkan-headers/vulkan-headers-1.4.313.0.ebuild b/dev-util/vulkan-headers/vulkan-headers-1.4.313.0.ebuild index 80b810e0c4ec..1ce53220154f 100644 --- a/dev-util/vulkan-headers/vulkan-headers-1.4.313.0.ebuild +++ b/dev-util/vulkan-headers/vulkan-headers-1.4.313.0.ebuild @@ -20,10 +20,13 @@ HOMEPAGE="https://github.com/KhronosGroup/Vulkan-Headers" LICENSE="Apache-2.0" SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" src_configure() { local mycmakeargs=( -DVULKAN_HEADERS_ENABLE_MODULE=OFF + -DVULKAN_HEADERS_ENABLE_TESTS=$(usex test) ) cmake_src_configure diff --git a/dev-util/vulkan-headers/vulkan-headers-9999.ebuild b/dev-util/vulkan-headers/vulkan-headers-9999.ebuild index 43831b775de1..b391e9b4b3c0 100644 --- a/dev-util/vulkan-headers/vulkan-headers-9999.ebuild +++ b/dev-util/vulkan-headers/vulkan-headers-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -20,10 +20,13 @@ HOMEPAGE="https://github.com/KhronosGroup/Vulkan-Headers" LICENSE="Apache-2.0" SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" src_configure() { local mycmakeargs=( -DVULKAN_HEADERS_ENABLE_MODULE=OFF + -DVULKAN_HEADERS_ENABLE_TESTS=$(usex test) ) cmake_src_configure