Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/doctl/
Date: Wed, 31 Aug 2022 08:42:22
Message-Id: 1661934363.535674e596852ccd6a963692e253c2a93c3c5b1e.juippis@gentoo
1 commit: 535674e596852ccd6a963692e253c2a93c3c5b1e
2 Author: Vladimir Pavljuchenkov (SpiderX) <spiderx <AT> spiderx <DOT> dp <DOT> ua>
3 AuthorDate: Sat Aug 20 17:39:09 2022 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 31 08:26:03 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=535674e5
7
8 app-admin/doctl: version bump to 1.79
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Vladimir Pavljuchenkov <spiderx <AT> spiderx.dp.ua>
12 Closes: https://github.com/gentoo/gentoo/pull/26933
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 app-admin/doctl/Manifest | 1 +
16 app-admin/doctl/doctl-1.79.0.ebuild | 43 +++++++++++++++++++++++++++++++++++++
17 2 files changed, 44 insertions(+)
18
19 diff --git a/app-admin/doctl/Manifest b/app-admin/doctl/Manifest
20 index f1379313e549..f2e3e2f3aa87 100644
21 --- a/app-admin/doctl/Manifest
22 +++ b/app-admin/doctl/Manifest
23 @@ -1 +1,2 @@
24 DIST doctl-1.78.0.tar.gz 5658172 BLAKE2B 3213219b1cfbc395c742a59a6bee1c6232f222455ac126de9ce51470a56ebaa9680de4d332cd31580a7ddb9f748b19a8abadef17ff6ea4265dffc2c42b1bb16d SHA512 193fe775885c78312eb6ba14bd34d109ee31acf41cfe68dbacbf6ab19864509b774c658aecf7a61d470598ca89829a6737ea6796eb970b3075d8f37aef747dbe
25 +DIST doctl-1.79.0.tar.gz 5661873 BLAKE2B 276cf8355f982070e2a44306f0d2bca5c269eccab3d67fe8b1b68171d393bacfb857e78fc66e036b0c039fa4bcf26505c029a1ba5ccebfeebf81d4dc3f51d82f SHA512 8257fc8d32ee097f78420138bd12572235dd7a6cead65fe1a666a9686d2f31add50a85a99fed45aae641b583b47b079a0ea3ce6e9e017c6ecfc7dfc14f7b5abd
26
27 diff --git a/app-admin/doctl/doctl-1.79.0.ebuild b/app-admin/doctl/doctl-1.79.0.ebuild
28 new file mode 100644
29 index 000000000000..3f5680240a83
30 --- /dev/null
31 +++ b/app-admin/doctl/doctl-1.79.0.ebuild
32 @@ -0,0 +1,43 @@
33 +# Copyright 1999-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +inherit bash-completion-r1 edo go-module
39 +
40 +DESCRIPTION="A command line tool for DigitalOcean services"
41 +HOMEPAGE="https://github.com/digitalocean/doctl"
42 +SRC_URI="https://github.com/digitalocean/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0 MIT BSD BSD-2 ISC MPL-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +src_compile() {
49 + LDFLAGS="-X github.com/digitalocean/doctl.Major=$(ver_cut 1)
50 + -X github.com/digitalocean/doctl.Minor=$(ver_cut 2)
51 + -X github.com/digitalocean/doctl.Patch=$(ver_cut 3-)
52 + -X github.com/digitalocean/doctl.Label=release"
53 + GOFLAGS="-v -x -mod=vendor" ego build -ldflags "$LDFLAGS" ./cmd/...
54 +
55 + local completion
56 + for completion in bash zsh fish ; do
57 + edo ./doctl completion ${completion} > doctl.${completion} \
58 + || die "completion for ${completion} failed"
59 + done
60 +}
61 +
62 +src_test() {
63 + GOFLAGS="-v -x -mod=vendor" ego test -work ./do/... ./pkg/... .
64 +}
65 +
66 +src_install() {
67 + einstalldocs
68 + dobin doctl
69 +
70 + newbashcomp doctl.bash doctl
71 + insinto /usr/share/zsh/site-functions
72 + newins doctl.zsh _doctl
73 + insinto /usr/share/fish/completion
74 + newins doctl.fish doctl
75 +}