Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kube-proxy/
Date: Thu, 10 Aug 2017 13:33:48
Message-Id: 1502372005.f271670b1dae44414c6e063e32c98d5e98aa3917.mrueg@gentoo
1 commit: f271670b1dae44414c6e063e32c98d5e98aa3917
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 10 13:33:25 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 10 13:33:25 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f271670b
7
8 sys-cluster/kube-proxy: Remove old
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 sys-cluster/kube-proxy/kube-proxy-1.7.3.ebuild | 41 --------------------------
13 1 file changed, 41 deletions(-)
14
15 diff --git a/sys-cluster/kube-proxy/kube-proxy-1.7.3.ebuild b/sys-cluster/kube-proxy/kube-proxy-1.7.3.ebuild
16 deleted file mode 100644
17 index b3636fb8fb8..00000000000
18 --- a/sys-cluster/kube-proxy/kube-proxy-1.7.3.ebuild
19 +++ /dev/null
20 @@ -1,41 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -inherit golang-build golang-vcs-snapshot
26 -
27 -EGO_PN="k8s.io/kubernetes"
28 -ARCHIVE_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz"
29 -KEYWORDS="~amd64"
30 -
31 -DESCRIPTION="Kubernetes Proxy service"
32 -HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io"
33 -SRC_URI="${ARCHIVE_URI}"
34 -
35 -LICENSE="Apache-2.0"
36 -SLOT="0"
37 -
38 -DEPEND="dev-go/go-bindata"
39 -
40 -RESTRICT="test"
41 -
42 -src_prepare() {
43 - default
44 - sed -i -e "/vendor\/github.com\/jteeuwen\/go-bindata\/go-bindata/d" src/${EGO_PN}/hack/lib/golang.sh || die
45 - sed -i -e "/export PATH/d" src/${EGO_PN}/hack/generate-bindata.sh || die
46 -}
47 -
48 -src_compile() {
49 - LDFLAGS="" GOPATH="${WORKDIR}/${P}" emake -j1 -C src/${EGO_PN} WHAT=cmd/${PN}
50 -}
51 -
52 -src_install() {
53 - pushd src/${EGO_PN} || die
54 - dobin _output/bin/${PN}
55 - popd || die
56 - keepdir /var/log/${PN}
57 - newinitd "${FILESDIR}"/${PN}.initd ${PN}
58 - newconfd "${FILESDIR}"/${PN}.confd ${PN}
59 - insinto /etc/logrotate.d
60 - newins "${FILESDIR}"/${PN}.logrotated ${PN}
61 -}