app-admin/himitsu-ssh: add 0.3, drop 0.2

Closes: https://bugs.gentoo.org/927478
Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
This commit is contained in:
Haelwenn (lanodan) Monnier
2024-03-22 15:14:13 +01:00
parent cc66a9ac92
commit a88a136a7f
3 changed files with 17 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
# Copyright 2022 Gentoo Authors
# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -16,14 +16,13 @@ HOMEPAGE="https://git.sr.ht/~sircmpwn/himitsu-ssh"
LICENSE="GPL-3"
SLOT="0"
RDEPEND="
app-admin/himitsu:=
dev-hare/hare-ssh:=
>=dev-hare/hare-ssh-0.24.0:=
"
DEPEND="
${RDEPEND}
dev-lang/hare:=
>=dev-lang/hare-0.24.0:=
"
BDEPEND="app-text/scdoc"
@@ -33,3 +32,8 @@ QA_FLAGS_IGNORED=".*"
src_configure() {
sed -i 's;^PREFIX=.*;PREFIX=/usr;' Makefile || die
}
src_test() {
# Don't run tests if there's none (which is the case of 0.3)
grep -r '@test fn' . && emake check
}