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 3AC2A138334 for ; Fri, 29 Mar 2019 08:16:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 49B87E089E; Fri, 29 Mar 2019 08:16:56 +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 1FC47E089E for ; Fri, 29 Mar 2019 08:16:56 +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 78DF0335C67 for ; Fri, 29 Mar 2019 08:16:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0959D578 for ; Fri, 29 Mar 2019 08:16:53 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1553847406.73e1b27f7550812417d63488c510c28c07b76589.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/eclass-manpages/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-doc/eclass-manpages/eclass-manpages-99999999.ebuild X-VCS-Directories: app-doc/eclass-manpages/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 73e1b27f7550812417d63488c510c28c07b76589 X-VCS-Branch: master Date: Fri, 29 Mar 2019 08:16:53 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a377f570-3072-4f52-aa9d-d98649c86d40 X-Archives-Hash: 8521f3722f0c3a5b03b8819144670eee commit: 73e1b27f7550812417d63488c510c28c07b76589 Author: Michał Górny gentoo org> AuthorDate: Fri Mar 29 07:50:46 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Mar 29 08:16:46 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73e1b27f app-doc/eclass-manpages: Switch live ebuild to use dedicated repo Switch the live ebuild to use the dedicated script repository rather than keeping the script in FILESDIR. Signed-off-by: Michał Górny gentoo.org> app-doc/eclass-manpages/eclass-manpages-99999999.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/app-doc/eclass-manpages/eclass-manpages-99999999.ebuild b/app-doc/eclass-manpages/eclass-manpages-99999999.ebuild index 7dfb0d7e0d2..a0e75b5e7e2 100644 --- a/app-doc/eclass-manpages/eclass-manpages-99999999.ebuild +++ b/app-doc/eclass-manpages/eclass-manpages-99999999.ebuild @@ -16,15 +16,20 @@ SLOT="0" KEYWORDS="" IUSE="" +DEPEND="sys-apps/gawk" + src_unpack() { git-r3_fetch + git-r3_fetch "https://github.com/mgorny/eclass-to-manpage" + git-r3_checkout '' '' '' eclass + git-r3_checkout "https://github.com/mgorny/eclass-to-manpage" } src_compile() { - env ECLASSDIR="${S}/eclass" bash "${FILESDIR}"/eclass-to-manpage.sh || die + emake ECLASSDIR=eclass } src_install() { - doman *.5 + emake install ECLASSDIR=eclass DESTDIR="${D}" PREFIX=/usr }