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: Wed, 21 Mar 2018 22:13:23
Message-Id: 1521670395.d327567921df3696258b70b829bb64cd94a1abb7.mpagano@gentoo
1 commit: d327567921df3696258b70b829bb64cd94a1abb7
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 21 22:13:06 2018 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 21 22:13:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3275679
7
8 app-portage/portpeek: Restoring
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 app-portage/portpeek/portpeek-2.1.26.ebuild | 31 +++++++++++++++++++++++++++++
13 1 file changed, 31 insertions(+)
14
15 diff --git a/app-portage/portpeek/portpeek-2.1.26.ebuild b/app-portage/portpeek/portpeek-2.1.26.ebuild
16 new file mode 100644
17 index 00000000000..06eb5a6cda3
18 --- /dev/null
19 +++ b/app-portage/portpeek/portpeek-2.1.26.ebuild
20 @@ -0,0 +1,31 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI="6"
25 +
26 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
27 +
28 +inherit python-r1
29 +
30 +DESCRIPTION="A helper program for maintaining the package.keyword and package.unmask files"
31 +HOMEPAGE="http://www.mpagano.com/blog/?page_id=3"
32 +SRC_URI="http://www.mpagano.com/downloads/${P}.tar.gz"
33 +
34 +LICENSE="GPL-2"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~x86-fbsd"
37 +IUSE=""
38 +
39 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
40 +
41 +DEPEND="${PYTHON_DEPS}"
42 +RDEPEND="${DEPEND}
43 + >=app-portage/gentoolkit-0.4.0
44 + || (
45 + >=sys-apps/portage-2.3.19-r1[${PYTHON_USEDEP}]
46 + )"
47 +
48 +src_install() {
49 + python_foreach_impl python_doscript ${PN}
50 + doman *.[0-9]
51 +}