diff options
author | Vladimir Pavljuchenkov (SpiderX) <spiderx@spiderx.dp.ua> | 2022-08-20 20:39:09 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2022-08-31 11:26:03 +0300 |
commit | 535674e596852ccd6a963692e253c2a93c3c5b1e (patch) | |
tree | 2261dc56ee829b98f6c6215a3993b057885bff69 /app-admin/doctl/doctl-1.79.0.ebuild | |
parent | app-admin/doctl: drop old ebuilds (diff) | |
download | gentoo-535674e596852ccd6a963692e253c2a93c3c5b1e.tar.gz gentoo-535674e596852ccd6a963692e253c2a93c3c5b1e.tar.bz2 gentoo-535674e596852ccd6a963692e253c2a93c3c5b1e.zip |
app-admin/doctl: version bump to 1.79
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Vladimir Pavljuchenkov <spiderx@spiderx.dp.ua>
Closes: https://github.com/gentoo/gentoo/pull/26933
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-admin/doctl/doctl-1.79.0.ebuild')
-rw-r--r-- | app-admin/doctl/doctl-1.79.0.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/app-admin/doctl/doctl-1.79.0.ebuild b/app-admin/doctl/doctl-1.79.0.ebuild new file mode 100644 index 000000000000..3f5680240a83 --- /dev/null +++ b/app-admin/doctl/doctl-1.79.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit bash-completion-r1 edo go-module + +DESCRIPTION="A command line tool for DigitalOcean services" +HOMEPAGE="https://github.com/digitalocean/doctl" +SRC_URI="https://github.com/digitalocean/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0 MIT BSD BSD-2 ISC MPL-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +src_compile() { + LDFLAGS="-X github.com/digitalocean/doctl.Major=$(ver_cut 1) + -X github.com/digitalocean/doctl.Minor=$(ver_cut 2) + -X github.com/digitalocean/doctl.Patch=$(ver_cut 3-) + -X github.com/digitalocean/doctl.Label=release" + GOFLAGS="-v -x -mod=vendor" ego build -ldflags "$LDFLAGS" ./cmd/... + + local completion + for completion in bash zsh fish ; do + edo ./doctl completion ${completion} > doctl.${completion} \ + || die "completion for ${completion} failed" + done +} + +src_test() { + GOFLAGS="-v -x -mod=vendor" ego test -work ./do/... ./pkg/... . +} + +src_install() { + einstalldocs + dobin doctl + + newbashcomp doctl.bash doctl + insinto /usr/share/zsh/site-functions + newins doctl.zsh _doctl + insinto /usr/share/fish/completion + newins doctl.fish doctl +} |