Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zstandard/
Date: Wed, 12 Feb 2020 10:43:58
Message-Id: 1581504226.01f2fafb1b67a07310021deafbda3e48e3462592.mgorny@gentoo
1 commit: 01f2fafb1b67a07310021deafbda3e48e3462592
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 12 10:36:37 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 12 10:43:46 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01f2fafb
7
8 dev-python/zstandard: Backport parallel build workaround to 0.12.0
9
10 Closes: https://bugs.gentoo.org/709296
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 dev-python/zstandard/zstandard-0.12.0.ebuild | 5 +++++
14 1 file changed, 5 insertions(+)
15
16 diff --git a/dev-python/zstandard/zstandard-0.12.0.ebuild b/dev-python/zstandard/zstandard-0.12.0.ebuild
17 index cad7581663c..54dced7cd69 100644
18 --- a/dev-python/zstandard/zstandard-0.12.0.ebuild
19 +++ b/dev-python/zstandard/zstandard-0.12.0.ebuild
20 @@ -22,6 +22,11 @@ DEPEND="${RDEPEND}
21 dev-python/setuptools[${PYTHON_USEDEP}]
22 test? ( dev-python/hypothesis[${PYTHON_USEDEP}] )"
23
24 +python_compile() {
25 + local MAKEOPTS=-j1
26 + distutils-r1_python_compile
27 +}
28 +
29 python_test() {
30 esetup.py test
31 }