Сравнение kube-apiserver-1.32.11 с kube-apiserver-1.36.1

/usr/portage/sys-cluster/kube-apiserver/kube-apiserver-1.36.1.ebuild 2026-06-10 19:17:07.270324044 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
inherit go-module systemd
6
inherit go-env go-module shell-completion sysroot systemd
7 7

  
8 8
DESCRIPTION="Kubernetes API server"
9 9
HOMEPAGE="https://kubernetes.io"
......
21 21
	acct-group/kube-apiserver
22 22
	acct-user/kube-apiserver"
23 23
RDEPEND="${DEPEND}"
24
BDEPEND=">=dev-lang/go-1.23.3"
24
BDEPEND=">=dev-lang/go-1.26.0"
25 25

  
26 26
QA_PRESTRIPPED=usr/bin/kube-apiserver
27 27

  
28 28
src_compile() {
29
	FORCE_HOST_GO="yes" emake -j1 GOFLAGS="${GOFLAGS}" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN}
29
	local GOOS=$(go-env_goos)
30

  
31
	emake -j1 GOFLAGS="${GOFLAGS}" GOLDFLAGS="" LDFLAGS="" FORCE_HOST_GO=yes \
32
		KUBE_BUILD_PLATFORMS="${GOOS}/${GOARCH}" KUBE_${GOOS@U}_${GOARCH@U}_CC="${CC}" \
33
		WHAT=cmd/${PN}
34

  
35
	bin=_output/local/bin/${GOOS}/${GOARCH}/${PN}
36

  
37
	einfo "generating shell completion files"
38
	sysroot_try_run_prefixed ${bin} completion bash > ${PN}.bash || die
39
	sysroot_try_run_prefixed ${bin} completion zsh > ${PN}.zsh || die
40
	sysroot_try_run_prefixed ${bin} completion fish > ${PN}.fish || die
30 41
}
31 42

  
32 43
src_install() {
33
	dobin _output/bin/${PN}
44
	dobin ${bin}
45

  
46
	[[ -s ${PN}.bash ]] && newbashcomp ${PN}.bash ${PN}
47
	[[ -s ${PN}.zsh ]] && newzshcomp ${PN}.zsh _${PN}
48
	[[ -s ${PN}.fish ]] && dofishcomp ${PN}.fish
49

  
34 50
	newinitd "${FILESDIR}"/${PN}.initd ${PN}
35 51
	newconfd "${FILESDIR}"/${PN}.confd ${PN}
36 52
	systemd_dounit "${FILESDIR}"/${PN}.service
Спасибо!