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 BD60D1396D0 for ; Mon, 7 Aug 2017 08:04:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E62E11FC016; Mon, 7 Aug 2017 08:04:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C57A71FC016 for ; Mon, 7 Aug 2017 08:04:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A9FA93418B7 for ; Mon, 7 Aug 2017 08:04:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 216A774FA for ; Mon, 7 Aug 2017 08:04:56 +0000 (UTC) From: "Amy Liffey" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Amy Liffey" Message-ID: <1502093078.3f0fe98e778f6209d5f43d95b8ca388b3dd2ed62.amynka@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/multilog-watch/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/multilog-watch/multilog-watch-1.12-r1.ebuild app-admin/multilog-watch/multilog-watch-1.12.ebuild X-VCS-Directories: app-admin/multilog-watch/ X-VCS-Committer: amynka X-VCS-Committer-Name: Amy Liffey X-VCS-Revision: 3f0fe98e778f6209d5f43d95b8ca388b3dd2ed62 X-VCS-Branch: master Date: Mon, 7 Aug 2017 08:04:56 +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: af934bfe-ffe0-4c92-81f5-e0ca47ff063a X-Archives-Hash: 40a64b50ed2cbbfa8c97be5a3734846c commit: 3f0fe98e778f6209d5f43d95b8ca388b3dd2ed62 Author: Amy Liffey gentoo org> AuthorDate: Mon Aug 7 08:03:53 2017 +0000 Commit: Amy Liffey gentoo org> CommitDate: Mon Aug 7 08:04:38 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f0fe98e app-admin/multilog-watch: eapi bump to 6 Package-Manager: Portage-2.3.6, Repoman-2.3.1 ...watch-1.12.ebuild => multilog-watch-1.12-r1.ebuild} | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/app-admin/multilog-watch/multilog-watch-1.12.ebuild b/app-admin/multilog-watch/multilog-watch-1.12-r1.ebuild similarity index 71% rename from app-admin/multilog-watch/multilog-watch-1.12.ebuild rename to app-admin/multilog-watch/multilog-watch-1.12-r1.ebuild index a5ba20ffbe3..a8298e04e6c 100644 --- a/app-admin/multilog-watch/multilog-watch-1.12.ebuild +++ b/app-admin/multilog-watch/multilog-watch-1.12-r1.ebuild @@ -1,9 +1,11 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +EAPI=6 + inherit eutils -DESCRIPTION="Watches a multilog file for irregularities" +DESCRIPTION="Watches a multilog file for irregularities" HOMEPAGE="https://www.eyrie.org/~eagle/software/multilog-watch/" SRC_URI="https://archives.eyrie.org/software/system/multilog-watch https://www.eyrie.org/%7Eeagle/software/multilog-watch/sample.filter" @@ -17,15 +19,15 @@ RDEPEND="dev-lang/perl virtual/qmail" src_unpack() { - mkdir "${S}" - cp "${DISTDIR}"/multilog-watch "${S}" - cp "${DISTDIR}"/sample.filter "${S}" + mkdir "${S}" || die + cp "${DISTDIR}"/multilog-watch "${S}" || die + cp "${DISTDIR}"/sample.filter "${S}" || die } src_compile() { - mv multilog-watch multilog-watch.orig - sed -e 's/\/etc\/leland/\/etc\/multilog-watch/' multilog-watch.orig > multilog-watch - /usr/bin/pod2man -s 1 multilog-watch multilog-watch.1 + mv multilog-watch multilog-watch.orig || die + sed -e 's/\/etc\/leland/\/etc\/multilog-watch/' multilog-watch.orig > multilog-watch || die + /usr/bin/pod2man -s 1 multilog-watch multilog-watch.1 || die } src_install() { @@ -33,6 +35,6 @@ src_install() { insinto /etc/multilog-watch doins sample.filter - dobin multilog-watch || die 'install failed' + dobin multilog-watch doman multilog-watch.1 }