From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 045DD13829C for ; Sun, 5 Jun 2016 20:01:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 730C4142D4; Sun, 5 Jun 2016 20:01:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2663F142D4 for ; Sun, 5 Jun 2016 20:01:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DABB23409A4 for ; Sun, 5 Jun 2016 20:01:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9CC37970 for ; Sun, 5 Jun 2016 20:01:36 +0000 (UTC) From: "Alex Brandt" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alex Brandt" Message-ID: <1465156877.c89c6ed3879a9d6c137caabce339dc5b62c4edcf.alunduil@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mypy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/mypy/mypy-0.4.1.ebuild X-VCS-Directories: dev-python/mypy/ X-VCS-Committer: alunduil X-VCS-Committer-Name: Alex Brandt X-VCS-Revision: c89c6ed3879a9d6c137caabce339dc5b62c4edcf X-VCS-Branch: master Date: Sun, 5 Jun 2016 20:01:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 86e73b2a-c266-48b9-9683-ba93da8a7f17 X-Archives-Hash: 6a627221a83fbba905d5d56fc735c68f commit: c89c6ed3879a9d6c137caabce339dc5b62c4edcf Author: Alex Brandt gentoo org> AuthorDate: Sun Jun 5 19:59:18 2016 +0000 Commit: Alex Brandt gentoo org> CommitDate: Sun Jun 5 20:01:17 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c89c6ed3 dev-python/mypy: fix #584556 Apparently, I misread the dependencees and added the dependence on typing that should have been a blocker. This commit rectifies that situation. I'm not convinced other problems don't exist and we may see more bugs before this is completely resolved. Package-Manager: portage-2.3.0_rc1 dev-python/mypy/mypy-0.4.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/mypy/mypy-0.4.1.ebuild b/dev-python/mypy/mypy-0.4.1.ebuild index 38f9f5e..5d7d96c 100644 --- a/dev-python/mypy/mypy-0.4.1.ebuild +++ b/dev-python/mypy/mypy-0.4.1.ebuild @@ -23,7 +23,7 @@ DEPEND=" dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] ) " -RDEPEND="$(python_gen_cond_dep 'dev-python/typing[${PYTHON_USEDEP}]' 'python3_3' 'python3_4')" +RDEPEND="$(python_gen_cond_dep '!dev-python/typing[${PYTHON_USEDEP}]' 'python3_3' 'python3_4')" python_compile_all() { use doc && emake -C docs html