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 069D2139082 for ; Mon, 27 Nov 2017 20:14:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A1BDE0E9A; Mon, 27 Nov 2017 20:14:12 +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 D7F28E0E9A for ; Mon, 27 Nov 2017 20:14:11 +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 BE9E933BE2E for ; Mon, 27 Nov 2017 20:14:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B73BA9A5 for ; Mon, 27 Nov 2017 20:14:09 +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: <1511813630.24ab2d84b5cf9d6b0f899631fa6393dd4fd1a167.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/mc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-fs/mc/mc-0_pre20171014.ebuild X-VCS-Directories: net-fs/mc/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 24ab2d84b5cf9d6b0f899631fa6393dd4fd1a167 X-VCS-Branch: master Date: Mon, 27 Nov 2017 20:14:09 +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: f916eb19-cd9a-47d1-b463-fc47ee5d47f4 X-Archives-Hash: 9f1868057317c0ea31966d132ae81d10 commit: 24ab2d84b5cf9d6b0f899631fa6393dd4fd1a167 Author: Manuel Rüger gentoo org> AuthorDate: Mon Nov 27 20:13:50 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Mon Nov 27 20:13:50 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24ab2d84 net-fs/mc: Install bash-completion Package-Manager: Portage-2.3.16, Repoman-2.3.6 net-fs/mc/mc-0_pre20171014.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-fs/mc/mc-0_pre20171014.ebuild b/net-fs/mc/mc-0_pre20171014.ebuild index e3cbab56910..de6178cf067 100644 --- a/net-fs/mc/mc-0_pre20171014.ebuild +++ b/net-fs/mc/mc-0_pre20171014.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit golang-build golang-vcs-snapshot +inherit golang-build golang-vcs-snapshot bash-completion-r1 EGO_PN="github.com/minio/mc" VERSION="2017-10-14T00-51-16Z" @@ -33,7 +33,6 @@ src_prepare() { src_compile() { pushd src/${EGO_PN} || die MC_RELEASE="${VERSION}" - go run buildscripts/gen-ldflags.go GOPATH="${S}" go build --ldflags "$(go run buildscripts/gen-ldflags.go)" -o ${PN} || die popd || die } @@ -42,5 +41,6 @@ src_install() { pushd src/${EGO_PN} || die dodoc -r README.md CONTRIBUTING.md docs dobin mc + newbashcomp autocomplete/bash_autocomplete ${PN} popd || die }