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 3581815800F for ; Thu, 5 Jan 2023 16:37:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73518E0828; Thu, 5 Jan 2023 16:37:56 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5AA7EE0828 for ; Thu, 5 Jan 2023 16:37:56 +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 5CD3033E01A for ; Thu, 5 Jan 2023 16:37:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EE40F7FC for ; Thu, 5 Jan 2023 16:37:53 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1672936584.9396dcfdb3170b4803397bd7c845ecbaa3ddd110.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libplacebo/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libplacebo/libplacebo-5.229.1.ebuild media-libs/libplacebo/libplacebo-5.229.2.ebuild media-libs/libplacebo/libplacebo-9999.ebuild X-VCS-Directories: media-libs/libplacebo/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 9396dcfdb3170b4803397bd7c845ecbaa3ddd110 X-VCS-Branch: master Date: Thu, 5 Jan 2023 16:37:53 +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: 0453d8d6-e425-4157-be22-1226188a2adb X-Archives-Hash: 59e471e0fc3fe34465b6855ba693ab98 commit: 9396dcfdb3170b4803397bd7c845ecbaa3ddd110 Author: Ionen Wolkens gentoo org> AuthorDate: Thu Jan 5 15:46:09 2023 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Thu Jan 5 16:36:24 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9396dcfd media-libs/libplacebo: bdepend on setuptools Unlikely to be missing unless manage to cleanup setuptools while keeping jinja (which is checked for), but it is technically used by glad/plugin.py and fails building if missing. >=glad-2.0.2 can build without, but 2.0.2 had other issues and will wait for libplacebo upstream to bump it to be safe (should be fixed in >=glad-2.0.3 though). Signed-off-by: Ionen Wolkens gentoo.org> media-libs/libplacebo/libplacebo-5.229.1.ebuild | 10 +++++++--- media-libs/libplacebo/libplacebo-5.229.2.ebuild | 8 ++++++-- media-libs/libplacebo/libplacebo-9999.ebuild | 10 +++++++--- 3 files changed, 20 insertions(+), 8 deletions(-) diff --git a/media-libs/libplacebo/libplacebo-5.229.1.ebuild b/media-libs/libplacebo/libplacebo-5.229.1.ebuild index 6bb651d08422..95d5231d0b11 100644 --- a/media-libs/libplacebo/libplacebo-5.229.1.ebuild +++ b/media-libs/libplacebo/libplacebo-5.229.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -43,7 +43,9 @@ DEPEND=" ${RDEPEND} dev-util/vulkan-headers" BDEPEND=" - $(python_gen_any_dep 'dev-python/jinja[${PYTHON_USEDEP}]') + $(python_gen_any_dep ' + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}]') virtual/pkgconfig" PATCHES=( @@ -53,7 +55,9 @@ PATCHES=( ) python_check_deps() { - python_has_version "dev-python/jinja[${PYTHON_USEDEP}]" + # note: setuptools can be removed when using >=glad-2.0.2 + python_has_version "dev-python/jinja[${PYTHON_USEDEP}]" && + python_has_version "dev-python/setuptools[${PYTHON_USEDEP}]" } src_unpack() { diff --git a/media-libs/libplacebo/libplacebo-5.229.2.ebuild b/media-libs/libplacebo/libplacebo-5.229.2.ebuild index 3f7e54297207..fce1ddbf5e43 100644 --- a/media-libs/libplacebo/libplacebo-5.229.2.ebuild +++ b/media-libs/libplacebo/libplacebo-5.229.2.ebuild @@ -43,7 +43,9 @@ DEPEND=" ${RDEPEND} dev-util/vulkan-headers" BDEPEND=" - $(python_gen_any_dep 'dev-python/jinja[${PYTHON_USEDEP}]') + $(python_gen_any_dep ' + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}]') virtual/pkgconfig" PATCHES=( @@ -53,7 +55,9 @@ PATCHES=( ) python_check_deps() { - python_has_version "dev-python/jinja[${PYTHON_USEDEP}]" + # note: setuptools can be removed when using >=glad-2.0.2 + python_has_version "dev-python/jinja[${PYTHON_USEDEP}]" && + python_has_version "dev-python/setuptools[${PYTHON_USEDEP}]" } src_unpack() { diff --git a/media-libs/libplacebo/libplacebo-9999.ebuild b/media-libs/libplacebo/libplacebo-9999.ebuild index dc18093e0d60..fce1ddbf5e43 100644 --- a/media-libs/libplacebo/libplacebo-9999.ebuild +++ b/media-libs/libplacebo/libplacebo-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -43,7 +43,9 @@ DEPEND=" ${RDEPEND} dev-util/vulkan-headers" BDEPEND=" - $(python_gen_any_dep 'dev-python/jinja[${PYTHON_USEDEP}]') + $(python_gen_any_dep ' + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}]') virtual/pkgconfig" PATCHES=( @@ -53,7 +55,9 @@ PATCHES=( ) python_check_deps() { - python_has_version "dev-python/jinja[${PYTHON_USEDEP}]" + # note: setuptools can be removed when using >=glad-2.0.2 + python_has_version "dev-python/jinja[${PYTHON_USEDEP}]" && + python_has_version "dev-python/setuptools[${PYTHON_USEDEP}]" } src_unpack() {