app-admin/himitsu: add 0.1

Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
This commit is contained in:
Haelwenn (lanodan) Monnier
2022-06-24 05:49:29 +02:00
parent 4b9325ae72
commit fcec22579a
3 changed files with 41 additions and 4 deletions

View File

@@ -0,0 +1 @@
DIST himitsu-0.1.tar.gz 33462 BLAKE2B 67f7000290b8b52bdfb319519d26ccdbc6a02e66dcf6660515b06577a2d0b9723ed6707210400ccdb0da8311f293582150445a11b9640c262529e2335e7faf80 SHA512 0e6192e6a50a80e597acc162f211eb8372470d7ebf7a9d016dc1bb7235b82d48d2148576585a663b094b86eea63e5f504a7782dd824fb21a15f4103f5fa9efb2

View File

@@ -0,0 +1,32 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
if [[ "${PV}" = "9999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/himitsu"
else
SRC_URI="https://git.sr.ht/~sircmpwn/himitsu/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~riscv"
fi
DESCRIPTION="Secret storage system for Unix, suitable for storing passwords, keys, ..."
HOMEPAGE="https://git.sr.ht/~sircmpwn/himitsu"
LICENSE="GPL-3"
SLOT="0"
IUSE=""
DEPEND="
dev-lang/hare:=
"
RDEPEND="
gui-apps/hiprompt-gtk-py
"
BDEPEND="app-text/scdoc"
src_configure() {
sed -i 's;^PREFIX=.*;PREFIX=/usr;' Makefile || die
}

View File

@@ -3,11 +3,17 @@
EAPI=7
inherit git-r3
if [[ "${PV}" = "9999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/himitsu"
else
SRC_URI="https://git.sr.ht/~sircmpwn/himitsu/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~riscv"
fi
DESCRIPTION="Secret storage system for Unix, suitable for storing passwords, keys, ..."
HOMEPAGE="https://git.sr.ht/~sircmpwn/himitsu"
EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/himitsu"
LICENSE="GPL-3"
SLOT="0"
@@ -21,8 +27,6 @@ RDEPEND="
"
BDEPEND="app-text/scdoc"
DOCS=( README.md docs/prompter.txt )
src_configure() {
sed -i 's;^PREFIX=.*;PREFIX=/usr;' Makefile || die
}