From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1230128-garchives=archives.gentoo.org@lists.gentoo.org>
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 91B1D1382C5
	for <garchives@archives.gentoo.org>; Fri, 11 Dec 2020 12:22:26 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id D1D06E095D;
	Fri, 11 Dec 2020 12:22:25 +0000 (UTC)
Received: from smtp.gentoo.org (dev.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 76A42E095D
	for <gentoo-commits@lists.gentoo.org>; Fri, 11 Dec 2020 12:22:25 +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 D6687340FC2
	for <gentoo-commits@lists.gentoo.org>; Fri, 11 Dec 2020 12:22:23 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E943486
	for <gentoo-commits@lists.gentoo.org>; Fri, 11 Dec 2020 12:22:22 +0000 (UTC)
From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" <polynomial-c@gentoo.org>
Message-ID: <1607689338.64f92a8fe7d4f30a4a9ea2c1f081ee6d69d6be21.polynomial-c@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/man/
X-VCS-Repository: repo/gentoo
X-VCS-Files: virtual/man/man-0-r4.ebuild
X-VCS-Directories: virtual/man/
X-VCS-Committer: polynomial-c
X-VCS-Committer-Name: Lars Wendler
X-VCS-Revision: 64f92a8fe7d4f30a4a9ea2c1f081ee6d69d6be21
X-VCS-Branch: master
Date: Fri, 11 Dec 2020 12:22:22 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: f20647cc-84f1-47f2-8c8d-a81a1ee9c9c4
X-Archives-Hash: 4cc0b0faaaec65426cec6b13539cf736

commit:     64f92a8fe7d4f30a4a9ea2c1f081ee6d69d6be21
Author:     epsilonKNOT <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sun Nov 29 01:48:25 2020 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Dec 11 12:22:18 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64f92a8f

virtual/man: allow mandoc as man provider

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/18444
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 virtual/man/man-0-r4.ebuild | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/virtual/man/man-0-r4.ebuild b/virtual/man/man-0-r4.ebuild
new file mode 100644
index 00000000000..90e9ed3d5e8
--- /dev/null
+++ b/virtual/man/man-0-r4.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Virtual for man"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+RDEPEND="
+	|| (
+		sys-apps/man-db
+		>=app-text/mandoc-1.14.5-r1[system-man]
+	)
+"