diff options
| author | root <root@alpha.trunkmasters.com> | 2026-07-26 03:04:34 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-07-26 03:04:34 -0500 |
| commit | 704373259ee68c274d8ce04949a32d64de4b6014 (patch) | |
| tree | 7a0e8486e2a8a023587be7210e8ee21355d86ee9 /app-portage | |
| parent | f1b8e4e12c5e5f7dc09790bb9915ce4855b5d9ea (diff) | |
| download | baldeagleos-repo-704373259ee68c274d8ce04949a32d64de4b6014.tar.gz baldeagleos-repo-704373259ee68c274d8ce04949a32d64de4b6014.tar.xz baldeagleos-repo-704373259ee68c274d8ce04949a32d64de4b6014.zip | |
Adding metadata
Diffstat (limited to 'app-portage')
| -rw-r--r-- | app-portage/gemato/Manifest | 1 | ||||
| -rw-r--r-- | app-portage/gemato/gemato-20.13.ebuild | 53 |
2 files changed, 54 insertions, 0 deletions
diff --git a/app-portage/gemato/Manifest b/app-portage/gemato/Manifest index 6a85aeca2782..62f0d9ca2355 100644 --- a/app-portage/gemato/Manifest +++ b/app-portage/gemato/Manifest @@ -1 +1,2 @@ DIST gemato-20.12.tar.gz 94139 BLAKE2B fc9c0e1b6c2419842a22bbacd85876c7664e0468fc800dd7b3bd06c5ea2cdc5cb178230b278952fc4bd4e36d6f9713fd5c6946cce61ac1116ef873a6f84f0cbf SHA512 bfbd068e562659739a77d90575c96d0dd1e7494167b73b7cf4f6a26d94a1a4e88674749b65e1635ef0b0379c93e8c3900aaf0210acc52d47b56845612d2dd6b1 +DIST gemato-20.13.tar.gz 94816 BLAKE2B 9b7d43515b7b9fd1a574a53d69be9120e1e7c352e8ab0bea6ebccf45e69e04d83755eea76b62c6043c18857ee58339b929a11ffdb4c3931841c0b648c558707c SHA512 d864cd9a93b8de64bc91fe1b64a53cd2b7f12242e3dad86042a9fe36e6f821bb4fa919ca1a8fd7cf1e84fff263d3e193ca1849d29d0d13dca875601de6c9348d diff --git a/app-portage/gemato/gemato-20.13.ebuild b/app-portage/gemato/gemato-20.13.ebuild new file mode 100644 index 000000000000..93d273255c03 --- /dev/null +++ b/app-portage/gemato/gemato-20.13.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit-core +PYTHON_COMPAT=( python3_{13..14} ) +PYTHON_REQ_USE='threads(+),ssl(+)' + +inherit distutils-r1 pypi + +DESCRIPTION="Stand-alone Manifest generation & verification tool" +HOMEPAGE=" + https://github.com/gentoo/gemato/ + https://pypi.org/project/gemato/ +" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="+gpg pretty-log tools" + +RDEPEND=" + gpg? ( + app-alternatives/gpg[ssl] + dev-python/requests[${PYTHON_USEDEP}] + ) + pretty-log? ( + dev-python/rich[${PYTHON_USEDEP}] + ) +" +# gpg for tests: trust-moel direct +# https://gitlab.com/sequoia-pgp/sequoia-chameleon-gnupg/-/work_items/152 +BDEPEND=" + test? ( + app-alternatives/gpg[ssl] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/responses[${PYTHON_USEDEP}] + ) +" + +EPYTEST_PLUGINS=() +EPYTEST_XDIST=1 +distutils_enable_tests pytest + +python_install_all() { + distutils-r1_python_install_all + + if use tools; then + exeinto /usr/share/gemato + doexe utils/*.{bash,py} + fi +} |
