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 70CCB158170 for ; Sun, 21 Jul 2024 18:25:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 49A5FE2B0E; Sun, 21 Jul 2024 18:25:34 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2A762E2B0E for ; Sun, 21 Jul 2024 18:25:34 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3E461335DC0 for ; Sun, 21 Jul 2024 18:25:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9FFA01CE9 for ; Sun, 21 Jul 2024 18:25:31 +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: <1721586326.68b4b58284b91b81b92199f4033532042da876bb.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/mesa/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/mesa/mesa-9999.ebuild X-VCS-Directories: media-libs/mesa/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 68b4b58284b91b81b92199f4033532042da876bb X-VCS-Branch: master Date: Sun, 21 Jul 2024 18:25:31 +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: 31684396-ff01-447a-9b82-2def3a6d2772 X-Archives-Hash: 0fe969f658da2e6b4b08adbe486ca7e1 commit: 68b4b58284b91b81b92199f4033532042da876bb Author: Matt Turner gentoo org> AuthorDate: Sun Jul 21 18:22:06 2024 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun Jul 21 18:25:26 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68b4b582 media-libs/mesa: Add dependency on pyyaml New requirement added by upstream commit bed6e0d691c ("build: Check for PyYAML in Meson build") Closes: https://bugs.gentoo.org/936431 Signed-off-by: Matt Turner gentoo.org> media-libs/mesa/mesa-9999.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index 9a583c95d8ec..b9e38c56cc02 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -164,6 +164,7 @@ BDEPEND=" $(python_gen_any_dep " >=dev-python/mako-0.8.0[\${PYTHON_USEDEP}] dev-python/packaging[\${PYTHON_USEDEP}] + dev-python/pyyaml[\${PYTHON_USEDEP}] ") video_cards_intel? ( ~dev-util/intel_clc-${PV} @@ -262,7 +263,8 @@ pkg_pretend() { python_check_deps() { python_has_version -b ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]" && - python_has_version -b "dev-python/packaging[${PYTHON_USEDEP}]" || return 1 + python_has_version -b "dev-python/packaging[${PYTHON_USEDEP}]" && + python_has_version -b "dev-python/pyyaml[${PYTHON_USEDEP}]" || return 1 if use llvm && use vulkan && use video_cards_intel && use amd64; then python_has_version -b "dev-python/ply[${PYTHON_USEDEP}]" || return 1 fi