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: Fri, 01 Apr 2016 16:37:39
Message-Id: 1459527613.464fb45e98cb788c007ffea53b046d12b04b1ec4.grozin@gentoo
1 commit: 464fb45e98cb788c007ffea53b046d12b04b1ec4
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 1 16:20:13 2016 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 1 16:20:13 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=464fb45e
7
8 dev-python/wcwidth: added python3_5
9
10 Package-Manager: portage-2.2.28
11
12 dev-python/wcwidth/wcwidth-0.1.6-r1.ebuild | 28 ++++++++++++++++++++++++++++
13 1 file changed, 28 insertions(+)
14
15 diff --git a/dev-python/wcwidth/wcwidth-0.1.6-r1.ebuild b/dev-python/wcwidth/wcwidth-0.1.6-r1.ebuild
16 new file mode 100644
17 index 0000000..bbc123d
18 --- /dev/null
19 +++ b/dev-python/wcwidth/wcwidth-0.1.6-r1.ebuild
20 @@ -0,0 +1,28 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +
27 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
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 +}