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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BBFF0139335 for ; Sat, 26 Jun 2021 20:19:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F8D0E089C; Sat, 26 Jun 2021 20:19:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0AC6AE089C for ; Sat, 26 Jun 2021 20:19:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 50F6233E830 for ; Sat, 26 Jun 2021 20:19:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6CB9A7BB for ; Sat, 26 Jun 2021 20:19:49 +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: <1624738774.b888c2beb109bb0a1e6d8868dc42d805fea8c33f.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/vulkan-loader/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/vulkan-loader/vulkan-loader-1.2.179.ebuild media-libs/vulkan-loader/vulkan-loader-9999.ebuild X-VCS-Directories: media-libs/vulkan-loader/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: b888c2beb109bb0a1e6d8868dc42d805fea8c33f X-VCS-Branch: master Date: Sat, 26 Jun 2021 20:19:49 +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: 403b068c-81fd-421b-9e07-7b0b94256de1 X-Archives-Hash: 5a1b460facd6be36865f204eb40abb0d commit: b888c2beb109bb0a1e6d8868dc42d805fea8c33f Author: Matt Turner gentoo org> AuthorDate: Fri Jun 25 02:22:00 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Jun 26 20:19:34 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b888c2be media-libs/vulkan-loader: Remove unnecessary Python dependency There's an optional "VulkanLoader_generated_source" target that requires Python 3, but it's not used during the build. Instead the generated files are checked into git and thus are available in the tarball. Noticed because of a patch in the chromiumos-overlay that moved ${PYTHON_DEPS} to BDEPEND (which would make sense if Python was actually used during the build). Signed-off-by: Matt Turner gentoo.org> media-libs/vulkan-loader/vulkan-loader-1.2.179.ebuild | 5 ++--- media-libs/vulkan-loader/vulkan-loader-9999.ebuild | 7 +++---- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/media-libs/vulkan-loader/vulkan-loader-1.2.179.ebuild b/media-libs/vulkan-loader/vulkan-loader-1.2.179.ebuild index bf6ea8c4f69..5eecd8d168e 100644 --- a/media-libs/vulkan-loader/vulkan-loader-1.2.179.ebuild +++ b/media-libs/vulkan-loader/vulkan-loader-1.2.179.ebuild @@ -5,8 +5,7 @@ EAPI=7 MY_PN=Vulkan-Loader CMAKE_ECLASS="cmake" -PYTHON_COMPAT=( python3_{8,9} ) -inherit flag-o-matic cmake-multilib python-any-r1 toolchain-funcs +inherit flag-o-matic cmake-multilib toolchain-funcs if [[ ${PV} == *9999* ]]; then EGIT_REPO_URI="https://github.com/KhronosGroup/${MY_PN}.git" @@ -26,7 +25,7 @@ SLOT="0" IUSE="layers wayland X" BDEPEND=">=dev-util/cmake-3.10.2" -DEPEND="${PYTHON_DEPS} +DEPEND=" ~dev-util/vulkan-headers-${PV} wayland? ( dev-libs/wayland:=[${MULTILIB_USEDEP}] ) X? ( diff --git a/media-libs/vulkan-loader/vulkan-loader-9999.ebuild b/media-libs/vulkan-loader/vulkan-loader-9999.ebuild index c4eb156e64f..22fae7e6067 100644 --- a/media-libs/vulkan-loader/vulkan-loader-9999.ebuild +++ b/media-libs/vulkan-loader/vulkan-loader-9999.ebuild @@ -1,12 +1,11 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 MY_PN=Vulkan-Loader CMAKE_ECLASS="cmake" -PYTHON_COMPAT=( python3_{7,8,9} ) -inherit flag-o-matic cmake-multilib python-any-r1 toolchain-funcs +inherit flag-o-matic cmake-multilib toolchain-funcs if [[ ${PV} == *9999* ]]; then EGIT_REPO_URI="https://github.com/KhronosGroup/${MY_PN}.git" @@ -26,7 +25,7 @@ SLOT="0" IUSE="layers wayland X" BDEPEND=">=dev-util/cmake-3.10.2" -DEPEND="${PYTHON_DEPS} +DEPEND=" >=dev-util/vulkan-headers-${PV} wayland? ( dev-libs/wayland:=[${MULTILIB_USEDEP}] ) X? (