summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAgostino Sarubbo <ago@gentoo.org>2022-09-23 12:23:43 +0200
committerAgostino Sarubbo <ago@gentoo.org>2022-09-23 12:23:43 +0200
commitfbd95c88b5809d055f0513f46240950373f184a8 (patch)
tree808e2f27cc819170d3b76b93612020daa22390eb /app-admin/hcloud
parentapp-admin/hcloud: Stabilize 1.30.3 amd64 (diff)
downloadgentoo-fbd95c88b5809d055f0513f46240950373f184a8.tar.gz
gentoo-fbd95c88b5809d055f0513f46240950373f184a8.tar.bz2
gentoo-fbd95c88b5809d055f0513f46240950373f184a8.zip
app-admin/hcloud: remove old
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
Diffstat (limited to 'app-admin/hcloud')
-rw-r--r--app-admin/hcloud/Manifest1
-rw-r--r--app-admin/hcloud/hcloud-1.30.1.ebuild34
2 files changed, 0 insertions, 35 deletions
diff --git a/app-admin/hcloud/Manifest b/app-admin/hcloud/Manifest
index e60dd0484b28..61880caaecf2 100644
--- a/app-admin/hcloud/Manifest
+++ b/app-admin/hcloud/Manifest
@@ -1,2 +1 @@
-DIST hcloud-1.30.1.tar.xz 1688764 BLAKE2B b1044a3d9e5dd28d6010763dd2c3322e56418bd2b8b48669fd2bfb4297a0a75def85a63c08f99f0bacb78bee976438af72feae2d8d38982cfc5ce2bd3a978569 SHA512 808eb06718f1e9e3ecc6de37683cc632b822e1ef9236011fba7b72ba3cd4be238c01ae66651bae304e5118d930898635116488517ca7ec3124e4bc2f987e24e6
DIST hcloud-1.30.3.tar.xz 1690980 BLAKE2B 115a6769d5bd5e6a10d812502506f9921a7659a262eea7088c88205e9fc748a570c1c9830e5061923f1be18a64d96104e6e930c9edc3316645e5d86450fbf69c SHA512 64bc692b8d098149815ba63aec8346a7f4f2ff7461fac3369343595a733a5c727b41ec8341e4eee1a98804b14bfc5a94ff9fc0621abb798d381d9bc802818b77
diff --git a/app-admin/hcloud/hcloud-1.30.1.ebuild b/app-admin/hcloud/hcloud-1.30.1.ebuild
deleted file mode 100644
index 33ffb7d83afa..000000000000
--- a/app-admin/hcloud/hcloud-1.30.1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2022 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/internal/version.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}
-}