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, 17 Mar 2023 10:54:39
Message-Id: 1679050466.8cb394c419fe6253560196c3e4e13fe7d9329833.ago@gentoo
1 commit: 8cb394c419fe6253560196c3e4e13fe7d9329833
2 Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 17 10:54:26 2023 +0000
4 Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 17 10:54:26 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cb394c4
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.65.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 f5608765b6ad..1ac14f2c1641 100644
18 --- a/app-admin/exo/Manifest
19 +++ b/app-admin/exo/Manifest
20 @@ -1,2 +1 @@
21 -DIST exo-1.65.0.gh.tar.gz 5540778 BLAKE2B 904d43a70d3aa27bb6fafca685d5bf01a9d918e2141d25266561016a91fc4609aebb15d5aa5e8f3cc771d0faf8ad69eddad58a64861d09295ef95b738b458f84 SHA512 48c5f70e7390edbfa8603d4eb9f94dc7654e3f2c861aaf8a1d75e18a9a27c101a020ddd61d6ed9a67698cbc0a851b772c40d871f4b2c0dca9948ea2f6767efbe
22 DIST exo-1.66.0.gh.tar.gz 5543430 BLAKE2B 26b52cfb118219fa4ee1203cf96c5cbe321eaee86ddbca31ecc9ceb287744b08cbeed659dbb54f8ffa4deadcb03fdea810c24dea11dd1cbbb3f1d1aa3220669e SHA512 3886f2e73d8a6ae41cbbdeb390c4f3036537249d61507cf7e397feeb588bfa70498a49e379933bffe16ef5b7df2018f1b5e975717adb8c65efb8c077a411d15d
23
24 diff --git a/app-admin/exo/exo-1.65.0.ebuild b/app-admin/exo/exo-1.65.0.ebuild
25 deleted file mode 100644
26 index 8b7ec86e5d08..000000000000
27 --- a/app-admin/exo/exo-1.65.0.ebuild
28 +++ /dev/null
29 @@ -1,36 +0,0 @@
30 -# Copyright 1999-2023 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
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}.gh.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} -ldflags "-X main.version=${PVR}-gentoo -X main.commit=" || 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 -}