From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BDE5F139694 for ; Sat, 25 Feb 2017 09:21:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC316E0C28; Sat, 25 Feb 2017 09:21:04 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C6DA2E0C28 for ; Sat, 25 Feb 2017 09:21:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9C06F340FC8 for ; Sat, 25 Feb 2017 09:21:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D7E0853EB for ; Sat, 25 Feb 2017 09:21:01 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1488014437.9b69e6921f595e6d06d2eebbac8100cc9590ec20.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/cronolog/cronolog-1.6.2-r5.ebuild X-VCS-Directories: app-admin/cronolog/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 9b69e6921f595e6d06d2eebbac8100cc9590ec20 X-VCS-Branch: master Date: Sat, 25 Feb 2017 09:21:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9a1b5ee8-a7bd-46f5-9ce8-1db5b4e21d3d X-Archives-Hash: 39b0a3c41c368d910e71ec5728a21d0b commit: 9b69e6921f595e6d06d2eebbac8100cc9590ec20 Author: Patrice Clement gentoo org> AuthorDate: Sat Feb 25 09:20:37 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Feb 25 09:20:37 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b69e692 app-admin/cronolog: don't use an array to stuff patches in but call epatch directly. Package-Manager: portage-2.3.3 app-admin/cronolog/cronolog-1.6.2-r5.ebuild | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild index 387ea3582a..3a00382de2 100644 --- a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild +++ b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild @@ -14,16 +14,11 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~x86" -MY_PATCHES=( - "${FILESDIR}/${PV}-patches"/*.txt - "${FILESDIR}/${P}-umask.patch" -) - DOCS=( AUTHORS ChangeLog INSTALL NEWS README TODO ) src_prepare() { default - epatch "${MY_PATCHES[@]}" + epatch "${FILESDIR}/${PV}-patches"/*.txt "${FILESDIR}/${P}-umask.patch" eautoreconf }