Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-portage/portconf/
Date: Tue, 03 Mar 2020 14:55:06
Message-Id: 1583247293.405eb43c6ec28148ac588d2de28a0ded6becba65.andrewammerlaan@gentoo
1 commit: 405eb43c6ec28148ac588d2de28a0ded6becba65
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
3 AuthorDate: Tue Mar 3 14:54:53 2020 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Tue Mar 3 14:54:53 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=405eb43c
7
8 app-portage/portconf: Styling fix
9
10 there is no need to specify DOCS
11 if it is just README, because this is already
12 in the default DOCS
13
14 Package-Manager: Portage-2.3.89, Repoman-2.3.20
15 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
16
17 app-portage/portconf/portconf-1.6.8-r1.ebuild | 22 ++++++++++------------
18 app-portage/portconf/portconf-9999.ebuild | 22 +++++++++++-----------
19 2 files changed, 21 insertions(+), 23 deletions(-)
20
21 diff --git a/app-portage/portconf/portconf-1.6.8-r1.ebuild b/app-portage/portconf/portconf-1.6.8-r1.ebuild
22 index 59b4014..afabf39 100644
23 --- a/app-portage/portconf/portconf-1.6.8-r1.ebuild
24 +++ b/app-portage/portconf/portconf-1.6.8-r1.ebuild
25 @@ -3,8 +3,6 @@
26
27 EAPI="7"
28
29 -inherit eutils
30 -
31 DESCRIPTION="/etc/portage cleaner"
32 HOMEPAGE="https://github.com/megabaks/portconf"
33 SRC_URI="https://github.com/megabaks/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
34 @@ -12,24 +10,24 @@ SRC_URI="https://github.com/megabaks/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
35 LICENSE="GPL-3+"
36 SLOT="0"
37 KEYWORDS="~amd64 ~arm ~x86"
38 +
39 IUSE=""
40
41 -DEPEND=" app-shells/bash:=
42 - sys-apps/portage
43 +DEPEND="
44 + app-shells/bash:=
45 + sys-apps/portage
46 "
47 RDEPEND="${DEPEND}
48 - app-portage/eix
49 - app-portage/portage-utils
50 - sys-apps/gawk
51 -
52 - || ( app-text/agrep dev-libs/tre )
53 + app-portage/eix
54 + app-portage/portage-utils
55 + sys-apps/gawk
56 + || ( app-text/agrep dev-libs/tre )
57 "
58
59 -DOCS=( README.md )
60 -
61 src_install() {
62 + default
63 +
64 dobin portconf
65 insinto /etc
66 newins portconf.conf portconf.conf
67 - einstalldocs
68 }
69
70 diff --git a/app-portage/portconf/portconf-9999.ebuild b/app-portage/portconf/portconf-9999.ebuild
71 index 074a56a..e9ab128 100644
72 --- a/app-portage/portconf/portconf-9999.ebuild
73 +++ b/app-portage/portconf/portconf-9999.ebuild
74 @@ -3,7 +3,7 @@
75
76 EAPI="7"
77
78 -inherit eutils git-r3
79 +inherit git-r3
80
81 DESCRIPTION="/etc/portage cleaner"
82 HOMEPAGE="https://github.com/megabaks/portconf"
83 @@ -12,24 +12,24 @@ EGIT_REPO_URI="https://github.com/megabaks/${PN}.git"
84 LICENSE="GPL-3+"
85 SLOT="0"
86 KEYWORDS=""
87 +
88 IUSE=""
89
90 -DEPEND=" app-shells/bash:=
91 - sys-apps/portage
92 +DEPEND="
93 + app-shells/bash:=
94 + sys-apps/portage
95 "
96 RDEPEND="${DEPEND}
97 - app-portage/eix
98 - app-portage/portage-utils
99 - sys-apps/gawk
100 -
101 - || ( app-text/agrep dev-libs/tre )
102 + app-portage/eix
103 + app-portage/portage-utils
104 + sys-apps/gawk
105 + || ( app-text/agrep dev-libs/tre )
106 "
107
108 -DOCS=( README.md )
109 -
110 src_install() {
111 + default
112 +
113 dobin portconf
114 insinto /etc
115 newins portconf.conf portconf.conf
116 - einstalldocs
117 }