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 5632D15808B for ; Wed, 6 Apr 2022 19:41:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A5F0BE0CE2; Wed, 6 Apr 2022 19:41:07 +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 A39E5E0CE1 for ; Wed, 6 Apr 2022 19:41:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 6A27F341041 for ; Wed, 6 Apr 2022 19:41:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A20BF391 for ; Wed, 6 Apr 2022 19:41:02 +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: <1649274057.d1e819b30e3fc20bfcde3750580be6aff2e0691f.mgorny@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-r1.ebuild X-VCS-Directories: dev-python/astor/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d1e819b30e3fc20bfcde3750580be6aff2e0691f X-VCS-Branch: master Date: Wed, 6 Apr 2022 19:41:02 +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: 02bea29a-e497-45ef-a290-c17204e1f3b1 X-Archives-Hash: 931f0e2e428a33090092ba7c5053b356 commit: d1e819b30e3fc20bfcde3750580be6aff2e0691f Author: Michał Górny gentoo org> AuthorDate: Wed Apr 6 19:34:30 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Apr 6 19:40:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1e819b3 dev-python/astor: Switch to PEP517 build Signed-off-by: Michał Górny gentoo.org> dev-python/astor/astor-0.8.1-r1.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/dev-python/astor/astor-0.8.1-r1.ebuild b/dev-python/astor/astor-0.8.1-r1.ebuild new file mode 100644 index 000000000000..a73a5388bc50 --- /dev/null +++ b/dev-python/astor/astor-0.8.1-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Read/rewrite/write Python ASTs" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" +HOMEPAGE="https://pypi.org/project/astor/" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + +distutils_enable_tests pytest + +EPYTEST_IGNORE=( + tests/test_rtrip.py +)