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 AFD22158094 for ; Sat, 8 Oct 2022 07:25:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D681BE095E; Sat, 8 Oct 2022 07:25:25 +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 B729CE095E for ; Sat, 8 Oct 2022 07:25:25 +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 8E8C933BEF2 for ; Sat, 8 Oct 2022 07:25:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A11E35EC for ; Sat, 8 Oct 2022 07:25:22 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1665213802.6d9a0d4d37f218e010c5357851f2338a96e71ba0.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/arandr/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/arandr/arandr-0.1.10-r2.ebuild x11-misc/arandr/arandr-0.1.10-r3.ebuild X-VCS-Directories: x11-misc/arandr/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 6d9a0d4d37f218e010c5357851f2338a96e71ba0 X-VCS-Branch: master Date: Sat, 8 Oct 2022 07:25:22 +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: c761468f-87e8-4757-aa10-6d648dde2547 X-Archives-Hash: 0936d907e6ece99f77ad2941667f1f8f commit: 6d9a0d4d37f218e010c5357851f2338a96e71ba0 Author: Arthur Zamarin gentoo org> AuthorDate: Sat Oct 8 07:23:22 2022 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Oct 8 07:23:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d9a0d4d x11-misc/arandr: PEP517, enable py3.11 Signed-off-by: Arthur Zamarin gentoo.org> .../arandr/{arandr-0.1.10-r2.ebuild => arandr-0.1.10-r3.ebuild} | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/x11-misc/arandr/arandr-0.1.10-r2.ebuild b/x11-misc/arandr/arandr-0.1.10-r3.ebuild similarity index 89% rename from x11-misc/arandr/arandr-0.1.10-r2.ebuild rename to x11-misc/arandr/arandr-0.1.10-r3.ebuild index 503f283eceda..ead8fd0956c0 100644 --- a/x11-misc/arandr/arandr-0.1.10-r2.ebuild +++ b/x11-misc/arandr/arandr-0.1.10-r3.ebuild @@ -3,9 +3,8 @@ EAPI=8 -DISTUTILS_USE_SETUPTOOLS="no" -PYTHON_COMPAT=( python3_{8..10} ) - +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} ) inherit distutils-r1 DESCRIPTION="Another XRandR GUI" @@ -21,7 +20,6 @@ RDEPEND=" x11-libs/gtk+:3[introspection] x11-apps/xrandr " - BDEPEND="dev-python/docutils[${PYTHON_USEDEP}]" PATCHES=( "${FILESDIR}/${PN}-0.1.10-manpages.patch" )