app-admin/exo: version bump to 1.10.0
authorAgostino Sarubbo <ago@gentoo.org>
Fri, 7 Feb 2020 12:06:03 +0000 (13:06 +0100)
committerAgostino Sarubbo <ago@gentoo.org>
Fri, 7 Feb 2020 12:06:03 +0000 (13:06 +0100)
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
app-admin/exo/Manifest
app-admin/exo/exo-1.10.0.ebuild [new file with mode: 0644]

index 8b548c23571c4a00c3eec4c21350479e4476af77..bb605993d405eead5e407c61aa7ae2e2ca4139c3 100644 (file)
@@ -1 +1,2 @@
+DIST exo-1.10.0.tar.gz 3805637 BLAKE2B fb74d3dadc8be11134bf5929a4ccfa12ac5e0b04854a0d1d74a63ac0b6a25bb5a0c945dfaf7f60141e2fdc0fa0f797c36edccf5d256f0a041ab726644ca324c4 SHA512 ef2e76e2e3d4b41121c00fa6ca869fe62e79c6790c8d7b44733ab1d9fab582989222852ca87849aa760d32db69b105ee528db5bb3dd0b0514a570d982007eb22
 DIST exo-1.9.0.tar.gz 3805146 BLAKE2B d2626270b6caa31a3c6853a0676a70d05a8165da0d229d44a6245840c76b91dcee0f44361373ff9e36138963cae0bb29245287ed49d155073a957f74049e2d08 SHA512 4c0e909ad86b9c6920e6a7ccd165fe126402399ff751add52720a44def6b43498a3bbaf2c70efaf966dbeb5bf3c41f8b8f73e40b70d3b58b732ec7e701e76871
diff --git a/app-admin/exo/exo-1.10.0.ebuild b/app-admin/exo/exo-1.10.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}
+}