diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-05-29 16:37:21 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-05-29 17:03:10 +0200 |
commit | e716fc2326a0d8905a67effc866aa429c7dad580 (patch) | |
tree | a3d39ead6f3489148635b76f97c17286b737ec91 /app-portage/gemato | |
parent | sci-mathematics/wxmaxima: remove old versions (diff) | |
download | gentoo-e716fc2326a0d8905a67effc866aa429c7dad580.tar.gz gentoo-e716fc2326a0d8905a67effc866aa429c7dad580.tar.bz2 gentoo-e716fc2326a0d8905a67effc866aa429c7dad580.zip |
app-portage/gemato: Bump to 20.3, with py3.12 fix
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-portage/gemato')
-rw-r--r-- | app-portage/gemato/Manifest | 1 | ||||
-rw-r--r-- | app-portage/gemato/gemato-20.3.ebuild | 49 | ||||
-rw-r--r-- | app-portage/gemato/gemato-9999.ebuild | 3 |
3 files changed, 51 insertions, 2 deletions
diff --git a/app-portage/gemato/Manifest b/app-portage/gemato/Manifest index 3cabee2731cd..98d1ff189b50 100644 --- a/app-portage/gemato/Manifest +++ b/app-portage/gemato/Manifest @@ -1,2 +1,3 @@ DIST gemato-20.1.gh.tar.gz 86394 BLAKE2B c8f8f855a5b56dbf06eef0c99e33d4ad04c8151fa121d152c9f918059436e21dafc98d3931465cc27f4c489c8e4f576abe73efd810df09896e4fe91e9aa21814 SHA512 d4395f95b5807473511cfc9631dc9db3cff610d3f3b12c8360ee452b964ea6610c76f7f1687b6b21f44fde93d6921731b1791ff51d908d3e7fd154beef6ac596 DIST gemato-20.2.tar.gz 88522 BLAKE2B c001f54cbc1a978a861e93e663fbd943b7b3504944a53aa1a88a84a3a8c269e9cb10dd0738cf103e33abf23fb7e6b116cddf85d318ddc01372e85e4fbf93eade SHA512 d0095efbf040788c0f6f0ae11ff55666cafc030597118b20c392bdcd63e2bc2cc504a279f4219fe91e12408f22896486bd094185c5506e92600291620af2c0a8 +DIST gemato-20.3.tar.gz 88758 BLAKE2B 4943fd5a5a6908072661272220ffb55075cac36ba04b93aac299439d3a47d7d44ec0abf11082362efa0afe0e0299de4b6ae7c2693828a0bd007cc72b03f0efcc SHA512 20e7b6cda5de0ea07dcd53e2fd1baa7cd76dd22cf6535b95d6a2220b34d5c414d1899ddba173bd0803be722c0733f394bd6053ff4b3f6091e55ff62420c17709 diff --git a/app-portage/gemato/gemato-20.3.ebuild b/app-portage/gemato/gemato-20.3.ebuild new file mode 100644 index 000000000000..de40885edd5c --- /dev/null +++ b/app-portage/gemato/gemato-20.3.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +PYTHON_COMPAT=( python3_{10..12} pypy3 ) +PYTHON_REQ_USE='threads(+)' + +inherit distutils-r1 pypi + +DESCRIPTION="Stand-alone Manifest generation & verification tool" +HOMEPAGE=" + https://github.com/projg2/gemato/ + https://pypi.org/project/gemato/ +" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="+gpg pretty-log tools" + +RDEPEND=" + gpg? ( + >=app-crypt/gnupg-2.2.20-r1 + dev-python/requests[${PYTHON_USEDEP}] + ) + pretty-log? ( + dev-python/rich[${PYTHON_USEDEP}] + ) +" +BDEPEND=" + test? ( + >=app-crypt/gnupg-2.2.20-r1 + dev-python/requests[${PYTHON_USEDEP}] + dev-python/responses[${PYTHON_USEDEP}] + ) +" + +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 +} diff --git a/app-portage/gemato/gemato-9999.ebuild b/app-portage/gemato/gemato-9999.ebuild index 065c894ffff0..2930ef35cc4e 100644 --- a/app-portage/gemato/gemato-9999.ebuild +++ b/app-portage/gemato/gemato-9999.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=flit -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..12} pypy3 ) PYTHON_REQ_USE='threads(+)' inherit distutils-r1 git-r3 @@ -18,7 +18,6 @@ EGIT_REPO_URI="https://github.com/projg2/gemato.git" LICENSE="BSD-2" SLOT="0" -KEYWORDS="" IUSE="+gpg pretty-log tools" RDEPEND=" |