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 71D86158043 for ; Fri, 19 Apr 2024 12:45:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4FC86E29E2; Fri, 19 Apr 2024 12:44:59 +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 329C6E29E2 for ; Fri, 19 Apr 2024 12:44:59 +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 216DC34311D for ; Fri, 19 Apr 2024 12:44:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B27A172B for ; Fri, 19 Apr 2024 12:44:56 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1713530692.935dee83f1a4e64c0a72cd00d6e1f772c8441fd1.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/nim/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/nim/nim-1.6.14-r1.ebuild dev-lang/nim/nim-2.0.4.ebuild X-VCS-Directories: dev-lang/nim/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 935dee83f1a4e64c0a72cd00d6e1f772c8441fd1 X-VCS-Branch: master Date: Fri, 19 Apr 2024 12:44: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: 2487fef1-e448-4ed7-8e34-ce7df09b3aee X-Archives-Hash: 500d8ebd324ceb5e6af3d2e268ca5146 commit: 935dee83f1a4e64c0a72cd00d6e1f772c8441fd1 Author: Maciej Barć gentoo org> AuthorDate: Fri Apr 19 12:07:48 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Fri Apr 19 12:44:52 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=935dee83 dev-lang/nim: wait longer for parallel Closes: https://bugs.gentoo.org/930200 Closes: https://bugs.gentoo.org/889604 Signed-off-by: Maciej Barć gentoo.org> dev-lang/nim/nim-1.6.14-r1.ebuild | 10 ++++++---- dev-lang/nim/nim-2.0.4.ebuild | 6 +++--- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/dev-lang/nim/nim-1.6.14-r1.ebuild b/dev-lang/nim/nim-1.6.14-r1.ebuild index 58e6390b88ed..07e043cf4ffb 100644 --- a/dev-lang/nim/nim-1.6.14-r1.ebuild +++ b/dev-lang/nim/nim-1.6.14-r1.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 @@ -104,12 +104,14 @@ src_compile() { edo ./build.sh --parallel "$(makeopts_jobs)" - ebegin "Waiting for unfinished jobs" - while [[ ! -f "bin/nim" ]]; do - sleep 1 + ebegin "Waiting for unfinished parallel jobs" + while [[ ! -f "bin/nim" ]] ; do + sleep 3 done + sleep 10 eend 0 + edo chmod +x ./bin/nim edo ./bin/nim compile koch edo ./koch boot -d:nimUseLinenoise --skipParentCfg:off edo ./koch tools diff --git a/dev-lang/nim/nim-2.0.4.ebuild b/dev-lang/nim/nim-2.0.4.ebuild index 706b0d3df3cf..192bb90437ae 100644 --- a/dev-lang/nim/nim-2.0.4.ebuild +++ b/dev-lang/nim/nim-2.0.4.ebuild @@ -86,12 +86,12 @@ src_compile() { ebegin "Waiting for unfinished parallel jobs" while [[ ! -f "bin/nim" ]] ; do - sleep 1 + sleep 3 done + sleep 10 eend 0 - chmod +x ./bin/nim || die - + edo chmod +x ./bin/nim edo ./bin/nim compile -d:release koch edo ./koch boot -d:nimUseLinenoise -d:release --skipParentCfg:off edo ./koch tools -d:release