From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 225AD1584AD for ; Sun, 13 Apr 2025 17:49:58 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 0DB01343005 for ; Sun, 13 Apr 2025 17:49:58 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 7E8681104B8; Sun, 13 Apr 2025 17:49:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 6FF211104B0 for ; Sun, 13 Apr 2025 17:49:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 22F413430AB for ; Sun, 13 Apr 2025 17:49:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A64E32082 for ; Sun, 13 Apr 2025 17:49:50 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1744475430.893636466a798825a60ddcdac7960faebc0700d3.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-misc/qman/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/qman/qman-1.4.1.ebuild X-VCS-Directories: app-misc/qman/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 893636466a798825a60ddcdac7960faebc0700d3 X-VCS-Branch: master Date: Sun, 13 Apr 2025 17:49:50 +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: 10024d32-d25c-448a-9fa3-8bfb4583704c X-Archives-Hash: f7f36b5facf8379278bb1ab8ac7d6942 commit: 893636466a798825a60ddcdac7960faebc0700d3 Author: Mazunki Hoksaas gmail com> AuthorDate: Sat Apr 12 16:30:30 2025 +0000 Commit: David Roman gmail com> CommitDate: Sat Apr 12 16:30:30 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=89363646 app-misc/qman: add 1.4.1 Signed-off-by: Mazunki Hoksaas gmail.com> app-misc/qman/qman-1.4.1.ebuild | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/app-misc/qman/qman-1.4.1.ebuild b/app-misc/qman/qman-1.4.1.ebuild new file mode 100644 index 000000000..b167f08cb --- /dev/null +++ b/app-misc/qman/qman-1.4.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="A more modern manual page viewer for our terminals" +HOMEPAGE="https://github.com/plp13/qman" +SRC_URI="https://github.com/plp13/qman/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+doc" + +DEPEND=" + sys-libs/ncurses:= + dev-libs/inih + sys-libs/zlib +" +BDEPEND=" + dev-python/cogapp + dev-util/cunit +" +RDEPEND="${DEPEND}" + +src_configure() { + local emesonargs=( + $(meson_feature doc docs) + -Ddocdir="/usr/share/doc/${PF}" + ) + meson_src_configure +}