app-admin/exo: remove old

Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
This commit is contained in:
Agostino Sarubbo 2025-07-08 11:59:52 +02:00
parent c5ba298fdf
commit 482ae4a08f
No known key found for this signature in database
GPG Key ID: EC7C8D80008F261A
2 changed files with 0 additions and 36 deletions

View File

@ -1,2 +1 @@
DIST exo-1.84.1.gh.tar.gz 11310617 BLAKE2B 327294f5828f8b94bccd543926c2bb87f1a6b286efd16b579133ed63ceca09280d88c7d7dd3f3330174ebfa817696acb9c628d6cee2ba83d79466c28870e467b SHA512 1ec64fabb0b53b6094d6e74a14ba38fc3e8a1771defbbe5d175342123de31a0bb88e13914e04153ca5a60493085b206fd6069887fd937c2188390317372e86c8
DIST exo-1.85.3.gh.tar.gz 11314042 BLAKE2B 9426906a97280c7fbfb6ba70d1e87f93a7f4a46f7893af137045311ffc36f989da1291562506d87f8a2f768988e9be1c663c0a6c54a051f44dd21660a4937aaf SHA512 d9cd1b5eef3bd1732cb06d858ca090fbe934c260e1f7a94a37052425ff83f7fbde4648968177919a504ee783a0ebf43a5f77c33f84f2f5604668c73724c85d7b

View File

@ -1,35 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
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}.gh.tar.gz"
S="${WORKDIR}/cli-${PV}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
DEPEND=">=dev-lang/go-1.16:="
RESTRICT="strip"
src_compile() {
ego build -mod vendor -o ${PN} -ldflags "-X main.version=${PVR}-gentoo -X main.commit="
}
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}
}