From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1616818-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (2048 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 4ADF1158041
	for <garchives@archives.gentoo.org>; Wed,  3 Apr 2024 01:52:17 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 33BACE2A12;
	Wed,  3 Apr 2024 01:52:15 +0000 (UTC)
Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(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 pigeon.gentoo.org (Postfix) with ESMTPS id 1BDEFE2A12
	for <gentoo-commits@lists.gentoo.org>; Wed,  3 Apr 2024 01:52:15 +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 017B734319E
	for <gentoo-commits@lists.gentoo.org>; Wed,  3 Apr 2024 01:52:13 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 336C8B2A
	for <gentoo-commits@lists.gentoo.org>; Wed,  3 Apr 2024 01:52:11 +0000 (UTC)
From: "Matt Turner" <mattst88@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" <mattst88@gentoo.org>
Message-ID: <1712109123.65795f56a34c45c2829d2bb3e88072df13bf2d3e.mattst88@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/spirv-headers/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-util/spirv-headers/spirv-headers-9999.ebuild dev-util/spirv-headers/spirv-headers-99999999.ebuild
X-VCS-Directories: dev-util/spirv-headers/
X-VCS-Committer: mattst88
X-VCS-Committer-Name: Matt Turner
X-VCS-Revision: 65795f56a34c45c2829d2bb3e88072df13bf2d3e
X-VCS-Branch: master
Date: Wed,  3 Apr 2024 01:52:11 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 8701e8a2-c5e5-4196-ab34-62d579cd723c
X-Archives-Hash: 582aaaa78d15e44250ef50b6f33ac8d7

commit:     65795f56a34c45c2829d2bb3e88072df13bf2d3e
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed Apr  3 01:37:38 2024 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Wed Apr  3 01:52:03 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65795f56

dev-util/spirv-headers: Move to -9999

And prepare for v1.3.280. Using the same version (9999) across Vulkan
and SPIRV packages makes ~cat/pkg-${PV} dependencies easier.

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 ...spirv-headers-99999999.ebuild => spirv-headers-9999.ebuild} | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/dev-util/spirv-headers/spirv-headers-99999999.ebuild b/dev-util/spirv-headers/spirv-headers-9999.ebuild
similarity index 77%
rename from dev-util/spirv-headers/spirv-headers-99999999.ebuild
rename to dev-util/spirv-headers/spirv-headers-9999.ebuild
index a925c90e78ad..72ab19bde1fe 100644
--- a/dev-util/spirv-headers/spirv-headers-99999999.ebuild
+++ b/dev-util/spirv-headers/spirv-headers-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -20,3 +20,11 @@ HOMEPAGE="https://registry.khronos.org/SPIR-V/ https://github.com/KhronosGroup/S
 
 LICENSE="MIT"
 SLOT="0"
+
+src_configure() {
+	local mycmakeargs=(
+		-DSPIRV_HEADERS_ENABLE_TESTS=OFF
+		-DSPIRV_HEADERS_ENABLE_INSTALL=ON
+	)
+	cmake_src_configure
+}