commit:     49a4ddd0522c27be61e20a49ea7151f615cc30ba
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 21 20:37:03 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 21 20:43:33 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49a4ddd0

dev-python/mypy: add 0.921

Closes: https://bugs.gentoo.org/829754
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/mypy/Manifest          |  1 +
 dev-python/mypy/mypy-0.921.ebuild | 61 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/mypy/Manifest b/dev-python/mypy/Manifest
index 473e5edba958..b90016e39a4e 100644
--- a/dev-python/mypy/Manifest
+++ b/dev-python/mypy/Manifest
@@ -1 +1,2 @@
 DIST mypy-0.910.tar.gz 2551057 BLAKE2B 
a3c6939c8f0e2ea19a3a3f91031330df2fb25a93cc3f9239535f15c17eedcca5716cc75c5412a1d345d8572d396c3d7128e38989fd694833cb6aec8366ac4afe
 SHA512 
49060c13da8bf17385b6b1db6efa9ac5771f2bac92d26760c4087cf128de22846b8a062f38e83ecff524e7893f8c9cd0647a2ef89e10387138544436a2840459
+DIST mypy-0.921.tar.gz 2730985 BLAKE2B 
cfb7b54165b961758891fcf225f1a7d6bd9c6a7b14e6bb6d8adb990ed047bc4983b5e82de6709d3b8db85a3914e1bae2be4fd36e878d37db7387ebe6e81daac1
 SHA512 
f592d440b45a1bbcab973aeb717ffc805164168f1369793067a46bd2884fedcb9f981bfadd3447c6801120042553a7a7110d8cfc4e1649241d3b8685dffef653

diff --git a/dev-python/mypy/mypy-0.921.ebuild 
b/dev-python/mypy/mypy-0.921.ebuild
new file mode 100644
index 000000000000..5b0169a2ae37
--- /dev/null
+++ b/dev-python/mypy/mypy-0.921.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1 multiprocessing
+
+DESCRIPTION="Optional static typing for Python"
+HOMEPAGE="http://www.mypy-lang.org/";
+SRC_URI="https://github.com/python/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+# stubgen collides with this package: https://bugs.gentoo.org/585594
+RDEPEND="
+       !dev-util/stubgen
+       >=dev-python/psutil-4[${PYTHON_USEDEP}]
+       >=dev-python/typed-ast-1.4.0[${PYTHON_USEDEP}]
+       <dev-python/typed-ast-1.5.0[${PYTHON_USEDEP}]
+       >=dev-python/typing-extensions-3.7.4[${PYTHON_USEDEP}]
+       >=dev-python/mypy_extensions-0.4.3[${PYTHON_USEDEP}]
+       <dev-python/mypy_extensions-0.5.0[${PYTHON_USEDEP}]
+       dev-python/tomli[${PYTHON_USEDEP}]
+"
+BDEPEND="
+       test? (
+               >=dev-python/attrs-18.0[${PYTHON_USEDEP}]
+               >=dev-python/lxml-4.4.0[${PYTHON_USEDEP}]
+               >=dev-python/pytest-6.1.0[${PYTHON_USEDEP}]
+               >=dev-python/pytest-xdist-1.18[${PYTHON_USEDEP}]
+               >=dev-python/py-1.5.2[${PYTHON_USEDEP}]
+               >=dev-python/virtualenv-16.0.0[${PYTHON_USEDEP}]
+       )
+"
+
+distutils_enable_sphinx docs/source dev-python/sphinx_rtd_theme
+distutils_enable_tests pytest
+
+# this requires packaging a lot of type stubs
+export MYPY_USE_MYPYC=0
+
+python_test() {
+       local EPYTEST_DESELECT=(
+               # Fails with pytest-xdist 2.3.0
+               # https://github.com/python/mypy/issues/11019
+               mypy/test/teststubtest.py
+       )
+
+       [[ "${EPYTHON}" == "python3.10" ]] && EPYTEST_DESELECT+=(
+               # https://github.com/python/mypy/issues/11018
+               mypyc/test/test_commandline.py::TestCommandLine::testErrorOutput
+       )
+
+       # Some mypy/test/testcmdline.py::PythonCmdlineSuite tests
+       # fail with high COLUMNS values
+       local -x COLUMNS=80
+       epytest -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")"
+}

Reply via email to