commit: 062777ac830546761da447f69abb6c6c5fee8a74 Author: David Roman <davidroman96 <AT> gmail <DOT> com> AuthorDate: Fri Nov 17 19:20:41 2023 +0000 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org> CommitDate: Fri Nov 17 19:20:41 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=062777ac
app-admin/pass-audit: new package, add 1.2 Signed-off-by: David Roman <davidroman96 <AT> gmail.com> app-admin/pass-audit/Manifest | 1 + app-admin/pass-audit/metadata.xml | 12 +++++++++++ app-admin/pass-audit/pass-audit-1.2.ebuild | 34 ++++++++++++++++++++++++++++++ 3 files changed, 47 insertions(+) diff --git a/app-admin/pass-audit/Manifest b/app-admin/pass-audit/Manifest new file mode 100644 index 0000000000..9a4c8722b8 --- /dev/null +++ b/app-admin/pass-audit/Manifest @@ -0,0 +1 @@ +DIST pass-audit-1.2.tar.gz 56581 BLAKE2B f57a38c8343b27c05c6e8e371b421c7d5bc7381f51f3b4daf97227ffe437a930922f6deff8126f32e705e5e965774c6aeef6676dbc67594f1bead46326b4c478 SHA512 3036340b31612a52826c13ea558def3a3ca49164eb9b3c516f4923d99126cbe5e85150bca9f8ca26d70375bf92e1b06d606f39a3679de60770ab14f6f24a8267 diff --git a/app-admin/pass-audit/metadata.xml b/app-admin/pass-audit/metadata.xml new file mode 100644 index 0000000000..2cc045340b --- /dev/null +++ b/app-admin/pass-audit/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>David Roman</name> + </maintainer> + <upstream> + <remote-id type="github">roddhjav/pass-audit</remote-id> + <remote-id type="pypi">pass-audit</remote-id> + </upstream> +</pkgmetadata> diff --git a/app-admin/pass-audit/pass-audit-1.2.ebuild b/app-admin/pass-audit/pass-audit-1.2.ebuild new file mode 100644 index 0000000000..416b89cf16 --- /dev/null +++ b/app-admin/pass-audit/pass-audit-1.2.ebuild @@ -0,0 +1,34 @@ +# 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" +# No test on PYPI +RESTRICT="test" + +DEPEND="app-admin/pass" +RDEPEND="${DEPEND}" +BDEPEND="" + +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 +}
