diff options
author | Agostino Sarubbo <ago@gentoo.org> | 2023-05-15 12:53:37 +0200 |
---|---|---|
committer | Agostino Sarubbo <ago@gentoo.org> | 2023-05-15 12:53:37 +0200 |
commit | 9d7580ca9df2f5536a571811db327c8ac0176deb (patch) | |
tree | 11df979b253a4798dbe7ea020f27a8f7579f3991 /app-admin | |
parent | app-admin/exo: version bump to 1.69.0 (diff) | |
download | gentoo-9d7580ca9df2f5536a571811db327c8ac0176deb.tar.gz gentoo-9d7580ca9df2f5536a571811db327c8ac0176deb.tar.bz2 gentoo-9d7580ca9df2f5536a571811db327c8ac0176deb.zip |
app-admin/exo: remove old
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.68.0.ebuild | 36 |
2 files changed, 0 insertions, 37 deletions
diff --git a/app-admin/exo/Manifest b/app-admin/exo/Manifest index ff7f8fe09bec..2ff87e779bc3 100644 --- a/app-admin/exo/Manifest +++ b/app-admin/exo/Manifest @@ -1,2 +1 @@ -DIST exo-1.68.0.gh.tar.gz 5673687 BLAKE2B 7e1b8a03d902e21052dbbdc0e1fb7bc0316061d021fb0dae901fcefcd3cf5560113c3ac068353de9039c8b672fb75e483a3be886702920431cf1cb040c4ad38e SHA512 01663f651348cbb43d5c382b57904792bfa1b954dbe7c8661084c95133828372c643c52db8b66f36a8b791330c80f922a324b359b6b920fcccec41e85e1b1e1b DIST exo-1.69.0.gh.tar.gz 5679426 BLAKE2B 583a1bb405ec707b371c67f59240e7fc192b07c94698c86a0acb652bd946c817d581597b9dffe0d2276585e462cc67de840005e337c228d0fe779ce002c5e3b5 SHA512 79f8a54ff9baa09e2bfd3dd2cedfa605eec958838036c368394fd684f12eb805373fe44c5931a3c419bd829447736d94fdba3e14f71f3a4bbe9fc0e4e7c7cdad diff --git a/app-admin/exo/exo-1.68.0.ebuild b/app-admin/exo/exo-1.68.0.ebuild deleted file mode 100644 index 8b7ec86e5d08..000000000000 --- a/app-admin/exo/exo-1.68.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -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" - -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} -ldflags "-X main.version=${PVR}-gentoo -X main.commit=" || 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} -} |