Gentoo Archives: gentoo-commits

From: Agostino Sarubbo <ago@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/exo/
Date: Fri, 19 Aug 2022 07:48:34
Message-Id: 1660895305.3b93ccddd4790afc0a5f6b4ce2761c82ba4ed7d8.ago@gentoo
1 commit: 3b93ccddd4790afc0a5f6b4ce2761c82ba4ed7d8
2 Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 19 07:48:25 2022 +0000
4 Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 19 07:48:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b93ccdd
7
8 app-admin/exo: remove old
9
10 Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
11
12 app-admin/exo/Manifest | 1 -
13 app-admin/exo/exo-1.58.0.ebuild | 36 ------------------------------------
14 2 files changed, 37 deletions(-)
15
16 diff --git a/app-admin/exo/Manifest b/app-admin/exo/Manifest
17 index 7cd149725442..8f06b20eaa0f 100644
18 --- a/app-admin/exo/Manifest
19 +++ b/app-admin/exo/Manifest
20 @@ -1,2 +1 @@
21 -DIST exo-1.58.0.tar.gz 5609630 BLAKE2B 266820bd6e51aeaf1bde21b3ecea42e5e7242ffd8b96c60b73316ab938d07764e14e387271f24bb1e71c0692eea11a97deb45e76dfc66a5db82b46a60362bf8a SHA512 5032549d98f9eb9e411387667fe64a75b7ff4f5d830047ebae1cfada2b684fa108e5b945472347d3297f45ef0b2b87baf38750f8f9814cc60af6d08584fce0a3
22 DIST exo-1.59.0.tar.gz 5614442 BLAKE2B 89e7d50e33b7883b697c168d31e376f240873f416045e00fc7918335b9fff497c809b4a6f9301e6f5e633586f59694e73b50a92fea1c16475df379fab9ee7abb SHA512 06789bbb845a06f0c2b185471989f4fffcaba8350c1d6b5b6398fe0dfbb6a2c2729aee8b464328ed95ba0b028de7c238a6343a132d40c57c0c9a7ed06695d4fe
23
24 diff --git a/app-admin/exo/exo-1.58.0.ebuild b/app-admin/exo/exo-1.58.0.ebuild
25 deleted file mode 100644
26 index 6149acedfa18..000000000000
27 --- a/app-admin/exo/exo-1.58.0.ebuild
28 +++ /dev/null
29 @@ -1,36 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -DESCRIPTION="Command-line tool for everything at Exoscale: compute, storage, dns"
36 -HOMEPAGE="https://github.com/exoscale/cli"
37 -SRC_URI="https://github.com/exoscale/cli/archive/v${PV}.tar.gz -> ${P}.tar.gz"
38 -
39 -LICENSE="Apache-2.0"
40 -SLOT="0"
41 -KEYWORDS="~amd64"
42 -
43 -IUSE=""
44 -DEPEND="dev-lang/go:="
45 -RESTRICT="strip"
46 -QA_FLAGS_IGNORED=".*"
47 -
48 -S="${WORKDIR}/cli-${PV}"
49 -
50 -src_compile() {
51 - go build -mod vendor -o ${PN} || die "build failed"
52 -}
53 -
54 -src_test() {
55 - # run at least 'exo version' for test
56 - ./exo version > /dev/null 2>&1
57 - if [[ $? -ne 0 ]]
58 - then
59 - die "Test failed"
60 - fi
61 -}
62 -
63 -src_install() {
64 - dobin ${PN}
65 -}