app-emulation/docker: set go1.13 in DOCKER_BUILDTAGS

Since Docker >= 19.03.9 started to depend on github.com/pkg/errors
v0.9.1 or newer, it is now necessary to set `go1.13` in
`DOCKER_BUILDTAGS`. Otherwise, it cannot find `Is` function.

See also https://github.com/pkg/errors/blob/v0.9.1/go113.go#L16 .
This commit is contained in:
Dongsu Park 2020-06-03 11:10:08 +02:00
parent 0ffea1943b
commit 61aa059a13

View File

@ -4,7 +4,7 @@
EAPI=6 EAPI=6
COREOS_GO_PACKAGE="github.com/docker/docker-ce" COREOS_GO_PACKAGE="github.com/docker/docker-ce"
COREOS_GO_VERSION="go1.12" COREOS_GO_VERSION="go1.13"
if [[ ${PV} = *9999* ]]; then if [[ ${PV} = *9999* ]]; then
# Docker cannot be fetched via "go get", thanks to autogenerated code # Docker cannot be fetched via "go get", thanks to autogenerated code
@ -231,6 +231,10 @@ src_compile() {
fi fi
done done
# need to set go1.13 in DOCKER_BUILDTAGS, to avoid build
# failures caused by github.com/pkg/errors >= 0.9.1.
DOCKER_BUILDTAGS+=" go1.13"
pushd components/engine || die pushd components/engine || die
if use hardened; then if use hardened; then