guru/app-admin/pass-audit/pass-audit-1.2-r1.ebuild
David Roman a48b39abd6
app-admin/pass-audit: don't install shell completions
Don't install shell completions as they don't seem to be working.
Upstream seems to be unactive.

Closes: https://bugs.gentoo.org/927053
Signed-off-by: David Roman <davidroman96@gmail.com>
2025-03-20 13:57:26 +01:00

39 lines
742 B
Bash

# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYPI_NO_NORMALIZE=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{{11..13},13t} )
inherit distutils-r1 pypi
DESCRIPTION="A pass extension for auditing your password repository. "
HOMEPAGE="https://github.com/roddhjav/pass-audit"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
# Tests seems broken
RESTRICT="test"
DEPEND="app-admin/pass"
RDEPEND="${DEPEND}"
src_prepare() {
# Wrokaround for #921706
echo -e "from setuptools import setup\nsetup()" > setup.py || die
default
}
src_install() {
distutils-r1_src_install
doman share/man/man1/pass-audit.1
exeinto /usr/lib/password-store/extensions
doexe audit.bash
}