* update minikube to 1.33.1-1

This commit is contained in:
Alexander Baldeck 2024-06-26 14:46:41 +02:00
parent dc348cb58d
commit dad3e99cf1

View File

@ -3,12 +3,12 @@
# Contributor: Ivan Shapovalov <intelfx@intelfx.name>
pkgname=minikube
pkgver=1.32.0
_minikube_commit=8220a6eb95f0a4d75f7f2d7b14cef975f050512d
pkgver=1.33.1
_minikube_commit=5883c09216182566a63dff4c326a6fc9ed2982ff
pkgrel=1
pkgdesc="A tool that makes it easy to run Kubernetes locally"
url="https://github.com/kubernetes/minikube"
license=('Apache')
license=('Apache-2.0')
arch=(x86_64 powerpc64le riscv64)
optdepends=(
'kubectl: to manage the cluster'
@ -17,7 +17,7 @@ optdepends=(
makedepends=('git' 'go')
depends=('glibc')
source=("git+https://github.com/kubernetes/minikube.git#commit=${_minikube_commit}")
sha512sums=('SKIP')
sha512sums=('58ed440852ab1bf8e1e687499bcd66b6b95027bb702f0361e24794de17d089da483258d175c434976b232f2da63ef97f56a4634c4968775fa8b0c525b5b4c92a')
options=('!lto')
prepare() {
@ -37,9 +37,6 @@ build() {
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw -ldflags=-linkmode=external"
mkdir ${srcdir}/.tmp
export TMPDIR=${srcdir}/.tmp
make
}