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 9FFA5158041 for ; Wed, 13 Mar 2024 21:04:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8660CE29D6; Wed, 13 Mar 2024 21:04:44 +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 62E93E29D6 for ; Wed, 13 Mar 2024 21:04:44 +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 A991B343014 for ; Wed, 13 Mar 2024 21:04:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03EC2151C for ; Wed, 13 Mar 2024 21:04:41 +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: <1710363847.2c3538475e38700f080333f9bcc50748036b7055.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/audiotools/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/audiotools/audiotools-3.1.1-r2.ebuild X-VCS-Directories: media-sound/audiotools/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2c3538475e38700f080333f9bcc50748036b7055 X-VCS-Branch: master Date: Wed, 13 Mar 2024 21:04:41 +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: f2effc70-0d50-4bd8-8f5c-6569d3d1b861 X-Archives-Hash: 204cde675069da62d22f422d384467a9 commit: 2c3538475e38700f080333f9bcc50748036b7055 Author: Eli Schwartz gmail com> AuthorDate: Wed Mar 13 19:05:26 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed Mar 13 21:04:07 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c353847 media-sound/audiotools: work around broken parallel building Because setuptools cannot handle two extensions that build the source code, and races. Closes: https://bugs.gentoo.org/860444 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> media-sound/audiotools/audiotools-3.1.1-r2.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/media-sound/audiotools/audiotools-3.1.1-r2.ebuild b/media-sound/audiotools/audiotools-3.1.1-r2.ebuild index 3d93d632d29e..02b83872ef6f 100644 --- a/media-sound/audiotools/audiotools-3.1.1-r2.ebuild +++ b/media-sound/audiotools/audiotools-3.1.1-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -82,6 +82,12 @@ python_compile_all() { emake -C docs } +python_compile() { + # setuptools is broken with parallel builds + local MAKEOPTS=-j1 + distutils-r1_python_compile +} + python_test() { cd test || die "${PYTHON}" test.py || die