commit: bbba70c76140f780a11a1c450cffd9d7c41bd0a1 Author: Mazunki Hoksaas <rolferen <AT> gmail <DOT> com> AuthorDate: Tue Feb 4 17:00:47 2025 +0000 Commit: Mazunki Hoksaas <rolferen <AT> gmail <DOT> com> CommitDate: Tue Feb 4 17:00:47 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bbba70c7
app-misc/qman: new package, add 1.2.1, 9999 Signed-off-by: Mazunki Hoksaas <rolferen <AT> gmail.com> app-misc/qman/Manifest | 1 + app-misc/qman/metadata.xml | 12 ++++++++++++ app-misc/qman/qman-1.2.1.ebuild | 30 ++++++++++++++++++++++++++++++ app-misc/qman/qman-9999.ebuild | 30 ++++++++++++++++++++++++++++++ 4 files changed, 73 insertions(+) diff --git a/app-misc/qman/Manifest b/app-misc/qman/Manifest new file mode 100644 index 000000000..425b71934 --- /dev/null +++ b/app-misc/qman/Manifest @@ -0,0 +1 @@ +DIST qman-1.2.1.tar.gz 932376 BLAKE2B 7f364a8f981926b142c0bd14c87ff0573ec2acd9655484c3040caa52311176ebe59dd09ece190055bed2973eac59d4241ab5acfa9e87810a7b9a3e60b22a43e0 SHA512 c5e627dfc06d7181d957fd9fd1ab9b042e90a3b7ec3b5e56c0b91bdf7d8864aeb4d8f45833e7b0ce54c7b48cf60788c6edcf23518069598086858a87b8f7ba20 diff --git a/app-misc/qman/metadata.xml b/app-misc/qman/metadata.xml new file mode 100644 index 000000000..f529608ee --- /dev/null +++ b/app-misc/qman/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>Mazunki Hoksaas</name> + </maintainer> + <stabilize-allarches/> + <upstream> + <remote-id type="github">plp13/qman</remote-id> + </upstream> +</pkgmetadata> diff --git a/app-misc/qman/qman-1.2.1.ebuild b/app-misc/qman/qman-1.2.1.ebuild new file mode 100644 index 000000000..12d9e3a46 --- /dev/null +++ b/app-misc/qman/qman-1.2.1.ebuild @@ -0,0 +1,30 @@ +# 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 +man" + +DEPEND="sys-libs/ncurses + dev-libs/inih + sys-libs/zlib + dev-python/cogapp" +RDEPEND="${DEPEND}" + +src_configure() { + local emesonargs=( + $(meson_feature man man-pages) + $(meson_feature doc docs) + -Ddocdir="/usr/share/doc/${PF}" + ) + meson_src_configure +} diff --git a/app-misc/qman/qman-9999.ebuild b/app-misc/qman/qman-9999.ebuild new file mode 100644 index 000000000..de0e58bdd --- /dev/null +++ b/app-misc/qman/qman-9999.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson git-r3 + +DESCRIPTION="A more modern manual page viewer for our terminals" +HOMEPAGE="https://github.com/plp13/qman" +EGIT_REPO_URI="https://github.com/plp13/qman.git" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="" +IUSE="+doc +man" + +DEPEND="sys-libs/ncurses + dev-libs/inih + sys-libs/zlib + dev-python/cogapp" +RDEPEND="${DEPEND}" + +src_configure() { + local emesonargs=( + $(meson_feature man man-pages) + $(meson_feature doc docs) + -Ddocdir="/usr/share/doc/${PF}" + ) + meson_src_configure +}
