Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/visitor/
Date: Fri, 04 Sep 2020 19:01:05
Message-Id: 1599246025.cb3557ce7197a94c8ac70af71ce1ef28e7ba494a.sbraz@gentoo
1 commit: cb3557ce7197a94c8ac70af71ce1ef28e7ba494a
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 2 22:03:14 2020 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 4 19:00:25 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb3557ce
7
8 dev-python/visitor: add Python 3.8 and 3.9 support
9
10 Also switch to distutils_enable_tests and remove explicit dependency on
11 setuptools.
12
13 Package-Manager: Portage-3.0.3, Repoman-2.3.23
14 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
15
16 dev-python/visitor/visitor-0.1.3-r1.ebuild | 20 ++++++++++++++++++++
17 1 file changed, 20 insertions(+)
18
19 diff --git a/dev-python/visitor/visitor-0.1.3-r1.ebuild b/dev-python/visitor/visitor-0.1.3-r1.ebuild
20 new file mode 100644
21 index 00000000000..2432bb2c6c8
22 --- /dev/null
23 +++ b/dev-python/visitor/visitor-0.1.3-r1.ebuild
24 @@ -0,0 +1,20 @@
25 +# Copyright 1999-2020 Gentoo Authors
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=7
29 +
30 +PYTHON_COMPAT=( pypy3 python3_{6,7,8,9} )
31 +
32 +inherit distutils-r1
33 +
34 +DESCRIPTION="A tiny pythonic visitor implementation"
35 +HOMEPAGE="https://github.com/mbr/visitor"
36 +# PyPI tarballs don't include tests
37 +# https://github.com/mbr/visitor/pull/2
38 +SRC_URI="https://github.com/mbr/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="MIT"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +
44 +distutils_enable_tests pytest