forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-admin/hcloud: version bump to 1.30.4
Signed-off-by: Agostino Sarubbo <[email protected]>
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST hcloud-1.30.3.tar.xz 1690980 BLAKE2B 115a6769d5bd5e6a10d812502506f9921a7659a262eea7088c88205e9fc748a570c1c9830e5061923f1be18a64d96104e6e930c9edc3316645e5d86450fbf69c SHA512 64bc692b8d098149815ba63aec8346a7f4f2ff7461fac3369343595a733a5c727b41ec8341e4eee1a98804b14bfc5a94ff9fc0621abb798d381d9bc802818b77 | ||
DIST hcloud-1.30.4.tar.xz 1727416 BLAKE2B 004c15b773a64e936914a54b6b151745c56da6364ef010513b51696269363ff240205aefa54f6c7eb59e875a4b4a580666811153fffeaeb9c37577f53620ff8c SHA512 b34fa778c75ca070b2feb73279042ba796fdfcdf9ff33a52f854315cafc2e6c7f266ba602c29bfa08981ccfd91984c9b8f1fcdb0a6b761412ee18a23818c0bac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# 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} | ||
} |