summaryrefslogtreecommitdiff
path: root/app-portage
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2026-07-25 18:33:07 +0200
committerMichał Górny <mgorny@gentoo.org>2026-07-25 18:34:08 +0200
commit4d9489be539c7fafccdeb703df18fc932a3f352b (patch)
tree55064e8b028a0cef8930865c8c899e603b211437 /app-portage
parent4409c61fbc62a16f33c0356051f474d49c8b2489 (diff)
app-portage/gemato: Bump to 20.13
Closes: https://bugs.gentoo.org/979433 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-portage')
-rw-r--r--app-portage/gemato/Manifest1
-rw-r--r--app-portage/gemato/gemato-20.13.ebuild53
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..4df70f60f063
--- /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_{12..15} )
+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
+}