diff options
author | 2020-02-12 11:36:37 +0100 | |
---|---|---|
committer | 2020-02-12 11:43:46 +0100 | |
commit | 01f2fafb1b67a07310021deafbda3e48e3462592 (patch) | |
tree | 7a93479a1b452bb890bad99925fb6316b4087ef7 | |
parent | sys-kernel/gentoo-kernel: Bump to 4.19.103 (diff) | |
download | gentoo-01f2fafb1b67a07310021deafbda3e48e3462592.tar.gz gentoo-01f2fafb1b67a07310021deafbda3e48e3462592.tar.bz2 gentoo-01f2fafb1b67a07310021deafbda3e48e3462592.zip |
dev-python/zstandard: Backport parallel build workaround to 0.12.0
Closes: https://bugs.gentoo.org/709296
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | dev-python/zstandard/zstandard-0.12.0.ebuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dev-python/zstandard/zstandard-0.12.0.ebuild b/dev-python/zstandard/zstandard-0.12.0.ebuild index cad7581663c9..54dced7cd69c 100644 --- a/dev-python/zstandard/zstandard-0.12.0.ebuild +++ b/dev-python/zstandard/zstandard-0.12.0.ebuild @@ -22,6 +22,11 @@ DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/hypothesis[${PYTHON_USEDEP}] )" +python_compile() { + local MAKEOPTS=-j1 + distutils-r1_python_compile +} + python_test() { esetup.py test } |