Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/gast/
Date: Sat, 28 May 2022 09:47:12
Message-Id: 1653731217.061fbd457c24b204c3c8343bb32ed54a778b9b72.andrewammerlaan@gentoo
1 commit: 061fbd457c24b204c3c8343bb32ed54a778b9b72
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 28 09:23:26 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Sat May 28 09:46:57 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=061fbd45
7
8 dev-python/gast: pep517, enable py3.11
9
10 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
11
12 dev-python/gast/gast-0.5.3-r1.ebuild | 18 ++++++++++++++++++
13 1 file changed, 18 insertions(+)
14
15 diff --git a/dev-python/gast/gast-0.5.3-r1.ebuild b/dev-python/gast/gast-0.5.3-r1.ebuild
16 new file mode 100644
17 index 000000000000..d72434e33798
18 --- /dev/null
19 +++ b/dev-python/gast/gast-0.5.3-r1.ebuild
20 @@ -0,0 +1,18 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +PYTHON_COMPAT=( python3_{8..11} )
27 +DISTUTILS_USE_PEP517=setuptools
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="A generic AST to represent Python2 and Python3's Abstract Syntax Tree (AST)"
31 +HOMEPAGE="https://pypi.org/project/gast/"
32 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
33 +
34 +LICENSE="BSD PSF-2"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
37 +
38 +distutils_enable_tests unittest