Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/parso/
Date: Tue, 03 Dec 2019 00:54:52
Message-Id: 1575334329.8fe0c6e7e883e0db58f814340b9ddda707744d51.chutzpah@gentoo
1 commit: 8fe0c6e7e883e0db58f814340b9ddda707744d51
2 Author: Patrick McLean <patrick.mclean <AT> sony <DOT> com>
3 AuthorDate: Mon Dec 2 22:48:24 2019 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 3 00:52:09 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fe0c6e7
7
8 dev-python/parso-0.5.1-r1: revbump, port to new helpers, py38, pypy{,3}
9
10 Copyright: Sony Interactive Entertainment Inc.
11 Package-Manager: Portage-2.3.80, Repoman-2.3.19
12 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
13
14 dev-python/parso/parso-0.5.1-r1.ebuild | 23 +++++++++++++++++++++++
15 1 file changed, 23 insertions(+)
16
17 diff --git a/dev-python/parso/parso-0.5.1-r1.ebuild b/dev-python/parso/parso-0.5.1-r1.ebuild
18 new file mode 100644
19 index 00000000000..f5c44e291ec
20 --- /dev/null
21 +++ b/dev-python/parso/parso-0.5.1-r1.ebuild
22 @@ -0,0 +1,23 @@
23 +# Copyright 1999-2019 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +PYTHON_COMPAT=( python2_7 python3_{5,6,7,8} pypy{,3} )
29 +
30 +inherit distutils-r1
31 +
32 +DESCRIPTION="a python parser that supports error recovery and round-trip parsing"
33 +HOMEPAGE="https://github.com/davidhalter/parso https://pypi.org/project/parso/"
34 +SRC_URI="https://github.com/davidhalter/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
35 +
36 +LICENSE="MIT"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
39 +IUSE="doc test"
40 +RESTRICT="!test? ( test )"
41 +
42 +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
43 +
44 +distutils_enable_sphinx docs
45 +distutils_enable_tests pytest