# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 PYTHON_COMPAT=( python3_{5,6} ) if [ "${PV}" == "9999" ]; then inherit distutils-r1 git-r3 EGIT_REPO_URI="https://github.com/python/${PN}" SRC_URI="" else inherit distutils-r1 TYPESHED_COMMIT="9b6df1d" SRC_URI="https://github.com/python/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz https://api.github.com/repos/python/typeshed/tarball/${TYPESHED_COMMIT} -> mypy-typeshed-${PV}.tar.gz" fi DESCRIPTION="Optional static typing for Python" HOMEPAGE="http://www.mypy-lang.org/" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc test" DEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/flake8[${PYTHON_USEDEP}] ) doc? ( dev-python/sphinx[${PYTHON_USEDEP}] dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] ) " CDEPEND=" !dev-util/stubgen >=dev-python/psutil-5.4.0[${PYTHON_USEDEP}] =dev-python/typed-ast-1.1.0[${PYTHON_USEDEP}]