Gentoo Archives: gentoo-commits

From: Alex Brandt <alunduil@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mypy/
Date: Sun, 05 Jun 2016 20:01:43
Message-Id: 1465156877.c89c6ed3879a9d6c137caabce339dc5b62c4edcf.alunduil@gentoo
1 commit: c89c6ed3879a9d6c137caabce339dc5b62c4edcf
2 Author: Alex Brandt <alunduil <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 5 19:59:18 2016 +0000
4 Commit: Alex Brandt <alunduil <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 5 20:01:17 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c89c6ed3
7
8 dev-python/mypy: fix #584556
9
10 Apparently, I misread the dependencees and added the dependence on typing that
11 should have been a blocker. This commit rectifies that situation. I'm not
12 convinced other problems don't exist and we may see more bugs before this is
13 completely resolved.
14
15 Package-Manager: portage-2.3.0_rc1
16
17 dev-python/mypy/mypy-0.4.1.ebuild | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20 diff --git a/dev-python/mypy/mypy-0.4.1.ebuild b/dev-python/mypy/mypy-0.4.1.ebuild
21 index 38f9f5e..5d7d96c 100644
22 --- a/dev-python/mypy/mypy-0.4.1.ebuild
23 +++ b/dev-python/mypy/mypy-0.4.1.ebuild
24 @@ -23,7 +23,7 @@ DEPEND="
25 dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
26 )
27 "
28 -RDEPEND="$(python_gen_cond_dep 'dev-python/typing[${PYTHON_USEDEP}]' 'python3_3' 'python3_4')"
29 +RDEPEND="$(python_gen_cond_dep '!dev-python/typing[${PYTHON_USEDEP}]' 'python3_3' 'python3_4')"
30
31 python_compile_all() {
32 use doc && emake -C docs html