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 2294F158043 for ; Wed, 17 Apr 2024 12:12:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C66EE29D5; Wed, 17 Apr 2024 12:12:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2FDECE29D5 for ; Wed, 17 Apr 2024 12:12:19 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 29FE734346B for ; Wed, 17 Apr 2024 12:12:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8841916D3 for ; Wed, 17 Apr 2024 12:12:16 +0000 (UTC) From: "Matthew Smith" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" Message-ID: <1713355687.e381bf9e679293683f3ba523a07455a0d296f482.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/rabbitmq-server/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/rabbitmq-server/rabbitmq-server-3.13.1.ebuild X-VCS-Directories: net-misc/rabbitmq-server/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: e381bf9e679293683f3ba523a07455a0d296f482 X-VCS-Branch: master Date: Wed, 17 Apr 2024 12:12:16 +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: 22b73322-e1c8-49fa-a979-12f728a42aae X-Archives-Hash: 2fc7f08a247ad88a02413e608e9f24c5 commit: e381bf9e679293683f3ba523a07455a0d296f482 Author: Matthew Smith gentoo org> AuthorDate: Wed Apr 17 12:08:07 2024 +0000 Commit: Matthew Smith gentoo org> CommitDate: Wed Apr 17 12:08:07 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e381bf9e net-misc/rabbitmq-server: disable parallel make Missing dependencies causes 'no such file or directory' issue when copying .beam files around. Issue is reliably reproducible with MAKEOPTS='-j --shuffle=reverse'. Closes: https://bugs.gentoo.org/930133 Closes: https://bugs.gentoo.org/930098 Closes: https://bugs.gentoo.org/930093 Signed-off-by: Matthew Smith gentoo.org> net-misc/rabbitmq-server/rabbitmq-server-3.13.1.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/net-misc/rabbitmq-server/rabbitmq-server-3.13.1.ebuild b/net-misc/rabbitmq-server/rabbitmq-server-3.13.1.ebuild index 958f619bf72b..606e75d85213 100644 --- a/net-misc/rabbitmq-server/rabbitmq-server-3.13.1.ebuild +++ b/net-misc/rabbitmq-server/rabbitmq-server-3.13.1.ebuild @@ -40,7 +40,11 @@ pkg_setup() { } src_compile() { - emake all docs dist + # Disable parallel make + # https://bugs.gentoo.org/930093 + # https://bugs.gentoo.org/930098 + # https://bugs.gentoo.org/930133 + emake -j1 all docs dist } src_install() {