diff options
author | Agostino Sarubbo <ago@gentoo.org> | 2022-05-04 15:29:19 +0200 |
---|---|---|
committer | Agostino Sarubbo <ago@gentoo.org> | 2022-05-04 15:29:19 +0200 |
commit | 8f1c112efc88efa64967c6212ef6463277c1487a (patch) | |
tree | 042fbdbbe4481fa6703bfb96a3f3532367e216b9 /app-admin | |
parent | app-admin/exo: version bump to 1.54.0 (diff) | |
download | gentoo-8f1c112efc88efa64967c6212ef6463277c1487a.tar.gz gentoo-8f1c112efc88efa64967c6212ef6463277c1487a.tar.bz2 gentoo-8f1c112efc88efa64967c6212ef6463277c1487a.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')
-rw-r--r-- | app-admin/exo/Manifest | 1 | ||||
-rw-r--r-- | app-admin/exo/exo-1.53.0.ebuild | 36 |
2 files changed, 0 insertions, 37 deletions
diff --git a/app-admin/exo/Manifest b/app-admin/exo/Manifest index 21d0d3915d5b..e370c87db8e9 100644 --- a/app-admin/exo/Manifest +++ b/app-admin/exo/Manifest @@ -1,2 +1 @@ -DIST exo-1.53.0.tar.gz 5597243 BLAKE2B ed9536a3e62b8344aef4d5a3edb3948615b96360bd302c90c16ba366eeb50a869200de39de45f3fbd6a1a3dfff7e42622720dffcbb91cb9c0cdf402f6eac8a2d SHA512 471c7024cdddb7734218fc942bb38593de759d408c859c135672d7bbf870c554dabb6eaf216ca20616e0b2d4eea487731f2142b39fda7daea5104f077bce99a1 DIST exo-1.54.0.tar.gz 5596697 BLAKE2B 2cfc0b9eb8775d16311b8d6a2745bb8a59ec52e15f9006732a272cc949faa919d03f86e7031d18d7cd7fc95f71a7092f54f9bfddd827642ff99f2705f7c66af0 SHA512 5a49d13cf7e96980cb0077da199497e0d0a0b4dc4697327466b272f7e65d4e9bcc37dfd5368df8733eac70a5ae494c5890b4f08e625573bdae92300cf0ff5ca3 diff --git a/app-admin/exo/exo-1.53.0.ebuild b/app-admin/exo/exo-1.53.0.ebuild deleted file mode 100644 index 6149acedfa18..000000000000 --- a/app-admin/exo/exo-1.53.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} -} |