app-admin/exo: version bump to 1.9.0
authorAgostino Sarubbo <ago@gentoo.org>
Sat, 11 Jan 2020 13:59:29 +0000 (14:59 +0100)
committerAgostino Sarubbo <ago@gentoo.org>
Sat, 11 Jan 2020 13:59:29 +0000 (14:59 +0100)
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
app-admin/exo/Manifest
app-admin/exo/exo-1.9.0.ebuild [new file with mode: 0644]

index 96fa85f463f364f053dc05333843b8984818fcd5..4daee8b1021391a7c8a0f6de3258d46b9d51a682 100644 (file)
@@ -1 +1,2 @@
 DIST exo-1.6.0.tar.gz 3754205 BLAKE2B 9dc109ec33e9a11199f49adc45b388e1c3c62ebc060b300568fd42c5b6457b1c0373939b325c0b0be462dfacf3d842a7eca66a01efd8685d6f621401423448ed SHA512 8d00dd24ef8098c156e756d082c039e9753fefc11b415435725f536faa5fa8e4eb652ff8c0c82452ab84512f7491aee970d425910bfcb2529568589e5dc9c6d2
+DIST exo-1.9.0.tar.gz 3805146 BLAKE2B d2626270b6caa31a3c6853a0676a70d05a8165da0d229d44a6245840c76b91dcee0f44361373ff9e36138963cae0bb29245287ed49d155073a957f74049e2d08 SHA512 4c0e909ad86b9c6920e6a7ccd165fe126402399ff751add52720a44def6b43498a3bbaf2c70efaf966dbeb5bf3c41f8b8f73e40b70d3b58b732ec7e701e76871
diff --git a/app-admin/exo/exo-1.9.0.ebuild b/app-admin/exo/exo-1.9.0.ebuild
new file mode 100644 (file)
index 0000000..0af1e75
--- /dev/null
@@ -0,0 +1,26 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Command-line tool for everything at Exoscale: compute, storage, dns."
+HOMEPAGE="https://exoscale.github.io/cli"
+SRC_URI="https://github.com/exoscale/cli/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE=""
+DEPEND="dev-lang/go:="
+RESTRICT="strip"
+
+S="${WORKDIR}/cli-${PV}"
+
+src_compile() {
+       go build -mod vendor -o ${PN} || die "build failed"
+}
+
+src_install() {
+       dobin ${PN}
+}