Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/gemato/
Date: Sat, 31 Dec 2022 12:37:13
Message-Id: 1672489870.a7da4fdba3b9e9613501cf07c8b03c1b3c672e0a.mgorny@gentoo
1 commit: a7da4fdba3b9e9613501cf07c8b03c1b3c672e0a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 31 12:31:10 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 31 12:31:10 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7da4fdb
7
8 app-portage/gemato: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-portage/gemato/Manifest | 1 -
13 app-portage/gemato/gemato-16.2.ebuild | 42 -----------------------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/app-portage/gemato/Manifest b/app-portage/gemato/Manifest
17 index a53cf3add977..1ae0ae6f35b2 100644
18 --- a/app-portage/gemato/Manifest
19 +++ b/app-portage/gemato/Manifest
20 @@ -1,2 +1 @@
21 -DIST gemato-16.2.tar.gz 80178 BLAKE2B c973c36bb1277d07618ba8d90f7d6820508d78aedae200f0678c8b2e1dde38e3b7f4d7dc24791dedb9c88791d3b71711c9bdeb749b5fc091a20aa87f71ad70d3 SHA512 9d59ba360afaf237e47c5ded0e5bc29ec44d5b1d73eadadc19ff834a1966e1e620da258eb7a1b6afbff5c66cbd7e39454fd5920f2f82fc510c2f8836c0b80462
22 DIST gemato-17.0.tar.gz 83991 BLAKE2B 7a01b8ecb9e3540c698b7d57e5b6ba0961d42e7edd51e7b422d0e3d89088230633f3402b19168b3ccb772f028a3f669b324e76fa84f1918afa1c92c728942f14 SHA512 22066939ccab081c5d2bd52eab587aed0893b11cac40256a2e08a9a2f14e20320acaffd3414c4111bf27db15aca6d76a3856b6a3d8d5019fd649a2f7e07e3265
23
24 diff --git a/app-portage/gemato/gemato-16.2.ebuild b/app-portage/gemato/gemato-16.2.ebuild
25 deleted file mode 100644
26 index 00a120a58c04..000000000000
27 --- a/app-portage/gemato/gemato-16.2.ebuild
28 +++ /dev/null
29 @@ -1,42 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{8..11} pypy3 )
36 -PYTHON_REQ_USE='threads(+)'
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Stand-alone Manifest generation & verification tool"
41 -HOMEPAGE="https://github.com/projg2/gemato"
42 -SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="BSD-2"
45 -SLOT="0"
46 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux"
47 -IUSE="+gpg tools"
48 -
49 -RDEPEND="
50 - gpg? (
51 - >=app-crypt/gnupg-2.2.20-r1
52 - dev-python/requests[${PYTHON_USEDEP}]
53 - )"
54 -BDEPEND="
55 - test? (
56 - >=app-crypt/gnupg-2.2.20-r1
57 - >=dev-python/pytest-5[${PYTHON_USEDEP}]
58 - dev-python/requests[${PYTHON_USEDEP}]
59 - dev-python/responses[${PYTHON_USEDEP}]
60 - )"
61 -
62 -distutils_enable_tests pytest
63 -
64 -python_install_all() {
65 - distutils-r1_python_install_all
66 -
67 - if use tools; then
68 - exeinto /usr/share/gemato
69 - doexe utils/*.{bash,py}
70 - fi
71 -}