summaryrefslogtreecommitdiff
blob: 264b5170d9152672ca14567b40339bbf68ea5880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

EGIT_REPO_URI="https://github.com/digitalocean/${PN}.git"

inherit bash-completion-r1 git-r3 go-module

DESCRIPTION="A command line tool for DigitalOcean services"
HOMEPAGE="https://github.com/digitalocean/doctl"
SRC_URI=""

LICENSE="Apache-2.0 MIT BSD BSD-2 ISC MPL-2.0"
SLOT="0"
KEYWORDS=""

src_unpack() {
	git-r3_src_unpack
}

src_compile() {
	LDFLAGS="-X github.com/digitalocean/doctl.Build=$(git rev-parse --short HEAD)
		-X github.com/digitalocean/doctl.Label=dev"
	GOFLAGS="-v -x -mod=vendor" \
		go build -ldflags "$LDFLAGS" ./cmd/... || die "build failed"

	./doctl completion bash > doctl.bash || die "completion for bash failed"
	./doctl completion zsh > doctl.zsh || die "completion for sh failed"
	./doctl completion fish > doctl.fish || die "completion for fish failed"
}

src_test() {
	GOFLAGS="-v -x -mod=vendor" \
		go test -work ./do/... ./pkg/... . || die "test failed"
}

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
}