From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 0ADAB158041 for ; Wed, 3 Apr 2024 01:52:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA9A7E2A08; Wed, 3 Apr 2024 01:52:14 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 63281E2A08 for ; Wed, 3 Apr 2024 01:52:14 +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 53FE4343247 for ; Wed, 3 Apr 2024 01:52:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 84F0C1623 for ; Wed, 3 Apr 2024 01:52:11 +0000 (UTC) From: "Matt Turner" 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" Message-ID: <1712109124.ce8bd6c29c3d2a301173e9f195aea074e4b72653.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/glslang/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/glslang/glslang-9999.ebuild X-VCS-Directories: dev-util/glslang/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: ce8bd6c29c3d2a301173e9f195aea074e4b72653 X-VCS-Branch: master Date: Wed, 3 Apr 2024 01:52:11 +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: 5bac33af-2f49-44c6-bca3-b0f2a76290a4 X-Archives-Hash: 5e2153f7b0002409f28bf797aa9391eb commit: ce8bd6c29c3d2a301173e9f195aea074e4b72653 Author: Matt Turner gentoo org> AuthorDate: Wed Apr 3 01:39:48 2024 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Apr 3 01:52:04 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce8bd6c2 dev-util/glslang: Synchronize live ebuild And prepare for v1.3.280. Signed-off-by: Matt Turner gentoo.org> dev-util/glslang/glslang-9999.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-util/glslang/glslang-9999.ebuild b/dev-util/glslang/glslang-9999.ebuild index b67580989120..016cbd9bdeea 100644 --- a/dev-util/glslang/glslang-9999.ebuild +++ b/dev-util/glslang/glslang-9999.ebuild @@ -3,17 +3,17 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..12} ) +PYTHON_COMPAT=( python3_{10..12} ) inherit cmake-multilib python-any-r1 if [[ ${PV} == *9999* ]]; then EGIT_REPO_URI="https://github.com/KhronosGroup/${PN}.git" inherit git-r3 else - SNAPSHOT_COMMIT="vulkan-sdk-${PV}.0" - SRC_URI="https://github.com/KhronosGroup/${PN}/archive/${SNAPSHOT_COMMIT}.tar.gz -> ${P}.tar.gz" + GIT_COMMIT="vulkan-sdk-${PV}" + SRC_URI="https://github.com/KhronosGroup/${PN}/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" - S="${WORKDIR}/${PN}-${SNAPSHOT_COMMIT}" + S="${WORKDIR}/${PN}-${GIT_COMMIT}" fi DESCRIPTION="Khronos reference front-end for GLSL and ESSL, and sample SPIR-V generator" @@ -26,10 +26,10 @@ SLOT="0/14" RESTRICT="test" BDEPEND="${PYTHON_DEPS} - ~dev-util/spirv-tools-99999999:=[${MULTILIB_USEDEP}] + ~dev-util/spirv-tools-${PV}:=[${MULTILIB_USEDEP}] " -DEPEND="~dev-util/spirv-tools-99999999:=[${MULTILIB_USEDEP}]" +DEPEND="~dev-util/spirv-tools-${PV}:=[${MULTILIB_USEDEP}]" RDEPEND="${DEPEND}" multilib_src_configure() {