diff options
author | Agostino Sarubbo <ago@gentoo.org> | 2021-05-08 08:56:45 +0200 |
---|---|---|
committer | Agostino Sarubbo <ago@gentoo.org> | 2021-05-08 08:56:45 +0200 |
commit | 2eeb294f373e86c6a022684fae7a6e76b2463337 (patch) | |
tree | 5a019d6e61cd72925237eaf38f7cd8fe1856a96f /app-admin | |
parent | app-admin/hcloud: stable for amd64 (diff) | |
download | gentoo-2eeb294f373e86c6a022684fae7a6e76b2463337.tar.gz gentoo-2eeb294f373e86c6a022684fae7a6e76b2463337.tar.bz2 gentoo-2eeb294f373e86c6a022684fae7a6e76b2463337.zip |
app-admin/hcloud: remove old
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/hcloud/Manifest | 1 | ||||
-rw-r--r-- | app-admin/hcloud/hcloud-1.20.0.ebuild | 34 |
2 files changed, 0 insertions, 35 deletions
diff --git a/app-admin/hcloud/Manifest b/app-admin/hcloud/Manifest index 848b4669a9f1..b5e5c744f8e5 100644 --- a/app-admin/hcloud/Manifest +++ b/app-admin/hcloud/Manifest @@ -1,2 +1 @@ -DIST hcloud-1.20.0.tar.xz 790040 BLAKE2B ba0d62c8e817daadaa9eb891adb3f655a9ae33b05617449e26b09a3ba6b99a6b6f61df1cf29138a008a7ee58e45efdfe07c408af89efb1c2bd870d7340976bb8 SHA512 5dbb9060595e836ccde99984783954e894f74c098f911ae8c4cc1944d444fd28b6f722bb711d9b1ae245ddf3af8cca1939585ed778c8026fbf8c4201c2d15469 DIST hcloud-1.22.1.tar.xz 910672 BLAKE2B 51e18c530964677bd0cef8232c68031f3186b83fe0da91e8c6572b95130df32e5b00de6e734fb6cce56a51b6fca6136bb306d33ad4a6c728aac3d0afe634c738 SHA512 365823e779f526ae9cbbb50ecaed557c5a838b6614208e4d03e7eadb9569a2e2156e05e019aea2623a811defda707b8822d0eb09a4bfd7006262bd6a19e09aae diff --git a/app-admin/hcloud/hcloud-1.20.0.ebuild b/app-admin/hcloud/hcloud-1.20.0.ebuild deleted file mode 100644 index 8d044f742d31..000000000000 --- a/app-admin/hcloud/hcloud-1.20.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="A command-line interface for Hetzner Cloud" -HOMEPAGE="https://github.com/hetznercloud/cli" -SRC_URI="https://dev.gentoo.org/~ago/distfiles/${P}.tar.xz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64" - -IUSE="" -DEPEND="dev-lang/go:=" -RESTRICT="strip" -QA_FLAGS_IGNORED=".*" - -src_compile() { - go build -mod vendor -o ${PN} -ldflags "-w -X github.com/hetznercloud/cli/cli.Version=${PV}-gentoo" ./cmd/${PN} || die "build failed" -} - -src_test() { - # For upstream a simple test is run 'hcloud version' - ./hcloud version - if [[ $? -ne 0 ]] - then - die "Test failed" - fi -} - -src_install() { - dobin ${PN} -} |