commit: 99e1e3f5ec1394f4327b4f69573a3341f20f2928
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 28 14:11:58 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Dec 28 14:16:22 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99e1e3f5
app-portage/gemato: Bump to 20.11
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-portage/gemato/Manifest | 1 +
app-portage/gemato/gemato-20.11.ebuild | 51 ++++++++++++++++++++++++++++++++++
2 files changed, 52 insertions(+)
diff --git a/app-portage/gemato/Manifest b/app-portage/gemato/Manifest
index 49234910bcb1..b5af0e0a7f9a 100644
--- a/app-portage/gemato/Manifest
+++ b/app-portage/gemato/Manifest
@@ -1 +1,2 @@
DIST gemato-20.10.tar.gz 93867 BLAKE2B
5bf217b572072deb0f57af1ee0fe021f53539bc6b0318b78332de1dbb82d8e1602b3c7960fa7a5b188eba7d56b2284f9fd7551a8a10282325d5785092bc81527
SHA512
65b7d21fbc022c6bc507869e4c8e01113a0dd8ce932e1568fde5af3f75aca693539f446a2869b28824906e207ddf5f3f51df55031eec9c6460974426a3f0f0cc
+DIST gemato-20.11.tar.gz 94107 BLAKE2B
914c53b4dbdd8a99932c7be36c463efd5796bcb9fbb18a36a16b7e35d47229c38b6e1c09e292b582be63b4bc1a3d60ac8eb4a2e5f0b33c8adf5aaf6e99da1005
SHA512
17d46cce513f3cedb370383fdae6a4faa97e04384243c491404b8e619809738c099f08ebcad337507d4e809c911c44d65ae3309da41ea5efa11a8ceb37c42739
diff --git a/app-portage/gemato/gemato-20.11.ebuild
b/app-portage/gemato/gemato-20.11.ebuild
new file mode 100644
index 000000000000..9dfd8932dcac
--- /dev/null
+++ b/app-portage/gemato/gemato-20.11.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{11..14} pypy3_11 )
+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}]
+ )
+"
+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
+}