commit:     7984452304a545f1c5bf8f0072b76698d7559130
Author:     William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Mon Apr  4 15:20:13 2022 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Mon Apr  4 15:28:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79844523

app-containers/docker-cli: add 20.10.14

Signed-off-by: William Hubbs <williamh <AT> gentoo.org>

 app-containers/docker-cli/Manifest                 |  1 +
 .../docker-cli/docker-cli-20.10.14.ebuild          | 65 ++++++++++++++++++++++
 2 files changed, 66 insertions(+)

diff --git a/app-containers/docker-cli/Manifest 
b/app-containers/docker-cli/Manifest
index ba2105d6dbba..f6f3becb9c21 100644
--- a/app-containers/docker-cli/Manifest
+++ b/app-containers/docker-cli/Manifest
@@ -1,2 +1,3 @@
 DIST docker-cli-20.10.12.tar.gz 7527161 BLAKE2B 
34a90f6df9f43507461307817e72cfb9e37f88d00e6fc50b8b16f3db9c573e54edc2eb2641ff4e091a2a73e936f8844011520efe5aaec37a9eb9880f5f81c51a
 SHA512 
ac7c997f5751f2e34b9bcb9f026d3d0c2cd58c32a13e9255536b0eb0d7eabd81c42f2d608c0fe7725322b619f2360818b08379e847d598dd0bec570602ad224f
+DIST docker-cli-20.10.14.tar.gz 7508390 BLAKE2B 
b268a329450540c2e94eced7e7b7bb9387cd208c68bde82607fc56e1f0529d8ca35bb8c16839154443d950c21b0625a13aa8547d9f3053ed19645da683f14419
 SHA512 
f8b7f1040eccd404e39ec33bcef8bb8423636b0695af65f84c0612e77223844892d219f82cfbb99ccd5326e228f8af27be1870d90ebace77810ea5fce9f86e4a
 DIST docker-cli-20.10.9.tar.gz 7525889 BLAKE2B 
7b12f81ed98ed416fb00211b9e6d965ed3209fd83db17a98bef7fef0eb56b27f495093facb3d43e40ec651568a7d83dd484c014c998e046a57662087b1d7c2c6
 SHA512 
0a9bd36c139bb5e1cd4a975913aa5429ffce8c746d2104aa2a54d937c67073ddaa2a8a5e93d71d2d435459af58168de0e7e3a44fd452da535f3995738da206df

diff --git a/app-containers/docker-cli/docker-cli-20.10.14.ebuild 
b/app-containers/docker-cli/docker-cli-20.10.14.ebuild
new file mode 100644
index 000000000000..df9b9f0a7ea9
--- /dev/null
+++ b/app-containers/docker-cli/docker-cli-20.10.14.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public Lic
+EAPI=7
+GIT_COMMIT=a224086349
+EGO_PN="github.com/docker/cli"
+MY_PV=${PV/_/-}
+inherit bash-completion-r1  golang-vcs-snapshot
+
+DESCRIPTION="the command line binary for docker"
+HOMEPAGE="https://www.docker.com/";
+SRC_URI="https://github.com/docker/cli/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+IUSE="hardened"
+
+RDEPEND="!<app-containers/docker-20.10.1"
+BDEPEND="
+       >=dev-lang/go-1.16.6
+       dev-go/go-md2man"
+
+RESTRICT="installsources strip test"
+
+S="${WORKDIR}/${P}/src/${EGO_PN}"
+
+src_prepare() {
+       default
+       sed -i 's@dockerd\?\.exe@@g' contrib/completion/bash/docker || die
+}
+
+src_compile() {
+       export DISABLE_WARN_OUTSIDE_CONTAINER=1
+       export GOPATH="${WORKDIR}/${P}"
+       # setup CFLAGS and LDFLAGS for separate build target
+       # see https://github.com/tianon/docker-overlay/pull/10
+       export CGO_CFLAGS="-I${ESYSROOT}/usr/include"
+       export CGO_LDFLAGS="-L${ESYSROOT}/usr/$(get_libdir)"
+               emake \
+               LDFLAGS="$(usex hardened '-extldflags -fno-PIC' '')" \
+               VERSION="${PV}" \
+               GITCOMMIT="${GIT_COMMIT}" \
+               dynbinary
+
+       # build man pages
+       # see "cli/scripts/docs/generate-man.sh" (which also does "go get" for 
go-md2man)
+       mkdir -p ./man/man1 || die "mkdir failed"
+       go build -o "${T}"/gen-manpages ./man ||
+               die 'build gen-manpages failed'
+       "${T}"/gen-manpages --root "$(pwd)" --target "$(pwd)"/man/man1 ||
+               die 'gen-manpages failed'
+       ./man/md2man-all.sh -q ||
+               die 'md2man-all.sh failed'
+}
+
+src_install() {
+       dobin build/docker
+       doman man/man*/*
+       dobashcomp contrib/completion/bash/*
+       bashcomp_alias docker dockerd
+       insinto /usr/share/fish/vendor_completions.d/
+       doins contrib/completion/fish/docker.fish
+       insinto /usr/share/zsh/site-functions
+       doins contrib/completion/zsh/_*
+}

Reply via email to