Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
Date: Sat, 25 Feb 2017 08:55:09
Message-Id: 1488012890.a0f88dd74184bf5405b782c1715586c12344d089.monsieurp@gentoo
1 commit: a0f88dd74184bf5405b782c1715586c12344d089
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 25 08:54:50 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 25 08:54:50 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0f88dd7
7
8 app-admin/cronolog: don't use globbing in PATCHES but in a separate array instead.
9
10 Globbing in PATCHES causes Portage pain, see:
11
12 https://qa-reports.gentoo.org/output/gentoo-ci/b80fba8b4/output.html#app-admin/cronolog
13
14 Package-Manager: portage-2.3.3
15
16 app-admin/cronolog/cronolog-1.6.2-r5.ebuild | 3 ++-
17 1 file changed, 2 insertions(+), 1 deletion(-)
18
19 diff --git a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
20 index 121f6cf721..387ea3582a 100644
21 --- a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
22 +++ b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
23 @@ -14,7 +14,7 @@ LICENSE="GPL-2"
24 SLOT="0"
25 KEYWORDS="~amd64 ~arm ~ppc ~x86"
26
27 -PATCHES=(
28 +MY_PATCHES=(
29 "${FILESDIR}/${PV}-patches"/*.txt
30 "${FILESDIR}/${P}-umask.patch"
31 )
32 @@ -23,6 +23,7 @@ DOCS=( AUTHORS ChangeLog INSTALL NEWS README TODO )
33
34 src_prepare() {
35 default
36 + epatch "${MY_PATCHES[@]}"
37 eautoreconf
38 }