Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/containerd/
Date: Tue, 25 May 2021 23:27:26
Message-Id: 1621985234.4675bc1a2c77f36edd2c58e5076923382625e0a8.gyakovlev@gentoo
1 commit: 4675bc1a2c77f36edd2c58e5076923382625e0a8
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 25 23:26:51 2021 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Tue May 25 23:27:14 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4675bc1a
7
8 app-emulation/containerd: work around makefile race condition
9
10 Closes: https://bugs.gentoo.org/765100
11 Package-Manager: Portage-3.0.19, Repoman-3.0.3
12 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
13
14 app-emulation/containerd/containerd-1.3.7.ebuild | 3 ++-
15 app-emulation/containerd/containerd-1.3.9.ebuild | 3 ++-
16 app-emulation/containerd/containerd-1.4.4.ebuild | 3 ++-
17 3 files changed, 6 insertions(+), 3 deletions(-)
18
19 diff --git a/app-emulation/containerd/containerd-1.3.7.ebuild b/app-emulation/containerd/containerd-1.3.7.ebuild
20 index bd5fea0fe6c..de9c94b3557 100644
21 --- a/app-emulation/containerd/containerd-1.3.7.ebuild
22 +++ b/app-emulation/containerd/containerd-1.3.7.ebuild
23 @@ -66,7 +66,8 @@ src_compile() {
24
25 export GOPATH="${WORKDIR}/${P}" # ${PWD}/vendor
26 export GOFLAGS="-v -x -mod=vendor"
27 - emake "${myemakeargs[@]}" all man
28 + emake "${myemakeargs[@]}" man -j1 #nowarn https://bugs.gentoo.org/765100
29 + emake "${myemakeargs[@]}" all
30 }
31
32 src_install() {
33
34 diff --git a/app-emulation/containerd/containerd-1.3.9.ebuild b/app-emulation/containerd/containerd-1.3.9.ebuild
35 index c494ec62692..ce0733b1086 100644
36 --- a/app-emulation/containerd/containerd-1.3.9.ebuild
37 +++ b/app-emulation/containerd/containerd-1.3.9.ebuild
38 @@ -66,7 +66,8 @@ src_compile() {
39
40 export GOPATH="${WORKDIR}/${P}" # ${PWD}/vendor
41 export GOFLAGS="-v -x -mod=vendor"
42 - emake "${myemakeargs[@]}" all man
43 + emake "${myemakeargs[@]}" man -j1 #nowarn https://bugs.gentoo.org/765100
44 + emake "${myemakeargs[@]}" all
45 }
46
47 src_install() {
48
49 diff --git a/app-emulation/containerd/containerd-1.4.4.ebuild b/app-emulation/containerd/containerd-1.4.4.ebuild
50 index d4d947ad8f1..18c54a20724 100644
51 --- a/app-emulation/containerd/containerd-1.4.4.ebuild
52 +++ b/app-emulation/containerd/containerd-1.4.4.ebuild
53 @@ -63,7 +63,8 @@ src_compile() {
54
55 export GOPATH="${WORKDIR}/${P}" # ${PWD}/vendor
56 export GOFLAGS="-v -x -mod=vendor"
57 - emake "${myemakeargs[@]}" all man
58 + emake "${myemakeargs[@]}" man -j1 #nowarn https://bugs.gentoo.org/765100
59 + emake "${myemakeargs[@]}" all
60 }
61
62 src_install() {