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 40637138350 for ; Sat, 25 Jan 2020 01:23:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29B22E083B; Sat, 25 Jan 2020 01:22:59 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 0F54EE083B for ; Sat, 25 Jan 2020 01:22:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C2AE334E2A3 for ; Sat, 25 Jan 2020 01:22:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D0D5E99 for ; Sat, 25 Jan 2020 01:22:55 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1579915063.71b7ca935b00371330d3aa3aee10454c7e851a06.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kube-controller-manager/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/kube-controller-manager/kube-controller-manager-1.17.2.ebuild X-VCS-Directories: sys-cluster/kube-controller-manager/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 71b7ca935b00371330d3aa3aee10454c7e851a06 X-VCS-Branch: master Date: Sat, 25 Jan 2020 01:22:55 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 39cbcf44-2ada-4a5a-a873-1869fe6b935f X-Archives-Hash: 0822dc9b95069985684376343cf3073c commit: 71b7ca935b00371330d3aa3aee10454c7e851a06 Author: William Hubbs gentoo org> AuthorDate: Sat Jan 25 01:17:43 2020 +0000 Commit: William Hubbs gentoo org> CommitDate: Sat Jan 25 01:17:43 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71b7ca93 sys-cluster/kube-controller-manager: 1.17.2 repoman fixes and migrate to glep 81 Signed-off-by: William Hubbs gentoo.org> .../kube-controller-manager-1.17.2.ebuild | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/sys-cluster/kube-controller-manager/kube-controller-manager-1.17.2.ebuild b/sys-cluster/kube-controller-manager/kube-controller-manager-1.17.2.ebuild index 49970209c09..a00f15cc108 100644 --- a/sys-cluster/kube-controller-manager/kube-controller-manager-1.17.2.ebuild +++ b/sys-cluster/kube-controller-manager/kube-controller-manager-1.17.2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit go-module user +inherit go-module DESCRIPTION="Kubernetes Controller Manager" HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io" @@ -12,17 +12,16 @@ LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64" -DEPEND="dev-go/go-bindata +COMMON_DEPEND="acct-group/kube-controller-manager + acct-user/kube-controller-manager" +DEPEND="${COMMON_DEPEND} + dev-go/go-bindata >=dev-lang/go-1.13" + RDEPEND="${COMMON_DEPEND}" RESTRICT="test" S="${WORKDIR}/kubernetes-${PV}" -pkg_setup() { - enewgroup ${PN} - enewuser ${PN} -1 -1 -1 ${PN} -} - src_prepare() { default sed -i -e "/vendor\/github.com\/jteeuwen\/go-bindata\/go-bindata/d" -e "s/-s -w/-w/" hack/lib/golang.sh || die