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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 87E641581EE for ; Sat, 05 Apr 2025 00:42:12 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 78271343206 for ; Sat, 05 Apr 2025 00:42:12 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 75D871102CE; Sat, 05 Apr 2025 00:42:11 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 6E3D81102CE for ; Sat, 05 Apr 2025 00:42:11 +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 2AD7534315B for ; Sat, 05 Apr 2025 00:42:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DE121436 for ; Sat, 05 Apr 2025 00:42:09 +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: <1743813366.c7abb4eef3ae05047fd940db22d3c78e0b286d06.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/nvidia-cuda-toolkit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-12.8.0-r2.ebuild dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-12.8.0-r3.ebuild X-VCS-Directories: dev-util/nvidia-cuda-toolkit/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c7abb4eef3ae05047fd940db22d3c78e0b286d06 X-VCS-Branch: master Date: Sat, 05 Apr 2025 00:42:09 +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: 103aafe8-8815-4f4e-8e63-cdcce8d7dd90 X-Archives-Hash: 0ece47a47e2bc27b496c21fc5c14a9bc commit: c7abb4eef3ae05047fd940db22d3c78e0b286d06 Author: Sebastian Parborg blender org> AuthorDate: Wed Mar 12 16:07:26 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sat Apr 5 00:36:06 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7abb4ee dev-util/nvidia-cuda-toolkit: Fix checking for build time python deps Binary packages would fail to emerge as the ebuild would check for the build time dependency dev-python/defusedxml in non build time functions with python_setup. Signed-off-by: Sebastian Parborg blender.org> Closes: https://github.com/gentoo/gentoo/pull/41037 Signed-off-by: Sam James gentoo.org> ...-toolkit-12.8.0-r2.ebuild => nvidia-cuda-toolkit-12.8.0-r3.ebuild} | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-12.8.0-r2.ebuild b/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-12.8.0-r3.ebuild similarity index 99% rename from dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-12.8.0-r2.ebuild rename to dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-12.8.0-r3.ebuild index 687c48f30537..5b0e1d65ca53 100644 --- a/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-12.8.0-r2.ebuild +++ b/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-12.8.0-r3.ebuild @@ -119,6 +119,10 @@ pkg_pretend() { pkg_setup() { cuda-toolkit_check_reqs + if [[ "${MERGE_TYPE}" == binary ]]; then + return + fi + # we need python for manifest parsing and to determine the supported python versions for cuda-gdb python_setup