diff options
author | William Hubbs <williamh@gentoo.org> | 2023-08-25 12:42:22 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2023-08-25 12:52:13 -0500 |
commit | 320b9917db134d73a0224cb3cc55e7c51c4a69fe (patch) | |
tree | 909183289845666b37d034b8a468431a03a01848 /sys-cluster/kube-controller-manager/kube-controller-manager-1.27.5.ebuild | |
parent | sys-cluster/kube-apiserver: add 1.27.5 (diff) | |
download | gentoo-320b9917db134d73a0224cb3cc55e7c51c4a69fe.tar.gz gentoo-320b9917db134d73a0224cb3cc55e7c51c4a69fe.tar.bz2 gentoo-320b9917db134d73a0224cb3cc55e7c51c4a69fe.zip |
sys-cluster/kube-controller-manager: add 1.27.5
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'sys-cluster/kube-controller-manager/kube-controller-manager-1.27.5.ebuild')
-rw-r--r-- | sys-cluster/kube-controller-manager/kube-controller-manager-1.27.5.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/sys-cluster/kube-controller-manager/kube-controller-manager-1.27.5.ebuild b/sys-cluster/kube-controller-manager/kube-controller-manager-1.27.5.ebuild new file mode 100644 index 000000000000..dc4ca2df138b --- /dev/null +++ b/sys-cluster/kube-controller-manager/kube-controller-manager-1.27.5.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit go-module + +DESCRIPTION="Kubernetes Controller Manager" +HOMEPAGE="https://kubernetes.io" +SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64" +IUSE="hardened" + +COMMON_DEPEND="acct-group/kube-controller-manager + acct-user/kube-controller-manager" +DEPEND="${COMMON_DEPEND}" +RDEPEND="${COMMON_DEPEND}" +BDEPEND=">=dev-lang/go-1.20" + +RESTRICT+=" test" +S="${WORKDIR}/kubernetes-${PV}" + +src_compile() { + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ + emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} +} + +src_install() { + dobin _output/bin/${PN} + newinitd "${FILESDIR}"/${PN}.initd ${PN} + newconfd "${FILESDIR}"/${PN}.confd ${PN} + insinto /etc/logrotate.d + newins "${FILESDIR}"/${PN}.logrotated ${PN} + keepdir /var/log/${PN} + fowners ${PN}:${PN} /var/log/${PN} +} |