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 09:21:06
Message-Id: 1488014437.9b69e6921f595e6d06d2eebbac8100cc9590ec20.monsieurp@gentoo
1 commit: 9b69e6921f595e6d06d2eebbac8100cc9590ec20
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 25 09:20:37 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 25 09:20:37 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b69e692
7
8 app-admin/cronolog: don't use an array to stuff patches in but call epatch directly.
9
10 Package-Manager: portage-2.3.3
11
12 app-admin/cronolog/cronolog-1.6.2-r5.ebuild | 7 +------
13 1 file changed, 1 insertion(+), 6 deletions(-)
14
15 diff --git a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
16 index 387ea3582a..3a00382de2 100644
17 --- a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
18 +++ b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
19 @@ -14,16 +14,11 @@ LICENSE="GPL-2"
20 SLOT="0"
21 KEYWORDS="~amd64 ~arm ~ppc ~x86"
22
23 -MY_PATCHES=(
24 - "${FILESDIR}/${PV}-patches"/*.txt
25 - "${FILESDIR}/${P}-umask.patch"
26 -)
27 -
28 DOCS=( AUTHORS ChangeLog INSTALL NEWS README TODO )
29
30 src_prepare() {
31 default
32 - epatch "${MY_PATCHES[@]}"
33 + epatch "${FILESDIR}/${PV}-patches"/*.txt "${FILESDIR}/${P}-umask.patch"
34 eautoreconf
35 }