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: Mon, 07 Sep 2020 12:47:52
Message-Id: 1599482863.6be079f961c98ceb75e7c551bbba37de695466db.ago@gentoo
1 commit: 6be079f961c98ceb75e7c551bbba37de695466db
2 Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 7 12:47:43 2020 +0000
4 Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 7 12:47:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6be079f9
7
8 app-admin/exo: remove old
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.23
11 Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
12
13 app-admin/exo/Manifest | 1 -
14 app-admin/exo/exo-1.16.1.ebuild | 36 ------------------------------------
15 2 files changed, 37 deletions(-)
16
17 diff --git a/app-admin/exo/Manifest b/app-admin/exo/Manifest
18 index 4a7ad96b929..7ebd9c99ee2 100644
19 --- a/app-admin/exo/Manifest
20 +++ b/app-admin/exo/Manifest
21 @@ -1,2 +1 @@
22 -DIST exo-1.16.1.tar.gz 4247537 BLAKE2B e7990c51abec26ee486fa3ed08af168f2dc2ae5747cc8770d9bca2baeb151caa8075c903c742c3a19431587e483e1ec324ae46b95bdf71901f5e5cb4baac2f57 SHA512 63caf78a3c79d47dac956b3b35d0e84e86782f6d2c3bb57c2435dc457c91dab26cb5754fdd41bff80c5a336c81031d138a88519a38fb639b511b6692066d8d90
23 DIST exo-1.17.0.tar.gz 4399134 BLAKE2B d065cdbe698792afe19e1058c3e0e6c112c8ed66a0fdab8b182918022cc10cf51d4d1eb8eff42c2ff27250cbde56b627110f9b581e73d7ccbe32746081bf6de7 SHA512 2a60c80c87d9ca33dc3708c4c60b6219431751a522a9e5869fe255c1c68247c0863e9f098cc85c4652ad1ffde08386634d5374c4ddb2c82828f201a37a214075
24
25 diff --git a/app-admin/exo/exo-1.16.1.ebuild b/app-admin/exo/exo-1.16.1.ebuild
26 deleted file mode 100644
27 index 0c2c8d861fe..00000000000
28 --- a/app-admin/exo/exo-1.16.1.ebuild
29 +++ /dev/null
30 @@ -1,36 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -DESCRIPTION="Command-line tool for everything at Exoscale: compute, storage, dns."
37 -HOMEPAGE="https://github.com/exoscale/cli"
38 -SRC_URI="https://github.com/exoscale/cli/archive/v${PV}.tar.gz -> ${P}.tar.gz"
39 -
40 -LICENSE="Apache-2.0"
41 -SLOT="0"
42 -KEYWORDS="~amd64"
43 -
44 -IUSE=""
45 -DEPEND="dev-lang/go:="
46 -RESTRICT="strip"
47 -QA_FLAGS_IGNORED=".*"
48 -
49 -S="${WORKDIR}/cli-${PV}"
50 -
51 -src_compile() {
52 - go build -mod vendor -o ${PN} || die "build failed"
53 -}
54 -
55 -src_test() {
56 - # run at least 'exo version' for test
57 - ./exo version > /dev/null 2>&1
58 - if [[ $? -ne 0 ]]
59 - then
60 - die "Test failed"
61 - fi
62 -}
63 -
64 -src_install() {
65 - dobin ${PN}
66 -}