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 300581381F3 for ; Sun, 26 Apr 2020 20:59:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 768CEE0A45; Sun, 26 Apr 2020 20:59:40 +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 5CE0AE0A45 for ; Sun, 26 Apr 2020 20:59:40 +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 42A1B34F8AF for ; Sun, 26 Apr 2020 20:59:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE97726 for ; Sun, 26 Apr 2020 20:59:37 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1587934462.1440e052042b0752fad2a3668424b1099d3bf201.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-misc/cheat/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/cheat/cheat-3.9.0-r1.ebuild app-misc/cheat/cheat-3.9.0.ebuild app-misc/cheat/metadata.xml X-VCS-Directories: app-misc/cheat/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 1440e052042b0752fad2a3668424b1099d3bf201 X-VCS-Branch: dev Date: Sun, 26 Apr 2020 20:59:37 +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: c04c388f-d58a-4ae3-9982-99af79fc0a1a X-Archives-Hash: 7181adca766d67f91f6619bc6d10471d commit: 1440e052042b0752fad2a3668424b1099d3bf201 Author: Alessandro Barbieri gmail com> AuthorDate: Sun Apr 26 20:54:22 2020 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Sun Apr 26 20:54:22 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1440e052 app-misc/cheat: install man, add zsh-completion blocker Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Alessandro Barbieri gmail.com> .../cheat/{cheat-3.9.0.ebuild => cheat-3.9.0-r1.ebuild} | 13 +++++++------ app-misc/cheat/metadata.xml | 3 --- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/app-misc/cheat/cheat-3.9.0.ebuild b/app-misc/cheat/cheat-3.9.0-r1.ebuild similarity index 96% rename from app-misc/cheat/cheat-3.9.0.ebuild rename to app-misc/cheat/cheat-3.9.0-r1.ebuild index efd0b68..5644e85 100644 --- a/app-misc/cheat/cheat-3.9.0.ebuild +++ b/app-misc/cheat/cheat-3.9.0-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 2019-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI="7" inherit go-module @@ -91,12 +91,13 @@ LICENSE="MIT Apache-2.0 BSD BSD-2" SLOT="0" KEYWORDS="~amd64" -IUSE="man zsh-completion" +IUSE="zsh-completion" -BDEPEND=">=dev-lang/go-1.13 - man? ( app-text/pandoc ) +BDEPEND=" + app-text/pandoc + >=dev-lang/go-1.13 " -RDEPEND="zsh-completion? ( app-shells/zsh-completions )" +RDEPEND="zsh-completion? ( !app-shells/zsh-completions )" src_install() { dobin "dist/${PN}" @@ -104,5 +105,5 @@ src_install() { insinto /usr/share/zsh/site-functions newins scripts/cheat.zsh _cheat fi - use man && doman doc/cheat.1 + doman doc/cheat.1 } diff --git a/app-misc/cheat/metadata.xml b/app-misc/cheat/metadata.xml index d1a353e..ee80479 100644 --- a/app-misc/cheat/metadata.xml +++ b/app-misc/cheat/metadata.xml @@ -5,9 +5,6 @@ mathieu.tortuyaux@gmail.com Mathieu Tortuyaux - - build and install man pages - cheat allows you to create and view interactive cheatsheets on the command-line. It was designed to help remind *nix system administrators of options for commands that they use frequently, but not frequently enough to remember.