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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F0A25158014 for ; Sat, 28 Aug 2021 13:53:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E61EE0887; Sat, 28 Aug 2021 13:53:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3A0D7E0887 for ; Sat, 28 Aug 2021 13:53:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 04FC1342BC6 for ; Sat, 28 Aug 2021 13:53:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E75981 for ; Sat, 28 Aug 2021 13:53:36 +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: <1630158787.7553584e92ec6aa0d12a6ef04fb842e25b72b58a.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/astor/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/astor/astor-0.8.1.ebuild X-VCS-Directories: dev-python/astor/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 7553584e92ec6aa0d12a6ef04fb842e25b72b58a X-VCS-Branch: master Date: Sat, 28 Aug 2021 13:53:36 +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: 6225d6d7-ba3f-45fc-ae30-18414aa85f2c X-Archives-Hash: ddb8784b3c5a772501284f3af5a72172 commit: 7553584e92ec6aa0d12a6ef04fb842e25b72b58a Author: Arthur Zamarin gentoo org> AuthorDate: Sat Aug 28 12:12:14 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Aug 28 13:53:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7553584e dev-python/astor: enable py3.10, cleanup Signed-off-by: Arthur Zamarin gentoo.org> dev-python/astor/astor-0.8.1.ebuild | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/dev-python/astor/astor-0.8.1.ebuild b/dev-python/astor/astor-0.8.1.ebuild index d3cba04651b..379e71b6570 100644 --- a/dev-python/astor/astor-0.8.1.ebuild +++ b/dev-python/astor/astor-0.8.1.ebuild @@ -2,9 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{8,9} ) -DISTUTILS_USE_SETUPTOOLS=bdepend +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 DESCRIPTION="Read/rewrite/write Python ASTs" @@ -14,13 +13,9 @@ HOMEPAGE="https://pypi.org/project/astor/" LICENSE="BSD" SLOT="0" KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86" -IUSE="" distutils_enable_tests pytest -python_prepare_all() { - # Tries to roundtrip every package on the system and is unreliable - rm -f tests/test_rtrip.py || die - - distutils-r1_python_prepare_all -} +EPYTEST_IGNORE=( + tests/test_rtrip.py +)