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 80208138331 for ; Thu, 22 Mar 2018 14:24:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91AF5E09B1; Thu, 22 Mar 2018 14:24:40 +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 6E4DFE09A6 for ; Thu, 22 Mar 2018 14:24:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 27088335C59 for ; Thu, 22 Mar 2018 14:24:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F1C2524C for ; Thu, 22 Mar 2018 14:24:36 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1521728605.c581c9a1646722677a9d0998a2b83aa39dd0acd1.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/luajit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/luajit/luajit-2.0.5.ebuild X-VCS-Directories: dev-lang/luajit/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: c581c9a1646722677a9d0998a2b83aa39dd0acd1 X-VCS-Branch: master Date: Thu, 22 Mar 2018 14:24:36 +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: 8188ac24-d3e3-4d5a-a615-36bb72b26bd8 X-Archives-Hash: d2b0e2d470282a4a59f8634a0c5857b9 commit: c581c9a1646722677a9d0998a2b83aa39dd0acd1 Author: Guilherme Amadio gentoo org> AuthorDate: Mon Mar 19 22:00:15 2018 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Thu Mar 22 14:23:25 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c581c9a1 dev-lang/luajit: move back to EAPI=5 Move to EAPI=6 broke prefix (files get installed into /usr/local). Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-lang/luajit/luajit-2.0.5.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/dev-lang/luajit/luajit-2.0.5.ebuild b/dev-lang/luajit/luajit-2.0.5.ebuild index 7f2cfeeeefc..5796c4dc31f 100644 --- a/dev-lang/luajit/luajit-2.0.5.ebuild +++ b/dev-lang/luajit/luajit-2.0.5.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=5 inherit eutils multilib pax-utils versionator toolchain-funcs @@ -25,13 +25,10 @@ IUSE="lua52compat" S="${WORKDIR}/${MY_P}" -HTML_DOCS=( doc/. ) - src_prepare(){ if [[ -n ${HOTFIX} ]]; then epatch "${DISTDIR}/${HOTFIX}" fi - default } _emake() { @@ -59,5 +56,6 @@ src_install(){ pax-mark m "${ED}usr/bin/luajit-${MY_PV}" - default + cd "${S}"/doc + dohtml -r * }