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 A008515817D for ; Wed, 5 Jun 2024 20:02:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D399BE2B77; Wed, 5 Jun 2024 20:02:30 +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 91B08E2B77 for ; Wed, 5 Jun 2024 20:02:30 +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 86889340BE2 for ; Wed, 5 Jun 2024 20:01:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C2C271C00 for ; Wed, 5 Jun 2024 20:01:38 +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: <1717617690.1c2216dd6b82337fbc9bdc5f9bc0005fe6f8e57b.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-24.0.7.ebuild media-libs/mesa/mesa-24.0.8-r1.ebuild media-libs/mesa/mesa-24.0.8.ebuild media-libs/mesa/mesa-24.1.0-r1.ebuild media-libs/mesa/mesa-24.1.0.ebuild 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: 1c2216dd6b82337fbc9bdc5f9bc0005fe6f8e57b X-VCS-Branch: master Date: Wed, 5 Jun 2024 20:01:38 +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: f32b85a8-7ecc-49dc-b423-c0898259f3ff X-Archives-Hash: 3c04c1aaa0ef0589961ef59446097f5f commit: 1c2216dd6b82337fbc9bdc5f9bc0005fe6f8e57b Author: Alfred Wingate protonmail com> AuthorDate: Tue Jun 4 08:30:34 2024 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Jun 5 20:01:30 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c2216dd media-libs/mesa: Depend on dev-python/packaging * Mesa's meson check for mako uses dev-python/packaging or distutils (dev-python/setuptools in python3.12). For simplicity add a dependency on dev-python/packaging. Closes: https://bugs.gentoo.org/933515 Closes: https://github.com/gentoo/gentoo/pull/37019 Signed-off-by: Alfred Wingate protonmail.com> Signed-off-by: Matt Turner gentoo.org> media-libs/mesa/mesa-24.0.7.ebuild | 8 ++++++-- media-libs/mesa/mesa-24.0.8-r1.ebuild | 8 ++++++-- media-libs/mesa/mesa-24.0.8.ebuild | 8 ++++++-- media-libs/mesa/mesa-24.1.0-r1.ebuild | 8 ++++++-- media-libs/mesa/mesa-24.1.0.ebuild | 8 ++++++-- media-libs/mesa/mesa-9999.ebuild | 8 ++++++-- 6 files changed, 36 insertions(+), 12 deletions(-) diff --git a/media-libs/mesa/mesa-24.0.7.ebuild b/media-libs/mesa/mesa-24.0.7.ebuild index 6728b6089ac8..079bc478b34e 100644 --- a/media-libs/mesa/mesa-24.0.7.ebuild +++ b/media-libs/mesa/mesa-24.0.7.ebuild @@ -137,7 +137,10 @@ BDEPEND=" app-alternatives/yacc app-alternatives/lex virtual/pkgconfig - $(python_gen_any_dep ">=dev-python/mako-0.8.0[\${PYTHON_USEDEP}]") + $(python_gen_any_dep " + >=dev-python/mako-0.8.0[\${PYTHON_USEDEP}] + dev-python/packaging[\${PYTHON_USEDEP}] + ") vulkan? ( dev-util/glslang llvm? ( @@ -212,7 +215,8 @@ pkg_pretend() { } python_check_deps() { - python_has_version -b ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]" || return 1 + python_has_version -b ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]" && + python_has_version -b "dev-python/packaging[${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 diff --git a/media-libs/mesa/mesa-24.0.8-r1.ebuild b/media-libs/mesa/mesa-24.0.8-r1.ebuild index b676b84c8534..41c743d15fe6 100644 --- a/media-libs/mesa/mesa-24.0.8-r1.ebuild +++ b/media-libs/mesa/mesa-24.0.8-r1.ebuild @@ -137,7 +137,10 @@ BDEPEND=" app-alternatives/yacc app-alternatives/lex virtual/pkgconfig - $(python_gen_any_dep ">=dev-python/mako-0.8.0[\${PYTHON_USEDEP}]") + $(python_gen_any_dep " + >=dev-python/mako-0.8.0[\${PYTHON_USEDEP}] + dev-python/packaging[\${PYTHON_USEDEP}] + ") vulkan? ( dev-util/glslang llvm? ( @@ -212,7 +215,8 @@ pkg_pretend() { } python_check_deps() { - python_has_version -b ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]" || return 1 + python_has_version -b ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]" && + python_has_version -b "dev-python/packaging[${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 diff --git a/media-libs/mesa/mesa-24.0.8.ebuild b/media-libs/mesa/mesa-24.0.8.ebuild index 53d40957a9fc..53ea99b9ba47 100644 --- a/media-libs/mesa/mesa-24.0.8.ebuild +++ b/media-libs/mesa/mesa-24.0.8.ebuild @@ -137,7 +137,10 @@ BDEPEND=" app-alternatives/yacc app-alternatives/lex virtual/pkgconfig - $(python_gen_any_dep ">=dev-python/mako-0.8.0[\${PYTHON_USEDEP}]") + $(python_gen_any_dep " + >=dev-python/mako-0.8.0[\${PYTHON_USEDEP}] + dev-python/packaging[\${PYTHON_USEDEP}] + ") vulkan? ( dev-util/glslang llvm? ( @@ -212,7 +215,8 @@ pkg_pretend() { } python_check_deps() { - python_has_version -b ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]" || return 1 + python_has_version -b ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]" && + python_has_version -b "dev-python/packaging[${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 diff --git a/media-libs/mesa/mesa-24.1.0-r1.ebuild b/media-libs/mesa/mesa-24.1.0-r1.ebuild index 9979d5a20b5d..888fd8ec22dd 100644 --- a/media-libs/mesa/mesa-24.1.0-r1.ebuild +++ b/media-libs/mesa/mesa-24.1.0-r1.ebuild @@ -157,7 +157,10 @@ BDEPEND=" app-alternatives/yacc app-alternatives/lex virtual/pkgconfig - $(python_gen_any_dep ">=dev-python/mako-0.8.0[\${PYTHON_USEDEP}]") + $(python_gen_any_dep " + >=dev-python/mako-0.8.0[\${PYTHON_USEDEP}] + dev-python/packaging[\${PYTHON_USEDEP}] + ") video_cards_intel? ( ~dev-util/intel_clc-${PV} dev-libs/libclc[spirv(-)] @@ -236,7 +239,8 @@ pkg_pretend() { } python_check_deps() { - python_has_version -b ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]" || return 1 + python_has_version -b ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]" && + python_has_version -b "dev-python/packaging[${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 diff --git a/media-libs/mesa/mesa-24.1.0.ebuild b/media-libs/mesa/mesa-24.1.0.ebuild index f9c4e1acfcbb..74f5ca28a2f6 100644 --- a/media-libs/mesa/mesa-24.1.0.ebuild +++ b/media-libs/mesa/mesa-24.1.0.ebuild @@ -157,7 +157,10 @@ BDEPEND=" app-alternatives/yacc app-alternatives/lex virtual/pkgconfig - $(python_gen_any_dep ">=dev-python/mako-0.8.0[\${PYTHON_USEDEP}]") + $(python_gen_any_dep " + >=dev-python/mako-0.8.0[\${PYTHON_USEDEP}] + dev-python/packaging[\${PYTHON_USEDEP}] + ") video_cards_intel? ( ~dev-util/intel_clc-${PV} dev-libs/libclc[spirv(-)] @@ -236,7 +239,8 @@ pkg_pretend() { } python_check_deps() { - python_has_version -b ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]" || return 1 + python_has_version -b ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]" && + python_has_version -b "dev-python/packaging[${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 diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index 50d2c5e467c7..ca78acc8f2a7 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -155,7 +155,10 @@ BDEPEND=" app-alternatives/yacc app-alternatives/lex virtual/pkgconfig - $(python_gen_any_dep ">=dev-python/mako-0.8.0[\${PYTHON_USEDEP}]") + $(python_gen_any_dep " + >=dev-python/mako-0.8.0[\${PYTHON_USEDEP}] + dev-python/packaging[\${PYTHON_USEDEP}] + ") video_cards_intel? ( ~dev-util/intel_clc-${PV} dev-libs/libclc[spirv(-)] @@ -233,7 +236,8 @@ pkg_pretend() { } python_check_deps() { - python_has_version -b ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]" || return 1 + python_has_version -b ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]" && + python_has_version -b "dev-python/packaging[${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