app-misc/qman: add 1.4.2

Signed-off-by: Mazunki Hoksaas <rolferen@gmail.com>
This commit is contained in:
Mazunki Hoksaas
2025-04-27 14:41:14 +02:00
parent fe02daf5d3
commit c261030d63
2 changed files with 39 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST qman-1.4.0.tar.gz 944937 BLAKE2B e13c57f5a6ed6b0e8503bf63911169cd1b9416060baae04390be65976a20684bd50340ee062aeec00f2d404f2d785fc4c9c15584afbb86b1a2f40f6ed45d4f7b SHA512 a75ec8b79fe28e862210f6f3818a3eca7eecc983aaa7c75770c9bb970b6196647ac1ac42ad00356b68163fe443544b9c22f06a225b0449789f2a069f29313c27
DIST qman-1.4.1.tar.gz 945597 BLAKE2B 5ceac8a624f5a30788ba45f10c99d0688c1f766ccc262a89344a29d4f81ad353be849b49bed4b970105d74fe68ee7546948766dcbde15b4b8eed82f12eae4401 SHA512 1a685af21c019a69504445c9e11941c74b95964cee97de04f1ea95e8b0d26ec4806c641250b2553cf34533b05b9adb2c801e7abf63ed0aa2d9ac9c339d81e6d0
DIST qman-1.4.2.tar.gz 945614 BLAKE2B 82c62c2718996289240daf9c8dd663b1c0524f2f07da6c997a17bdac77d2fb645d108aaf13cbd300bb7bf1ed25167466fd85c47c0ec94e01708d6a085d529cdb SHA512 405b7497baa60efe11a941d6e8c701e8e024ceedc29e24bb4019766cc959496a6717e9b372cd6cff25f7ca39cee9909a5c14956e5a20e5341b4c5f78d372d184

View File

@@ -0,0 +1,38 @@
# 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 test"
RESTRICT="!test? ( test )"
DEPEND="
sys-libs/ncurses:=
dev-libs/inih
sys-libs/zlib
"
BDEPEND="
dev-python/cogapp
test? (
dev-util/cunit
)
"
RDEPEND="${DEPEND}"
src_configure() {
local emesonargs=(
$(meson_feature doc docs)
$(meson_feature test tests)
-Ddocdir="/usr/share/doc/${PF}"
)
meson_src_configure
}