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/wcwidth/
Date: Tue, 28 Feb 2017 13:04:56
Message-Id: 1488287074.f930d8139d14d123572e6a96e81e7e8d1eea3772.grozin@gentoo
1 commit: f930d8139d14d123572e6a96e81e7e8d1eea3772
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 28 13:04:34 2017 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 28 13:04:34 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f930d813
7
8 dev-python/wcwidth: python3_6 added
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-python/wcwidth/wcwidth-0.1.7-r1.ebuild | 28 ++++++++++++++++++++++++++++
13 1 file changed, 28 insertions(+)
14
15 diff --git a/dev-python/wcwidth/wcwidth-0.1.7-r1.ebuild b/dev-python/wcwidth/wcwidth-0.1.7-r1.ebuild
16 new file mode 100644
17 index 0000000000..88fbfdcbf9
18 --- /dev/null
19 +++ b/dev-python/wcwidth/wcwidth-0.1.7-r1.ebuild
20 @@ -0,0 +1,28 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id: 5712ea6e8d0563cfbfecec3b894c63cd963647f4 $
24 +
25 +EAPI=5
26 +
27 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Measures number of Terminal column cells of wide-character codes"
32 +HOMEPAGE="https://pypi.python.org/pypi/wcwidth/ https://github.com/jquast/wcwidth"
33 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 +
35 +SLOT="0"
36 +LICENSE="MIT"
37 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
38 +IUSE="test"
39 +
40 +RDEPEND=""
41 +DEPEND="${RDEPEND}
42 + dev-python/setuptools[${PYTHON_USEDEP}]
43 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )
44 +"
45 +
46 +python_test() {
47 + py.test -v -rs --strict wcwidth/tests || die
48 +}