From 28f2b152e4d6e64f48105a3d102d770d896b5832 Mon Sep 17 00:00:00 2001 From: Jeremi Piotrowski Date: Fri, 20 Aug 2021 09:13:27 +0000 Subject: [PATCH] app-emulation/docker-runc: switch to building with go1.16 Upstream builds with go1.16. Additionally fixup the VERSION variable specify the current Flatcar Docker version 20.10. Signed-off-by: Jeremi Piotrowski --- .../app-emulation/docker-runc/docker-runc-1.0.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk_container/src/third_party/coreos-overlay/app-emulation/docker-runc/docker-runc-1.0.1.ebuild b/sdk_container/src/third_party/coreos-overlay/app-emulation/docker-runc/docker-runc-1.0.1.ebuild index 071dfb4f36..5b4795f612 100644 --- a/sdk_container/src/third_party/coreos-overlay/app-emulation/docker-runc/docker-runc-1.0.1.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/app-emulation/docker-runc/docker-runc-1.0.1.ebuild @@ -5,7 +5,7 @@ EAPI=6 GITHUB_URI="github.com/opencontainers/runc" COREOS_GO_PACKAGE="${GITHUB_URI}" -COREOS_GO_VERSION="go1.13" +COREOS_GO_VERSION="go1.16" # the commit of runc that docker uses. # see https://github.com/docker/docker-ce/blob/v19.03.15/components/engine/hack/dockerfile/install/runc.installer#L4 COMMIT_ID="47e597c3eb2f002299eb9be6c8476194a92e9595" @@ -55,7 +55,7 @@ src_compile() { ) GOPATH="${WORKDIR}/${P}" emake BUILDTAGS="${options[*]}" \ - VERSION=1.0.1+dev.docker-19.03 \ + VERSION=1.0.1+dev.docker-20.10 \ COMMIT="${COMMIT_ID}" }