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 962481382C5 for ; Fri, 16 Apr 2021 20:16:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB998E0829; Fri, 16 Apr 2021 20:16:12 +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 C3FF6E0829 for ; Fri, 16 Apr 2021 20:16:12 +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 2298B335D8F for ; Fri, 16 Apr 2021 20:16:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5FA92643 for ; Fri, 16 Apr 2021 20:16:09 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1618604167.922ff6bc4c9c2872e19ca835394905449d8eefb4.xgqt@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-lang/fennel/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-lang/fennel/fennel-0.9.1.ebuild dev-lang/fennel/fennel-9999.ebuild X-VCS-Directories: dev-lang/fennel/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 922ff6bc4c9c2872e19ca835394905449d8eefb4 X-VCS-Branch: dev Date: Fri, 16 Apr 2021 20:16:09 +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: 0a2118a1-3b4b-4957-ae8b-320d02745b3d X-Archives-Hash: 19c7b5197b04969fe2e80fcb4921fc19 commit: 922ff6bc4c9c2872e19ca835394905449d8eefb4 Author: Maciej Barć riseup net> AuthorDate: Fri Apr 16 20:15:38 2021 +0000 Commit: Maciej Barć riseup net> CommitDate: Fri Apr 16 20:16:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=922ff6bc dev-lang/fennel: fix installation to LUA_LIB_DIR Signed-off-by: Maciej Barć riseup.net> dev-lang/fennel/fennel-0.9.1.ebuild | 8 ++++++-- dev-lang/fennel/fennel-9999.ebuild | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/dev-lang/fennel/fennel-0.9.1.ebuild b/dev-lang/fennel/fennel-0.9.1.ebuild index d2adba074..472746211 100644 --- a/dev-lang/fennel/fennel-0.9.1.ebuild +++ b/dev-lang/fennel/fennel-0.9.1.ebuild @@ -31,11 +31,15 @@ pkg_setup() { } src_compile() { - emake LUA_VERSION="$(lua_get_version)" PREFIX="${D}/usr" + emake LUA_VERSION="$(lua_get_version)" \ + LUA_LIB_DIR="${D}/$(lua_get_lmod_dir)" \ + PREFIX="${D}/usr" } src_install() { - emake LUA_VERSION="$(lua_get_version)" PREFIX="${D}/usr" install + emake LUA_VERSION="$(lua_get_version)" \ + LUA_LIB_DIR="${D}/$(lua_get_lmod_dir)" \ + PREFIX="${D}/usr" install doman "${PN}.1" dodoc *.md } diff --git a/dev-lang/fennel/fennel-9999.ebuild b/dev-lang/fennel/fennel-9999.ebuild index d2adba074..472746211 100644 --- a/dev-lang/fennel/fennel-9999.ebuild +++ b/dev-lang/fennel/fennel-9999.ebuild @@ -31,11 +31,15 @@ pkg_setup() { } src_compile() { - emake LUA_VERSION="$(lua_get_version)" PREFIX="${D}/usr" + emake LUA_VERSION="$(lua_get_version)" \ + LUA_LIB_DIR="${D}/$(lua_get_lmod_dir)" \ + PREFIX="${D}/usr" } src_install() { - emake LUA_VERSION="$(lua_get_version)" PREFIX="${D}/usr" install + emake LUA_VERSION="$(lua_get_version)" \ + LUA_LIB_DIR="${D}/$(lua_get_lmod_dir)" \ + PREFIX="${D}/usr" install doman "${PN}.1" dodoc *.md }