Gentoo Archives: gentoo-commits

From: Mike Pagano <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/portpeek/
Date: Sat, 08 Feb 2020 20:49:04
Message-Id: 1581194926.8c19a7316bda70de799a79740ab211d69dca5837.mpagano@gentoo
1 commit: 8c19a7316bda70de799a79740ab211d69dca5837
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 8 20:48:46 2020 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 8 20:48:46 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c19a731
7
8 app-portage/portpeek: Support python 3.8
9
10 Package-Manager: Portage-2.3.85, Repoman-2.3.20
11 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
12
13 app-portage/portpeek/portpeek-2.1.27-r1.ebuild | 30 ++++++++++++++++++++++++++
14 1 file changed, 30 insertions(+)
15
16 diff --git a/app-portage/portpeek/portpeek-2.1.27-r1.ebuild b/app-portage/portpeek/portpeek-2.1.27-r1.ebuild
17 new file mode 100644
18 index 00000000000..a1b5331b43d
19 --- /dev/null
20 +++ b/app-portage/portpeek/portpeek-2.1.27-r1.ebuild
21 @@ -0,0 +1,30 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI="7"
26 +PYTHON_COMPAT=( python3_{6,7,8} )
27 +
28 +inherit python-r1
29 +
30 +DESCRIPTION="A helper program for maintaining the package.keyword and package.unmask files"
31 +HOMEPAGE="https://www.mpagano.com/blog/?page_id=3"
32 +SRC_URI="https://www.mpagano.com/downloads/${P}.tar.gz"
33 +
34 +LICENSE="GPL-2"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
37 +IUSE=""
38 +
39 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
40 +
41 +DEPEND="${PYTHON_DEPS}"
42 +RDEPEND="${DEPEND}
43 + >=app-portage/gentoolkit-0.4.7
44 + || (
45 + >=sys-apps/portage-2.3.85[${PYTHON_USEDEP}]
46 + )"
47 +
48 +src_install() {
49 + python_foreach_impl python_doscript ${PN}
50 + doman *.[0-9]
51 +}