Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyte/
Date: Tue, 28 Feb 2017 13:08:42
Message-Id: 1488287290.657dc0c757577f095c815ce6fa4210b11794e935.grozin@gentoo
1 commit: 657dc0c757577f095c815ce6fa4210b11794e935
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 28 13:08:10 2017 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 28 13:08:10 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=657dc0c7
7
8 dev-python/pyte: python3_6 added
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-python/pyte/pyte-0.5.2-r2.ebuild | 33 +++++++++++++++++++++++++++++++++
13 1 file changed, 33 insertions(+)
14
15 diff --git a/dev-python/pyte/pyte-0.5.2-r2.ebuild b/dev-python/pyte/pyte-0.5.2-r2.ebuild
16 new file mode 100644
17 index 0000000000..895b969586
18 --- /dev/null
19 +++ b/dev-python/pyte/pyte-0.5.2-r2.ebuild
20 @@ -0,0 +1,33 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id: e4e2b831b5f1d06aaed61962ec461f64fb4e833c $
24 +
25 +EAPI=5
26 +
27 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Simple VTXXX-compatible terminal emulator"
32 +HOMEPAGE="https://pypi.python.org/pypi/pyte/ https://github.com/selectel/pyte"
33 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 +
35 +SLOT="0"
36 +LICENSE="LGPL-3"
37 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
38 +IUSE="test"
39 +
40 +RDEPEND="dev-python/wcwidth[${PYTHON_USEDEP}]"
41 +DEPEND="${RDEPEND}
42 + dev-python/pytest-runner[${PYTHON_USEDEP}]
43 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
44 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )
45 +"
46 +
47 +python_prepare_all() {
48 + distutils-r1_python_prepare_all
49 +}
50 +
51 +python_test() {
52 + esetup.py test --verbose
53 +}