commit: 8c6b4c95c31e181eacff25913759bd529e132328 Author: brahmajit das <brahmajit.xyz <AT> gmail <DOT> com> AuthorDate: Mon Apr 10 08:57:26 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Apr 13 06:31:14 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c6b4c95
app-editors/neovim: Fix cmake unused variable warning MIN_LOG_LEVEL and FEAT_TUI have been removed from v0.9.0, hence the warning. Closes: https://bugs.gentoo.org/904095 Signed-off-by: brahmajit das <brahmajit.xyz <AT> gmail.com> Closes: https://github.com/gentoo/gentoo/pull/30535 Signed-off-by: Sam James <sam <AT> gentoo.org> app-editors/neovim/neovim-0.9.0.ebuild | 2 -- app-editors/neovim/neovim-9999.ebuild | 2 -- 2 files changed, 4 deletions(-) diff --git a/app-editors/neovim/neovim-0.9.0.ebuild b/app-editors/neovim/neovim-0.9.0.ebuild index 783269f4e2a4..b92e353a472e 100644 --- a/app-editors/neovim/neovim-0.9.0.ebuild +++ b/app-editors/neovim/neovim-0.9.0.ebuild @@ -93,10 +93,8 @@ src_configure() { # TODO: Investigate USE_BUNDLED, doesn't seem to be needed right now local mycmakeargs=( -DENABLE_LTO=$(usex lto) - -DFEAT_TUI=$(usex tui) -DPREFER_LUA=$(usex lua_single_target_luajit no "$(lua_get_version)") -DLUA_PRG="${ELUA}" - -DMIN_LOG_LEVEL=3 ) cmake_src_configure } diff --git a/app-editors/neovim/neovim-9999.ebuild b/app-editors/neovim/neovim-9999.ebuild index de4037df1928..d456e95aaf16 100644 --- a/app-editors/neovim/neovim-9999.ebuild +++ b/app-editors/neovim/neovim-9999.ebuild @@ -92,10 +92,8 @@ src_configure() { # TODO: Investigate USE_BUNDLED, doesn't seem to be needed right now local mycmakeargs=( -DENABLE_LTO=$(usex lto) - -DFEAT_TUI=$(usex tui) -DPREFER_LUA=$(usex lua_single_target_luajit no "$(lua_get_version)") -DLUA_PRG="${ELUA}" - -DMIN_LOG_LEVEL=3 ) cmake_src_configure }
