summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAgostino Sarubbo <ago@gentoo.org>2022-06-20 12:49:24 +0200
committerAgostino Sarubbo <ago@gentoo.org>2022-06-20 12:49:24 +0200
commitb760d1996cd91fb44dbbda62e61a2f740fa03af7 (patch)
tree49f20aadcd16b42a94c82f93f27f50a0899d8de4 /app-admin/exo
parentapp-admin/exo: version bump to 1.57.0 (diff)
downloadgentoo-b760d1996cd91fb44dbbda62e61a2f740fa03af7.tar.gz
gentoo-b760d1996cd91fb44dbbda62e61a2f740fa03af7.tar.bz2
gentoo-b760d1996cd91fb44dbbda62e61a2f740fa03af7.zip
app-admin/exo: remove old
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
Diffstat (limited to 'app-admin/exo')
-rw-r--r--app-admin/exo/Manifest1
-rw-r--r--app-admin/exo/exo-1.56.0.ebuild36
2 files changed, 0 insertions, 37 deletions
diff --git a/app-admin/exo/Manifest b/app-admin/exo/Manifest
index 1200406348e7..112a7b5b5104 100644
--- a/app-admin/exo/Manifest
+++ b/app-admin/exo/Manifest
@@ -1,2 +1 @@
-DIST exo-1.56.0.tar.gz 5602569 BLAKE2B 8bf3b9805d459ce01a7e54d4bfa215c031354992c1b632a78f1b7084497574bd0900ff02592e5cf788b58d06317d3ef03460bd971d3b37339d531bb5b5710a15 SHA512 a6747231f2dd1cdf3ade56d0d62013c2eeb2977c30db53879cf1deb3ca5a8be93bfd89288d7be75aaaa8e47c90946e0b31bc95c7a0fa4a924dbef87931b1bb1d
DIST exo-1.57.0.tar.gz 5604952 BLAKE2B c994b5f8c80985abab21d640195b4c91c7434a28f04e14773402fcf028a2ff83d4d6cf4b0654ba3e4d2db2fb6a82e8cd047ca51ecfaad003aa5e8d8b4b746e33 SHA512 46e64257d865e4b2d6211e587a976ac8ce04de897884ed97b978356051d366820029df8547ad65d0b98bee422da15dbe48373079161e4c2157b58b439097a0ac
diff --git a/app-admin/exo/exo-1.56.0.ebuild b/app-admin/exo/exo-1.56.0.ebuild
deleted file mode 100644
index 6149acedfa18..000000000000
--- a/app-admin/exo/exo-1.56.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2022 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://github.com/exoscale/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"
-QA_FLAGS_IGNORED=".*"
-
-S="${WORKDIR}/cli-${PV}"
-
-src_compile() {
- go build -mod vendor -o ${PN} || die "build failed"
-}
-
-src_test() {
- # run at least 'exo version' for test
- ./exo version > /dev/null 2>&1
- if [[ $? -ne 0 ]]
- then
- die "Test failed"
- fi
-}
-
-src_install() {
- dobin ${PN}
-}