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 42C07138239 for ; Tue, 16 Feb 2021 20:59:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83DB8E07DB; Tue, 16 Feb 2021 20:59:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 68305E07DB for ; Tue, 16 Feb 2021 20:59: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 411A93412CE for ; Tue, 16 Feb 2021 20:59:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A2E747 for ; Tue, 16 Feb 2021 20:59:55 +0000 (UTC) From: "Simon van der Maas" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Simon van der Maas" Message-ID: <1613509184.1d5b22ec60e28c5d5cc23c1917b0263a24b1e9b2.svdm-gentoo@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-misc/lf/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/lf/lf-20.ebuild X-VCS-Directories: app-misc/lf/ X-VCS-Committer: svdm-gentoo X-VCS-Committer-Name: Simon van der Maas X-VCS-Revision: 1d5b22ec60e28c5d5cc23c1917b0263a24b1e9b2 X-VCS-Branch: dev Date: Tue, 16 Feb 2021 20:59: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: fafafd84-62af-40c4-8b71-4cb4337ee8e1 X-Archives-Hash: ec4da48087d5f52b4daac4f445e7e127 commit: 1d5b22ec60e28c5d5cc23c1917b0263a24b1e9b2 Author: Simon van der Maas protonmail com> AuthorDate: Tue Feb 16 20:59:44 2021 +0000 Commit: Simon van der Maas protonmail com> CommitDate: Tue Feb 16 20:59:44 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1d5b22ec app-misc/lf: fixed ebuild Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Simon van der Maas protonmail.com> app-misc/lf/lf-20.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app-misc/lf/lf-20.ebuild b/app-misc/lf/lf-20.ebuild index e75901ce..36aa78f3 100644 --- a/app-misc/lf/lf-20.ebuild +++ b/app-misc/lf/lf-20.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit go-module golang-build +inherit go-module EGO_SUM=( "github.com/gdamore/encoding v1.0.0" @@ -40,9 +40,11 @@ S="${WORKDIR}/lf-r${PV}" EGO_PN=github.com/gokcehan/lf src_compile() { - go build + go build -x || die } src_install() { dobin "lf" + einstalldocs + doman "lf.1" }