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: Sat, 11 Jan 2020 13:59:56
Message-Id: 1578751169.2887cd9fb8fe1c7cc2b70a7d364af166efbff5a6.ago@gentoo
1 commit: 2887cd9fb8fe1c7cc2b70a7d364af166efbff5a6
2 Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 11 13:59:29 2020 +0000
4 Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 11 13:59:29 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2887cd9f
7
8 app-admin/exo: version bump to 1.9.0
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.16
11 Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
12
13 app-admin/exo/Manifest | 1 +
14 app-admin/exo/exo-1.9.0.ebuild | 26 ++++++++++++++++++++++++++
15 2 files changed, 27 insertions(+)
16
17 diff --git a/app-admin/exo/Manifest b/app-admin/exo/Manifest
18 index 96fa85f463f..4daee8b1021 100644
19 --- a/app-admin/exo/Manifest
20 +++ b/app-admin/exo/Manifest
21 @@ -1 +1,2 @@
22 DIST exo-1.6.0.tar.gz 3754205 BLAKE2B 9dc109ec33e9a11199f49adc45b388e1c3c62ebc060b300568fd42c5b6457b1c0373939b325c0b0be462dfacf3d842a7eca66a01efd8685d6f621401423448ed SHA512 8d00dd24ef8098c156e756d082c039e9753fefc11b415435725f536faa5fa8e4eb652ff8c0c82452ab84512f7491aee970d425910bfcb2529568589e5dc9c6d2
23 +DIST exo-1.9.0.tar.gz 3805146 BLAKE2B d2626270b6caa31a3c6853a0676a70d05a8165da0d229d44a6245840c76b91dcee0f44361373ff9e36138963cae0bb29245287ed49d155073a957f74049e2d08 SHA512 4c0e909ad86b9c6920e6a7ccd165fe126402399ff751add52720a44def6b43498a3bbaf2c70efaf966dbeb5bf3c41f8b8f73e40b70d3b58b732ec7e701e76871
24
25 diff --git a/app-admin/exo/exo-1.9.0.ebuild b/app-admin/exo/exo-1.9.0.ebuild
26 new file mode 100644
27 index 00000000000..0af1e7521f7
28 --- /dev/null
29 +++ b/app-admin/exo/exo-1.9.0.ebuild
30 @@ -0,0 +1,26 @@
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://exoscale.github.io/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 +
48 +S="${WORKDIR}/cli-${PV}"
49 +
50 +src_compile() {
51 + go build -mod vendor -o ${PN} || die "build failed"
52 +}
53 +
54 +src_install() {
55 + dobin ${PN}
56 +}