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 3B6B9139695 for ; Sat, 25 Feb 2017 09:33:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5ED92E0CAD; Sat, 25 Feb 2017 09:33:44 +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 3BB98E0CAD for ; Sat, 25 Feb 2017 09:33:44 +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 E822234105A for ; Sat, 25 Feb 2017 09:33:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AAD9253F0 for ; Sat, 25 Feb 2017 09:33:40 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1488015069.c51d3151dcfef28e7aef55e1093c60e652edfb2d.slyfox@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: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: c51d3151dcfef28e7aef55e1093c60e652edfb2d X-VCS-Branch: master Date: Sat, 25 Feb 2017 09:33:40 +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: fb07053a-90da-4b85-8295-25a2d0a148df X-Archives-Hash: adf77c7468f4eb591da7f733739b990a commit: c51d3151dcfef28e7aef55e1093c60e652edfb2d Author: Sergei Trofimovich gentoo org> AuthorDate: Sat Feb 25 09:18:56 2017 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sat Feb 25 09:31:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c51d3151 app-admin/cronolog: expand patches glob Inline all available patches explicitly to make ebuild stable against addition/removal of patches into a directory. While at it drop src_install() as it's the same as EAPI=6 src_install(). app-admin/cronolog/cronolog-1.6.2-r5.ebuild | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 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 3a00382de2..690148fc1a 100644 --- a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild +++ b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild @@ -14,15 +14,21 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~x86" +PATCHES=( + "${FILESDIR}"/${PV}-patches/${PN}-define-strptime.patch.txt + "${FILESDIR}"/${PV}-patches/${PN}-doc.patch.txt + "${FILESDIR}"/${PV}-patches/${PN}-getopt-long.patch.txt + "${FILESDIR}"/${PV}-patches/${PN}-large-file-patch.txt + "${FILESDIR}"/${PV}-patches/${PN}-missing-symlink-patch.txt + "${FILESDIR}"/${PV}-patches/${PN}-setugid-patch.txt + "${FILESDIR}"/${PV}-patches/${PN}-sigusr1-patch.txt + "${FILESDIR}"/${PV}-patches/${PN}-strftime-patch.txt + "${FILESDIR}"/${P}-umask.patch +) + DOCS=( AUTHORS ChangeLog INSTALL NEWS README TODO ) src_prepare() { default - epatch "${FILESDIR}/${PV}-patches"/*.txt "${FILESDIR}/${P}-umask.patch" eautoreconf } - -src_install() { - emake DESTDIR="${D}" install - einstalldocs -}