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 3E06F1382C5 for ; Tue, 25 May 2021 23:27:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C318E070D; Tue, 25 May 2021 23:27:24 +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 550D3E0636 for ; Tue, 25 May 2021 23:27:24 +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 75579340DF0 for ; Tue, 25 May 2021 23:27:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D3FCFA5 for ; Tue, 25 May 2021 23:27:21 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1621985234.4675bc1a2c77f36edd2c58e5076923382625e0a8.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/containerd/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/containerd/containerd-1.3.7.ebuild app-emulation/containerd/containerd-1.3.9.ebuild app-emulation/containerd/containerd-1.4.4.ebuild X-VCS-Directories: app-emulation/containerd/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 4675bc1a2c77f36edd2c58e5076923382625e0a8 X-VCS-Branch: master Date: Tue, 25 May 2021 23:27:21 +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: 2eec8864-de6d-403b-9267-b9ff3ebf5e4b X-Archives-Hash: 8d419dbb1e0c54bf2355d67f3cc613ae commit: 4675bc1a2c77f36edd2c58e5076923382625e0a8 Author: Georgy Yakovlev gentoo org> AuthorDate: Tue May 25 23:26:51 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Tue May 25 23:27:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4675bc1a app-emulation/containerd: work around makefile race condition Closes: https://bugs.gentoo.org/765100 Package-Manager: Portage-3.0.19, Repoman-3.0.3 Signed-off-by: Georgy Yakovlev gentoo.org> app-emulation/containerd/containerd-1.3.7.ebuild | 3 ++- app-emulation/containerd/containerd-1.3.9.ebuild | 3 ++- app-emulation/containerd/containerd-1.4.4.ebuild | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/app-emulation/containerd/containerd-1.3.7.ebuild b/app-emulation/containerd/containerd-1.3.7.ebuild index bd5fea0fe6c..de9c94b3557 100644 --- a/app-emulation/containerd/containerd-1.3.7.ebuild +++ b/app-emulation/containerd/containerd-1.3.7.ebuild @@ -66,7 +66,8 @@ src_compile() { export GOPATH="${WORKDIR}/${P}" # ${PWD}/vendor export GOFLAGS="-v -x -mod=vendor" - emake "${myemakeargs[@]}" all man + emake "${myemakeargs[@]}" man -j1 #nowarn https://bugs.gentoo.org/765100 + emake "${myemakeargs[@]}" all } src_install() { diff --git a/app-emulation/containerd/containerd-1.3.9.ebuild b/app-emulation/containerd/containerd-1.3.9.ebuild index c494ec62692..ce0733b1086 100644 --- a/app-emulation/containerd/containerd-1.3.9.ebuild +++ b/app-emulation/containerd/containerd-1.3.9.ebuild @@ -66,7 +66,8 @@ src_compile() { export GOPATH="${WORKDIR}/${P}" # ${PWD}/vendor export GOFLAGS="-v -x -mod=vendor" - emake "${myemakeargs[@]}" all man + emake "${myemakeargs[@]}" man -j1 #nowarn https://bugs.gentoo.org/765100 + emake "${myemakeargs[@]}" all } src_install() { diff --git a/app-emulation/containerd/containerd-1.4.4.ebuild b/app-emulation/containerd/containerd-1.4.4.ebuild index d4d947ad8f1..18c54a20724 100644 --- a/app-emulation/containerd/containerd-1.4.4.ebuild +++ b/app-emulation/containerd/containerd-1.4.4.ebuild @@ -63,7 +63,8 @@ src_compile() { export GOPATH="${WORKDIR}/${P}" # ${PWD}/vendor export GOFLAGS="-v -x -mod=vendor" - emake "${myemakeargs[@]}" all man + emake "${myemakeargs[@]}" man -j1 #nowarn https://bugs.gentoo.org/765100 + emake "${myemakeargs[@]}" all } src_install() {