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 7749E15800A for ; Mon, 7 Aug 2023 12:54:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BA77B2BC016; Mon, 7 Aug 2023 12:54:22 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9F1D82BC016 for ; Mon, 7 Aug 2023 12:54:22 +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 B433E340BC0 for ; Mon, 7 Aug 2023 12:54:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E02EF1D for ; Mon, 7 Aug 2023 12:54:20 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1691412823.286a7c3cf202ae0f130d0996a84ee224f1c3dfc3.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/weston/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/weston/weston-12.0.2.ebuild dev-libs/weston/weston-9999.ebuild X-VCS-Directories: dev-libs/weston/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 286a7c3cf202ae0f130d0996a84ee224f1c3dfc3 X-VCS-Branch: master Date: Mon, 7 Aug 2023 12:54:20 +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: a0d35196-597d-4e40-822e-68889cbc2c4f X-Archives-Hash: 42eed28325bff13d3fac5c8a90c39e2e commit: 286a7c3cf202ae0f130d0996a84ee224f1c3dfc3 Author: James Le Cuirot gentoo org> AuthorDate: Mon Aug 7 12:53:43 2023 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Mon Aug 7 12:53:43 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=286a7c3c dev-libs/weston: Fix building with Python 3.12 setuptools is required with 3.12 due to a current issue in Meson. Unfortunately, we cannot easily express this only for 3.12, but it's not a big deal in practise. Closes: https://bugs.gentoo.org/911748 Signed-off-by: James Le Cuirot gentoo.org> dev-libs/weston/weston-12.0.2.ebuild | 1 + dev-libs/weston/weston-9999.ebuild | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-libs/weston/weston-12.0.2.ebuild b/dev-libs/weston/weston-12.0.2.ebuild index 8fa6eb73fb76..b7c0da5886be 100644 --- a/dev-libs/weston/weston-12.0.2.ebuild +++ b/dev-libs/weston/weston-12.0.2.ebuild @@ -90,6 +90,7 @@ BDEPEND=" ${PYTHON_DEPS} dev-util/wayland-scanner virtual/pkgconfig + $(python_gen_any_dep 'dev-python/setuptools[${PYTHON_USEDEP}]') " src_configure() { diff --git a/dev-libs/weston/weston-9999.ebuild b/dev-libs/weston/weston-9999.ebuild index 3c346567c682..b7c0da5886be 100644 --- a/dev-libs/weston/weston-9999.ebuild +++ b/dev-libs/weston/weston-9999.ebuild @@ -9,7 +9,7 @@ if [[ ${PV} = 9999* ]]; then EXPERIMENTAL="true" fi -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{9..12} ) inherit meson python-any-r1 readme.gentoo-r1 xdg-utils ${GIT_ECLASS} DESCRIPTION="Wayland reference compositor" @@ -19,7 +19,7 @@ if [[ ${PV} = *9999* ]]; then SRC_URI="${SRC_PATCHES}" else SRC_URI="https://gitlab.freedesktop.org/wayland/${PN}/-/releases/${PV}/downloads/${P}.tar.xz" - KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~riscv ~x86" fi LICENSE="MIT CC-BY-SA-3.0" @@ -90,6 +90,7 @@ BDEPEND=" ${PYTHON_DEPS} dev-util/wayland-scanner virtual/pkgconfig + $(python_gen_any_dep 'dev-python/setuptools[${PYTHON_USEDEP}]') " src_configure() {