diff options
author | Carlo Landmeter <clandmeter@alpinelinux.org> | 2021-07-01 17:20:47 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@alpinelinux.org> | 2021-07-01 17:20:47 +0000 |
commit | 740f0de7241af24fb268e074e312961bab444c1c (patch) | |
tree | a8cc4c5d7c2fe98829edafc3ce980e2a9b6d36b9 /community/k9s | |
parent | 42a617d22d01b96a8bf887d6b9b9bf957f6b94ce (diff) | |
download | aports-740f0de7241af24fb268e074e312961bab444c1c.zip |
community/k9s: disable on riscv64
procfs@v0.2.0/cpuinfo.go:71:9: undefined: parseCPUInfo
Diffstat (limited to 'community/k9s')
-rw-r--r-- | community/k9s/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/community/k9s/APKBUILD b/community/k9s/APKBUILD index 1c2e76325df..27b2b5294e0 100644 --- a/community/k9s/APKBUILD +++ b/community/k9s/APKBUILD @@ -8,7 +8,8 @@ _commit=a9ede22 # git rev-parse --short HEAD _date=2021-06-30T07:15:34UTC # date -u -d @$(date +%s) +%FT%T%Z pkgdesc="Kubernetes TUI" url="https://k9scli.io" -arch="all !x86 !armhf !mips64" # tests fail +# riscv64 FTBS +arch="all !x86 !armhf !mips64 !riscv64" # tests fail license="Apache-2.0" makedepends="go" options="net chmod-clean" |