commit: 3b93ccddd4790afc0a5f6b4ce2761c82ba4ed7d8 Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org> AuthorDate: Fri Aug 19 07:48:25 2022 +0000 Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org> CommitDate: Fri Aug 19 07:48:25 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b93ccdd
app-admin/exo: remove old Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org> app-admin/exo/Manifest | 1 - app-admin/exo/exo-1.58.0.ebuild | 36 ------------------------------------ 2 files changed, 37 deletions(-) diff --git a/app-admin/exo/Manifest b/app-admin/exo/Manifest index 7cd149725442..8f06b20eaa0f 100644 --- a/app-admin/exo/Manifest +++ b/app-admin/exo/Manifest @@ -1,2 +1 @@ -DIST exo-1.58.0.tar.gz 5609630 BLAKE2B 266820bd6e51aeaf1bde21b3ecea42e5e7242ffd8b96c60b73316ab938d07764e14e387271f24bb1e71c0692eea11a97deb45e76dfc66a5db82b46a60362bf8a SHA512 5032549d98f9eb9e411387667fe64a75b7ff4f5d830047ebae1cfada2b684fa108e5b945472347d3297f45ef0b2b87baf38750f8f9814cc60af6d08584fce0a3 DIST exo-1.59.0.tar.gz 5614442 BLAKE2B 89e7d50e33b7883b697c168d31e376f240873f416045e00fc7918335b9fff497c809b4a6f9301e6f5e633586f59694e73b50a92fea1c16475df379fab9ee7abb SHA512 06789bbb845a06f0c2b185471989f4fffcaba8350c1d6b5b6398fe0dfbb6a2c2729aee8b464328ed95ba0b028de7c238a6343a132d40c57c0c9a7ed06695d4fe diff --git a/app-admin/exo/exo-1.58.0.ebuild b/app-admin/exo/exo-1.58.0.ebuild deleted file mode 100644 index 6149acedfa18..000000000000 --- a/app-admin/exo/exo-1.58.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} -}