commit: 7d03691472e150fb97ec849de5cfd4092fc276a0 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Tue Dec 2 16:33:27 2025 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Tue Dec 2 16:33:27 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d036914
dev-python/mypy: Disable native-extensions by default Disable the native-extensions flag that uses mypyc to compile Python stdlib. The process is highly-inefficient and incompatible with ccache, adding a lot of build time with negligible benefit for an average user. Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/mypy/mypy-1.19.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/mypy/mypy-1.19.0.ebuild b/dev-python/mypy/mypy-1.19.0.ebuild index c4ff056bf2a9..3a51d65b59bb 100644 --- a/dev-python/mypy/mypy-1.19.0.ebuild +++ b/dev-python/mypy/mypy-1.19.0.ebuild @@ -23,7 +23,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64" -IUSE="+native-extensions" +IUSE="native-extensions" # stubgen collides with this package: https://bugs.gentoo.org/585594 RDEPEND="
