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:23
Message-Id: 1661934363.d2cd81e26638564999e063d1d780a5edd4f3d3a6.juippis@gentoo
1 commit: d2cd81e26638564999e063d1d780a5edd4f3d3a6
2 Author: Vladimir Pavljuchenkov (SpiderX) <spiderx <AT> spiderx <DOT> dp <DOT> ua>
3 AuthorDate: Sat Aug 20 17:38:06 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=d2cd81e2
7
8 app-admin/doctl: drop old ebuilds
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Vladimir Pavljuchenkov <spiderx <AT> spiderx.dp.ua>
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 app-admin/doctl/Manifest | 2 --
15 app-admin/doctl/doctl-1.76.2.ebuild | 42 ------------------------------------
16 app-admin/doctl/doctl-1.77.0.ebuild | 43 -------------------------------------
17 3 files changed, 87 deletions(-)
18
19 diff --git a/app-admin/doctl/Manifest b/app-admin/doctl/Manifest
20 index 36810eadc6d9..f1379313e549 100644
21 --- a/app-admin/doctl/Manifest
22 +++ b/app-admin/doctl/Manifest
23 @@ -1,3 +1 @@
24 -DIST doctl-1.76.2.tar.gz 5648377 BLAKE2B 1ec89adb5ad187ccc6b66d077dda57ca4065bc1a5981a0f2549913532f6bcc6d1f48c3cc56c100c1b6c55f698ffcf3f2c639888ccaab30948384ce800181b332 SHA512 d7efc587843cd87f3ac17b974858ea688377ca6f0cd3d4b7430c47a1e8b825cc05f4d9107d7062f5e52fe3c267ec6bbd19a8b1d773a15f1d7ab653087ce13bba
25 -DIST doctl-1.77.0.tar.gz 5654010 BLAKE2B 809189c9fdfa1e81e75847e57fe5967f0d3ca476fdb7a2e72ffba1b4bb81ecdc2ce07b4b05f4f1f898104cd9e919d6bdba664d4ae0cc97adea6863379789aa08 SHA512 a53e8e3179ec467cd0617a25ab985fe36e41135a824688a947b15c0565fb2d8364c59a295573043039b79b701bb4d5a9ec5461450fa0e7c5a24f10ece53c6f71
26 DIST doctl-1.78.0.tar.gz 5658172 BLAKE2B 3213219b1cfbc395c742a59a6bee1c6232f222455ac126de9ce51470a56ebaa9680de4d332cd31580a7ddb9f748b19a8abadef17ff6ea4265dffc2c42b1bb16d SHA512 193fe775885c78312eb6ba14bd34d109ee31acf41cfe68dbacbf6ab19864509b774c658aecf7a61d470598ca89829a6737ea6796eb970b3075d8f37aef747dbe
27
28 diff --git a/app-admin/doctl/doctl-1.76.2.ebuild b/app-admin/doctl/doctl-1.76.2.ebuild
29 deleted file mode 100644
30 index 5aae02dd1956..000000000000
31 --- a/app-admin/doctl/doctl-1.76.2.ebuild
32 +++ /dev/null
33 @@ -1,42 +0,0 @@
34 -# Copyright 1999-2022 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=8
38 -
39 -inherit edo bash-completion-r1 go-module
40 -
41 -DESCRIPTION="A command line tool for DigitalOcean services"
42 -HOMEPAGE="https://github.com/digitalocean/doctl"
43 -SRC_URI="https://github.com/digitalocean/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="Apache-2.0 MIT BSD BSD-2 ISC MPL-2.0"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~x86"
48 -
49 -src_compile() {
50 - LDFLAGS="-X github.com/digitalocean/doctl.Major=$(ver_cut 1)
51 - -X github.com/digitalocean/doctl.Minor=$(ver_cut 2)
52 - -X github.com/digitalocean/doctl.Patch=$(ver_cut 3-)
53 - -X github.com/digitalocean/doctl.Label=release"
54 - GOFLAGS="-v -x -mod=vendor" ego build -ldflags "${LDFLAGS}" ./cmd/...
55 -
56 - local completion
57 - for completion in bash zsh fish ; do
58 - edo ./doctl completion ${completion} > doctl.${completion} || 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 -}
76
77 diff --git a/app-admin/doctl/doctl-1.77.0.ebuild b/app-admin/doctl/doctl-1.77.0.ebuild
78 deleted file mode 100644
79 index 3f5680240a83..000000000000
80 --- a/app-admin/doctl/doctl-1.77.0.ebuild
81 +++ /dev/null
82 @@ -1,43 +0,0 @@
83 -# Copyright 1999-2022 Gentoo Authors
84 -# Distributed under the terms of the GNU General Public License v2
85 -
86 -EAPI=8
87 -
88 -inherit bash-completion-r1 edo go-module
89 -
90 -DESCRIPTION="A command line tool for DigitalOcean services"
91 -HOMEPAGE="https://github.com/digitalocean/doctl"
92 -SRC_URI="https://github.com/digitalocean/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
93 -
94 -LICENSE="Apache-2.0 MIT BSD BSD-2 ISC MPL-2.0"
95 -SLOT="0"
96 -KEYWORDS="~amd64 ~x86"
97 -
98 -src_compile() {
99 - LDFLAGS="-X github.com/digitalocean/doctl.Major=$(ver_cut 1)
100 - -X github.com/digitalocean/doctl.Minor=$(ver_cut 2)
101 - -X github.com/digitalocean/doctl.Patch=$(ver_cut 3-)
102 - -X github.com/digitalocean/doctl.Label=release"
103 - GOFLAGS="-v -x -mod=vendor" ego build -ldflags "$LDFLAGS" ./cmd/...
104 -
105 - local completion
106 - for completion in bash zsh fish ; do
107 - edo ./doctl completion ${completion} > doctl.${completion} \
108 - || die "completion for ${completion} failed"
109 - done
110 -}
111 -
112 -src_test() {
113 - GOFLAGS="-v -x -mod=vendor" ego test -work ./do/... ./pkg/... .
114 -}
115 -
116 -src_install() {
117 - einstalldocs
118 - dobin doctl
119 -
120 - newbashcomp doctl.bash doctl
121 - insinto /usr/share/zsh/site-functions
122 - newins doctl.zsh _doctl
123 - insinto /usr/share/fish/completion
124 - newins doctl.fish doctl
125 -}