From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6DD761396D0 for ; Thu, 10 Aug 2017 13:23:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7621B1FC076; Thu, 10 Aug 2017 13:23:10 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 537FE1FC076 for ; Thu, 10 Aug 2017 13:23:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 55B80341961 for ; Thu, 10 Aug 2017 13:23:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF832746F for ; Thu, 10 Aug 2017 13:23:07 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1502371359.257062e7188cd44e2305a319d3767f592ec0132c.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kubectl/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/kubectl/kubectl-1.7.3.ebuild X-VCS-Directories: sys-cluster/kubectl/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 257062e7188cd44e2305a319d3767f592ec0132c X-VCS-Branch: master Date: Thu, 10 Aug 2017 13:23:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4a33df7c-9c45-4309-bf51-47eea20a1d85 X-Archives-Hash: 6421c67c58fe2dd288da02742f830e94 commit: 257062e7188cd44e2305a319d3767f592ec0132c Author: Manuel Rüger gentoo org> AuthorDate: Thu Aug 10 13:20:51 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Thu Aug 10 13:22:39 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=257062e7 sys-cluster/kubectl: Remove old Package-Manager: Portage-2.3.6, Repoman-2.3.3 sys-cluster/kubectl/kubectl-1.7.3.ebuild | 37 -------------------------------- 1 file changed, 37 deletions(-) diff --git a/sys-cluster/kubectl/kubectl-1.7.3.ebuild b/sys-cluster/kubectl/kubectl-1.7.3.ebuild deleted file mode 100644 index 4866ab70285..00000000000 --- a/sys-cluster/kubectl/kubectl-1.7.3.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit golang-build golang-vcs-snapshot - -EGO_PN="k8s.io/kubernetes" -ARCHIVE_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" -KEYWORDS="~amd64" - -DESCRIPTION="CLI to run commands against Kubernetes clusters" -HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io" -SRC_URI="${ARCHIVE_URI}" - -LICENSE="Apache-2.0" -SLOT="0" -IUSE="" - -DEPEND="dev-go/go-bindata" - -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 -} - -src_compile() { - LDFLAGS="" GOPATH="${WORKDIR}/${P}" emake -j1 -C src/${EGO_PN} WHAT=cmd/${PN} -} - -src_install() { - pushd src/${EGO_PN} || die - dobin _output/bin/${PN} - popd || die -}