Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kube-proxy/
Date: Sat, 03 Oct 2020 18:29:10
Message-Id: 1601749706.13b1bec8964cbff8c17603b5057d371dc64e78dc.williamh@gentoo
1 commit: 13b1bec8964cbff8c17603b5057d371dc64e78dc
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 3 18:22:42 2020 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 3 18:28:26 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13b1bec8
7
8 sys-cluster/kube-proxy: 1.17.12 1.18.9 and 1.19.2 bump
9
10 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
11
12 sys-cluster/kube-proxy/Manifest | 3 ++
13 sys-cluster/kube-proxy/kube-proxy-1.17.12.ebuild | 35 ++++++++++++++++++++++++
14 sys-cluster/kube-proxy/kube-proxy-1.18.9.ebuild | 35 ++++++++++++++++++++++++
15 sys-cluster/kube-proxy/kube-proxy-1.19.2.ebuild | 34 +++++++++++++++++++++++
16 4 files changed, 107 insertions(+)
17
18 diff --git a/sys-cluster/kube-proxy/Manifest b/sys-cluster/kube-proxy/Manifest
19 index f9ef447aa84..dad85b26c1b 100644
20 --- a/sys-cluster/kube-proxy/Manifest
21 +++ b/sys-cluster/kube-proxy/Manifest
22 @@ -1,2 +1,5 @@
23 +DIST kubernetes-1.17.12.tar.gz 31835673 BLAKE2B defba38b718f21d0521047bed703680ebb7e736343ffcdc52c441a005c8157197e8d7584476550ed8abc65f2d8cd583f623906daaa00d2e99783dda5ad3f2a57 SHA512 703bdb78e51dc6f7c5b05284dc2374ecef6b48f2a302f4fb5d04a4fce6e77a4ad05ec2a61915dafef07c3396f716a5e97157ca19e589acd7fba662dbb62e269e
24 DIST kubernetes-1.17.3.tar.gz 31762013 BLAKE2B 4470fadf2ec441ed7a5f3a82581af6a0f4d768780048576863b2aae9c13cff543592da73b979c7f9191a4c7c2b5a1ad10d85e0eba04fdcd08ece86884ab1f80d SHA512 09b33377de0bdd7dc8ac2ae81196d15eeb93862cb0aba1256bcfca38d2ce1f15951ad70cf67600fc3d16c1d449e0451707e756ec21ad812c6628ae1f0fdda427
25 DIST kubernetes-1.17.4.tar.gz 31777775 BLAKE2B cd04e429d3f524f5dce7948db9b22230df8abdeb7570001ab985ffdb5b85709a8d1698490b9df13455d8f3968741db9571ee1ab3bc2a6fdd06a8c0fe274476e2 SHA512 fd1944d26c840bc1d2f585fccbabf48091fe8820ea089b3ea5c18652fd1edb3c8157a70ea19111b8b62aef16e0284a1607b583c3c1af79dd0dd266b99e20c549
26 +DIST kubernetes-1.18.9.tar.gz 32626627 BLAKE2B 4150e2a4d5cca27adac795f7d9be19a7151f2ddd33888a5da1d2fa8fcf4ed4451c5b266faedf1556a1ddaba92c066bf57637ecc244b7e9014c76d163dc68dd54 SHA512 db950af5bc964ce98ad39f237dccb0f46c698b7e801a6d8b6f96b90c3ec9650ab8f4836a764baec4c8d1b4cbea1ed5e692623f3434cb4f6f9d2dba1df482baa6
27 +DIST kubernetes-1.19.2.tar.gz 33341808 BLAKE2B 814f43f90f248ad428e7c68995a44a9c69722b8215bab3ab9237b06dcee53297a3f57cb2cf68b9e3d246e49944f3246e7d8d3587ab0abff4b8e2fb72e42152c1 SHA512 7a4e0efdf0e262c662aa87bd77d226275761cb774cb77796846385b41937ce2d8d5e1f9fbae4804c7a0fbc6e558227661c453b2d5bd1b20a5c4913c31eae1519
28
29 diff --git a/sys-cluster/kube-proxy/kube-proxy-1.17.12.ebuild b/sys-cluster/kube-proxy/kube-proxy-1.17.12.ebuild
30 new file mode 100644
31 index 00000000000..7054c6b9a9b
32 --- /dev/null
33 +++ b/sys-cluster/kube-proxy/kube-proxy-1.17.12.ebuild
34 @@ -0,0 +1,35 @@
35 +# Copyright 1999-2020 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +inherit go-module
40 +
41 +DESCRIPTION="Kubernetes Proxy service"
42 +HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io"
43 +SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz"
44 +
45 +LICENSE="Apache-2.0"
46 +SLOT="0"
47 +KEYWORDS="~amd64"
48 +IUSE="hardened"
49 +
50 +RDEPEND="net-firewall/conntrack-tools
51 + !sys-cluster/kubernetes"
52 +BDEPEND="=dev-lang/go-1.14*"
53 +
54 +RESTRICT+=" test"
55 +S="${WORKDIR}/kubernetes-${PV}"
56 +
57 +src_compile() {
58 + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \
59 + emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN}
60 +}
61 +
62 +src_install() {
63 + dobin _output/bin/${PN}
64 + keepdir /var/log/${PN} /var/lib/${PN}
65 + newinitd "${FILESDIR}"/${PN}.initd ${PN}
66 + newconfd "${FILESDIR}"/${PN}.confd ${PN}
67 + insinto /etc/logrotate.d
68 + newins "${FILESDIR}"/${PN}.logrotated ${PN}
69 +}
70
71 diff --git a/sys-cluster/kube-proxy/kube-proxy-1.18.9.ebuild b/sys-cluster/kube-proxy/kube-proxy-1.18.9.ebuild
72 new file mode 100644
73 index 00000000000..7054c6b9a9b
74 --- /dev/null
75 +++ b/sys-cluster/kube-proxy/kube-proxy-1.18.9.ebuild
76 @@ -0,0 +1,35 @@
77 +# Copyright 1999-2020 Gentoo Authors
78 +# Distributed under the terms of the GNU General Public License v2
79 +
80 +EAPI=7
81 +inherit go-module
82 +
83 +DESCRIPTION="Kubernetes Proxy service"
84 +HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io"
85 +SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz"
86 +
87 +LICENSE="Apache-2.0"
88 +SLOT="0"
89 +KEYWORDS="~amd64"
90 +IUSE="hardened"
91 +
92 +RDEPEND="net-firewall/conntrack-tools
93 + !sys-cluster/kubernetes"
94 +BDEPEND="=dev-lang/go-1.14*"
95 +
96 +RESTRICT+=" test"
97 +S="${WORKDIR}/kubernetes-${PV}"
98 +
99 +src_compile() {
100 + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \
101 + emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN}
102 +}
103 +
104 +src_install() {
105 + dobin _output/bin/${PN}
106 + keepdir /var/log/${PN} /var/lib/${PN}
107 + newinitd "${FILESDIR}"/${PN}.initd ${PN}
108 + newconfd "${FILESDIR}"/${PN}.confd ${PN}
109 + insinto /etc/logrotate.d
110 + newins "${FILESDIR}"/${PN}.logrotated ${PN}
111 +}
112
113 diff --git a/sys-cluster/kube-proxy/kube-proxy-1.19.2.ebuild b/sys-cluster/kube-proxy/kube-proxy-1.19.2.ebuild
114 new file mode 100644
115 index 00000000000..324ae6a0bf0
116 --- /dev/null
117 +++ b/sys-cluster/kube-proxy/kube-proxy-1.19.2.ebuild
118 @@ -0,0 +1,34 @@
119 +# Copyright 1999-2020 Gentoo Authors
120 +# Distributed under the terms of the GNU General Public License v2
121 +
122 +EAPI=7
123 +inherit go-module
124 +
125 +DESCRIPTION="Kubernetes Proxy service"
126 +HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io"
127 +SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz"
128 +
129 +LICENSE="Apache-2.0"
130 +SLOT="0"
131 +KEYWORDS="~amd64 ~arm64"
132 +IUSE="hardened"
133 +
134 +RDEPEND="net-firewall/conntrack-tools
135 + !sys-cluster/kubernetes"
136 +
137 +RESTRICT+=" test"
138 +S="${WORKDIR}/kubernetes-${PV}"
139 +
140 +src_compile() {
141 + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \
142 + emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN}
143 +}
144 +
145 +src_install() {
146 + dobin _output/bin/${PN}
147 + keepdir /var/log/${PN} /var/lib/${PN}
148 + newinitd "${FILESDIR}"/${PN}.initd ${PN}
149 + newconfd "${FILESDIR}"/${PN}.confd ${PN}
150 + insinto /etc/logrotate.d
151 + newins "${FILESDIR}"/${PN}.logrotated ${PN}
152 +}