mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
First I made the package using pypi file, then I saw Github tarball contains tests so I switched to GH but then I saw the tests was not working and switched back to pypi. In the process I forgot to update Manifest file. Hence the mismatch. Closes: https://bugs.gentoo.org/917671 Signed-off-by: David Roman <davidroman96@gmail.com>
34 lines
757 B
Bash
34 lines
757 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_{10,11,12} )
|
|
|
|
inherit distutils-r1 pypi shell-completion
|
|
|
|
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_install() {
|
|
distutils-r1_src_install
|
|
|
|
newbashcomp share/bash-completion/completions/pass-audit "${PN}"
|
|
newzshcomp share/zsh/site-functions/_pass-audit _"${PN}"
|
|
doman share/man/man1/pass-audit.1
|
|
|
|
exeinto /usr/lib/password-store/extensions
|
|
doexe audit.bash
|
|
}
|