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/gverify/
Date: Tue, 20 Apr 2021 07:02:18
Message-Id: 1618901995.f44b8e71d5c70c1209a35af10bb53c3584d7234d.mgorny@gentoo
1 commit: f44b8e71d5c70c1209a35af10bb53c3584d7234d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 20 06:59:55 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 20 06:59:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f44b8e71
7
8 app-portage/gverify: Enable py3.9
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-portage/gverify/gverify-2.ebuild | 7 +++----
13 1 file changed, 3 insertions(+), 4 deletions(-)
14
15 diff --git a/app-portage/gverify/gverify-2.ebuild b/app-portage/gverify/gverify-2.ebuild
16 index 98f18ec01d0..95d5f0cde54 100644
17 --- a/app-portage/gverify/gverify-2.ebuild
18 +++ b/app-portage/gverify/gverify-2.ebuild
19 @@ -1,9 +1,9 @@
20 -# Copyright 1999-2020 Gentoo Authors
21 +# Copyright 1999-2021 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=7
25
26 -PYTHON_COMPAT=( python3_{7,8} )
27 +PYTHON_COMPAT=( python3_{7..9} )
28 inherit python-single-r1
29
30 DESCRIPTION="gentoo.git signature verification tool"
31 @@ -13,7 +13,6 @@ SRC_URI="https://github.com/mgorny/gverify/archive/v${PV}.tar.gz -> ${P}.tar.gz"
32 LICENSE="BSD-2"
33 SLOT="0"
34 KEYWORDS="~amd64 ~x86"
35 -IUSE=""
36 REQUIRED_USE=${PYTHON_REQUIRED_USE}
37
38 RDEPEND="${PYTHON_DEPS}
39 @@ -27,6 +26,6 @@ src_compile() {
40 }
41
42 src_install() {
43 - emake install DESTDIR="${D}" PREFIX=/usr
44 + emake install DESTDIR="${D}" PREFIX="${EPREFIX}"/usr
45 dodoc README
46 }