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 40536158030 for ; Sun, 26 Feb 2023 12:43:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A517E085B; Sun, 26 Feb 2023 12:43:15 +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 4AE95E085B for ; Sun, 26 Feb 2023 12:43:14 +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 219BB340D82 for ; Sun, 26 Feb 2023 12:43:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 536C87D8 for ; Sun, 26 Feb 2023 12:43:11 +0000 (UTC) From: "Matthew Smith" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" Message-ID: <1677415379.4edd136810ff4890524b6c67503987b2f4baf02f.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/renderdoc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/renderdoc/renderdoc-1.24.ebuild X-VCS-Directories: media-gfx/renderdoc/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: 4edd136810ff4890524b6c67503987b2f4baf02f X-VCS-Branch: master Date: Sun, 26 Feb 2023 12:43:11 +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: 9d4ed849-c14f-490f-a680-8d85cefe17d4 X-Archives-Hash: 0602fb3c32b57a495556c52af1668cff commit: 4edd136810ff4890524b6c67503987b2f4baf02f Author: Matthew Smith gentoo org> AuthorDate: Sun Feb 26 12:41:20 2023 +0000 Commit: Matthew Smith gentoo org> CommitDate: Sun Feb 26 12:42:59 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4edd1368 media-gfx/renderdoc: enable py3.11 Versions prior to 1.24 are not compatible. Bug: https://bugs.gentoo.org/896990 Signed-off-by: Matthew Smith gentoo.org> media-gfx/renderdoc/renderdoc-1.24.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-gfx/renderdoc/renderdoc-1.24.ebuild b/media-gfx/renderdoc/renderdoc-1.24.ebuild index d7e55bb1ce79..4dad205e9f48 100644 --- a/media-gfx/renderdoc/renderdoc-1.24.ebuild +++ b/media-gfx/renderdoc/renderdoc-1.24.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 @@ -13,7 +13,7 @@ AUTOTOOLS_AUTO_DEPEND="no" DOCS_BUILDER="sphinx" DOCS_DIR="docs" # For Python 3.11, see https://github.com/baldurk/renderdoc/issues/2730 -PYTHON_COMPAT=( python3_{9,10} ) +PYTHON_COMPAT=( python3_{9..11} ) inherit autotools cmake flag-o-matic optfeature python-single-r1 docs qmake-utils verify-sig xdg DESCRIPTION="A stand-alone graphics debugging tool"