From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7AE52138334 for ; Mon, 16 Dec 2019 10:15:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4604AE087F; Mon, 16 Dec 2019 10:15:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EBCCDE087A for ; Mon, 16 Dec 2019 10:14:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1EA4734D87B for ; Mon, 16 Dec 2019 10:14:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4909598F for ; Mon, 16 Dec 2019 10:14:56 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1576491289.addcc56755a54b869f591100c87bf98152e2fd21.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/psutil/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/psutil/psutil-5.6.7.ebuild X-VCS-Directories: dev-python/psutil/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: addcc56755a54b869f591100c87bf98152e2fd21 X-VCS-Branch: master Date: Mon, 16 Dec 2019 10:14:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 284441bd-8e4b-452a-b33f-900519cd29a0 X-Archives-Hash: 9314e5e9111ca8f7ef9e7cce694f3f7e commit: addcc56755a54b869f591100c87bf98152e2fd21 Author: Michał Górny gentoo org> AuthorDate: Mon Dec 16 10:09:56 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Dec 16 10:14:49 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=addcc567 dev-python/psutil: Force -j1 Signed-off-by: Michał Górny gentoo.org> dev-python/psutil/psutil-5.6.7.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-python/psutil/psutil-5.6.7.ebuild b/dev-python/psutil/psutil-5.6.7.ebuild index 4d56ce828c3..35ea4c888d6 100644 --- a/dev-python/psutil/psutil-5.6.7.ebuild +++ b/dev-python/psutil/psutil-5.6.7.ebuild @@ -39,3 +39,9 @@ python_test() { TRAVIS=1 APPVEYOR=1 "${EPYTHON}" psutil/tests/__main__.py || die "tests failed with ${EPYTHON}" } + +python_compile() { + # force -j1 to avoid .o linking race conditions + local MAKEOPTS=-j1 + distutils-r1_python_compile +}