Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/click/
Date: Sun, 20 Sep 2015 09:33:52
Message-Id: 1442741619.bb3abd1953f918dfa668c6d524eadf75d80cdd8e.jlec@gentoo
1 commit: bb3abd1953f918dfa668c6d524eadf75d80cdd8e
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 20 08:28:19 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 20 09:33:39 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb3abd19
7
8 dev-python/click: Add pypy3 support
9
10 Package-Manager: portage-2.2.20.1
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/click/click-4.1.ebuild | 9 +++++----
14 1 file changed, 5 insertions(+), 4 deletions(-)
15
16 diff --git a/dev-python/click/click-4.1.ebuild b/dev-python/click/click-4.1.ebuild
17 index 9b842ec..d7025a4 100644
18 --- a/dev-python/click/click-4.1.ebuild
19 +++ b/dev-python/click/click-4.1.ebuild
20 @@ -3,7 +3,8 @@
21 # $Id$
22
23 EAPI="5"
24 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
25 +
26 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 )
27
28 inherit distutils-r1
29
30 @@ -14,10 +15,10 @@ HOMEPAGE="http://click.pocoo.org/ https://pypi.python.org/pypi/click"
31 LICENSE="BSD"
32 SLOT="0"
33 KEYWORDS="~amd64 ~x86"
34 -
35 IUSE="doc examples test"
36
37 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
38 +DEPEND="
39 + dev-python/setuptools[${PYTHON_USEDEP}]
40 test? ( dev-python/pytest[${PYTHON_USEDEP}] )
41 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
42 "
43 @@ -37,7 +38,7 @@ python_test() {
44 }
45
46 python_install_all() {
47 - use doc && local HTML_DOCS=( docs/_build/html/. )
48 + use doc && local HTML_DOCS=( docs/_build/html/. )
49 use examples && local EXAMPLES=( examples/. )
50 distutils-r1_python_install_all
51 }