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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BF59115852A for ; Sat, 17 Aug 2024 17:14:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9DD52BC027; Sat, 17 Aug 2024 17:14:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CE59D2BC027 for ; Sat, 17 Aug 2024 17:14:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DDF4833BF60 for ; Sat, 17 Aug 2024 17:14:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4BCEE1ED6 for ; Sat, 17 Aug 2024 17:14:07 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1723914790.2a2d6fbe8ef24b0c33e04af4e92148af77da1f6f.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/neovim/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/neovim/neovim-0.10.0-r1.ebuild app-editors/neovim/neovim-0.10.0.ebuild app-editors/neovim/neovim-0.10.1.ebuild app-editors/neovim/neovim-9999.ebuild X-VCS-Directories: app-editors/neovim/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 2a2d6fbe8ef24b0c33e04af4e92148af77da1f6f X-VCS-Branch: master Date: Sat, 17 Aug 2024 17:14:07 +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: 4dce531b-dfb4-43a7-91a9-4e614c1105b3 X-Archives-Hash: 8c2345ed040672ad67d533e16e35f02e commit: 2a2d6fbe8ef24b0c33e04af4e92148af77da1f6f Author: Mike Gilbert gentoo org> AuthorDate: Sat Aug 17 17:12:30 2024 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Aug 17 17:13:10 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a2d6fbe app-editors/neovim: pass full path in LUA_PRG Closes: https://bugs.gentoo.org/936946 Signed-off-by: Mike Gilbert gentoo.org> app-editors/neovim/neovim-0.10.0-r1.ebuild | 3 +-- app-editors/neovim/neovim-0.10.0.ebuild | 3 +-- app-editors/neovim/neovim-0.10.1.ebuild | 3 +-- app-editors/neovim/neovim-9999.ebuild | 3 +-- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/app-editors/neovim/neovim-0.10.0-r1.ebuild b/app-editors/neovim/neovim-0.10.0-r1.ebuild index 399df8c4faf1..cae241418746 100644 --- a/app-editors/neovim/neovim-0.10.0-r1.ebuild +++ b/app-editors/neovim/neovim-0.10.0-r1.ebuild @@ -89,13 +89,12 @@ src_prepare() { } src_configure() { - ln -s "${BROOT}"/usr/bin/luajit "${BUILD_DIR}"/luajit || die # TODO: Investigate USE_BUNDLED, doesn't seem to be needed right now local mycmakeargs=( # appends -flto -DENABLE_LTO=OFF -DPREFER_LUA=$(usex lua_single_target_luajit no "$(lua_get_version)") - -DLUA_PRG="${ELUA}" + -DLUA_PRG="${LUA}" ) cmake_src_configure } diff --git a/app-editors/neovim/neovim-0.10.0.ebuild b/app-editors/neovim/neovim-0.10.0.ebuild index 1ae8d920bf61..8c1e075d2ee6 100644 --- a/app-editors/neovim/neovim-0.10.0.ebuild +++ b/app-editors/neovim/neovim-0.10.0.ebuild @@ -80,13 +80,12 @@ src_prepare() { } src_configure() { - ln -s "${BROOT}"/usr/bin/luajit "${BUILD_DIR}"/luajit || die # TODO: Investigate USE_BUNDLED, doesn't seem to be needed right now local mycmakeargs=( # appends -flto -DENABLE_LTO=OFF -DPREFER_LUA=$(usex lua_single_target_luajit no "$(lua_get_version)") - -DLUA_PRG="${ELUA}" + -DLUA_PRG="${LUA}" ) cmake_src_configure } diff --git a/app-editors/neovim/neovim-0.10.1.ebuild b/app-editors/neovim/neovim-0.10.1.ebuild index 430fcb85153c..d7cc51448a72 100644 --- a/app-editors/neovim/neovim-0.10.1.ebuild +++ b/app-editors/neovim/neovim-0.10.1.ebuild @@ -90,13 +90,12 @@ src_prepare() { } src_configure() { - ln -s "${BROOT}"/usr/bin/luajit "${BUILD_DIR}"/luajit || die # TODO: Investigate USE_BUNDLED, doesn't seem to be needed right now local mycmakeargs=( # appends -flto -DENABLE_LTO=OFF -DPREFER_LUA=$(usex lua_single_target_luajit no "$(lua_get_version)") - -DLUA_PRG="${ELUA}" + -DLUA_PRG="${LUA}" ) cmake_src_configure } diff --git a/app-editors/neovim/neovim-9999.ebuild b/app-editors/neovim/neovim-9999.ebuild index ee6477ed945e..a322637e75c8 100644 --- a/app-editors/neovim/neovim-9999.ebuild +++ b/app-editors/neovim/neovim-9999.ebuild @@ -90,13 +90,12 @@ src_prepare() { } src_configure() { - ln -s "${BROOT}"/usr/bin/luajit "${BUILD_DIR}"/luajit || die # TODO: Investigate USE_BUNDLED, doesn't seem to be needed right now local mycmakeargs=( # appends -flto -DENABLE_LTO=OFF -DPREFER_LUA=$(usex lua_single_target_luajit no "$(lua_get_version)") - -DLUA_PRG="${ELUA}" + -DLUA_PRG="${LUA}" ) cmake_src_configure }