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 A4071158094 for ; Wed, 7 Sep 2022 07:52:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F257DE0AEF; Wed, 7 Sep 2022 07:52:52 +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 D913CE0AEF for ; Wed, 7 Sep 2022 07:52:52 +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 03FBE3411FE for ; Wed, 7 Sep 2022 07:52:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B08E56D for ; Wed, 7 Sep 2022 07:52:50 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1662537112.59343bb5b043083d8f0bf99ad1b32c17dff2371c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/gprof2dot/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/gprof2dot/gprof2dot-2019.11.30.ebuild dev-util/gprof2dot/gprof2dot-2021.02.21-r1.ebuild dev-util/gprof2dot/gprof2dot-2021.02.21.ebuild dev-util/gprof2dot/gprof2dot-2022.07.29.ebuild X-VCS-Directories: dev-util/gprof2dot/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 59343bb5b043083d8f0bf99ad1b32c17dff2371c X-VCS-Branch: master Date: Wed, 7 Sep 2022 07:52:50 +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: 5c5a86bd-ce87-41d3-890a-90fcc4c5f841 X-Archives-Hash: 5e726dd7d0d7f2e50785ff4a31f15765 commit: 59343bb5b043083d8f0bf99ad1b32c17dff2371c Author: Michał Górny gentoo org> AuthorDate: Sun Sep 4 19:43:07 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Sep 7 07:51:52 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59343bb5 dev-util/gprof2dot: Update PYTHON_REQ_USE to xml(+) Update PYTHON_REQ_USE to specify "xml(+)", as Python 3.11 no longer features the "xml" flag. Signed-off-by: Michał Górny gentoo.org> dev-util/gprof2dot/gprof2dot-2019.11.30.ebuild | 4 ++-- dev-util/gprof2dot/gprof2dot-2021.02.21-r1.ebuild | 4 ++-- dev-util/gprof2dot/gprof2dot-2021.02.21.ebuild | 4 ++-- dev-util/gprof2dot/gprof2dot-2022.07.29.ebuild | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/dev-util/gprof2dot/gprof2dot-2019.11.30.ebuild b/dev-util/gprof2dot/gprof2dot-2019.11.30.ebuild index b4335d933bdb..c06fb1a428eb 100644 --- a/dev-util/gprof2dot/gprof2dot-2019.11.30.ebuild +++ b/dev-util/gprof2dot/gprof2dot-2019.11.30.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{7..9} ) -PYTHON_REQ_USE='xml' +PYTHON_REQ_USE='xml(+)' DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 diff --git a/dev-util/gprof2dot/gprof2dot-2021.02.21-r1.ebuild b/dev-util/gprof2dot/gprof2dot-2021.02.21-r1.ebuild index 877e56b88b78..4be4d1a4eb84 100644 --- a/dev-util/gprof2dot/gprof2dot-2021.02.21-r1.ebuild +++ b/dev-util/gprof2dot/gprof2dot-2021.02.21-r1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{7..10} ) -PYTHON_REQ_USE='xml' +PYTHON_REQ_USE='xml(+)' inherit distutils-r1 diff --git a/dev-util/gprof2dot/gprof2dot-2021.02.21.ebuild b/dev-util/gprof2dot/gprof2dot-2021.02.21.ebuild index acd56059218a..c06fb1a428eb 100644 --- a/dev-util/gprof2dot/gprof2dot-2021.02.21.ebuild +++ b/dev-util/gprof2dot/gprof2dot-2021.02.21.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{7..9} ) -PYTHON_REQ_USE='xml' +PYTHON_REQ_USE='xml(+)' DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 diff --git a/dev-util/gprof2dot/gprof2dot-2022.07.29.ebuild b/dev-util/gprof2dot/gprof2dot-2022.07.29.ebuild index f488c858ed67..5c3acb5f936a 100644 --- a/dev-util/gprof2dot/gprof2dot-2022.07.29.ebuild +++ b/dev-util/gprof2dot/gprof2dot-2022.07.29.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{8..10} ) -PYTHON_REQ_USE='xml' +PYTHON_REQ_USE='xml(+)' inherit distutils-r1