sys-cluster/kubectl: Misc fixes

Package-Manager: Portage-2.3.6, Repoman-2.3.2
This commit is contained in:
Manuel Rüger
2017-06-05 18:34:11 +02:00
parent 8ac4669e28
commit 1fefcbb070

View File

@@ -2,9 +2,9 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit user golang-build golang-vcs-snapshot
inherit golang-build golang-vcs-snapshot
EGO_PN="k8s.io/kubernetes/..."
EGO_PN="k8s.io/kubernetes"
ARCHIVE_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz"
KEYWORDS="~amd64"
@@ -22,16 +22,16 @@ RESTRICT="test"
src_prepare() {
default
sed -i -e "/vendor\/github.com\/jteeuwen\/go-bindata\/go-bindata/d" src/${EGO_PN%/*}/hack/lib/golang.sh || die
sed -i -e "/export PATH/d" src/${EGO_PN%/*}/hack/generate-bindata.sh || die
sed -i -e "/vendor\/github.com\/jteeuwen\/go-bindata\/go-bindata/d" src/${EGO_PN}/hack/lib/golang.sh || die
sed -i -e "/export PATH/d" src/${EGO_PN}/hack/generate-bindata.sh || die
}
src_compile() {
LDFLAGS="" GOPATH="${WORKDIR}/${P}" emake -j1 -C src/${EGO_PN%/*} WHAT=cmd/${PN}
LDFLAGS="" GOPATH="${WORKDIR}/${P}" emake -j1 -C src/${EGO_PN} WHAT=cmd/${PN}
}
src_install() {
pushd src/${EGO_PN%/*} || die
pushd src/${EGO_PN} || die
dobin _output/bin/${PN}
popd || die
}