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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A8CB715800F for ; Mon, 6 Feb 2023 05:27:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E56D9E077F; Mon, 6 Feb 2023 05:27:08 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5E7A2E077F for ; Mon, 6 Feb 2023 05:27:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8409F340C54 for ; Mon, 6 Feb 2023 05:27:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E5A8893 for ; Mon, 6 Feb 2023 05:27:05 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1675661191.9cab7f29a9f1ecd74c9e873b344fba255cbb390f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycparser/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pycparser/pycparser-2.21-r1.ebuild X-VCS-Directories: dev-python/pycparser/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9cab7f29a9f1ecd74c9e873b344fba255cbb390f X-VCS-Branch: master Date: Mon, 6 Feb 2023 05:27:05 +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: 0f55a8e2-d72e-4947-9e29-9c5249ae6745 X-Archives-Hash: 57bab8e3be843125fb1a40406cade790 commit: 9cab7f29a9f1ecd74c9e873b344fba255cbb390f Author: Sam James gentoo org> AuthorDate: Mon Feb 6 05:26:31 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon Feb 6 05:26:31 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cab7f29 dev-python/pycparser: force -j1 Closes: https://bugs.gentoo.org/701878 Signed-off-by: Sam James gentoo.org> dev-python/pycparser/pycparser-2.21-r1.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-python/pycparser/pycparser-2.21-r1.ebuild b/dev-python/pycparser/pycparser-2.21-r1.ebuild index 1b0d8e6f6901..3b32ad92c905 100644 --- a/dev-python/pycparser/pycparser-2.21-r1.ebuild +++ b/dev-python/pycparser/pycparser-2.21-r1.ebuild @@ -43,6 +43,9 @@ python_prepare_all() { rm tests/test_examples.py || die + # bug #701878 + MAKEOPTS+=" -j1" + distutils-r1_python_prepare_all }