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 12F3F15ACFB for ; Thu, 13 Apr 2023 06:31:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FA98E079C; Thu, 13 Apr 2023 06:31:29 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1BBF3E079C for ; Thu, 13 Apr 2023 06:31:29 +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 D6115340D69 for ; Thu, 13 Apr 2023 06:31:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4702F7B for ; Thu, 13 Apr 2023 06:31:25 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1681367474.8c6b4c95c31e181eacff25913759bd529e132328.sam@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.9.0.ebuild app-editors/neovim/neovim-9999.ebuild X-VCS-Directories: app-editors/neovim/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8c6b4c95c31e181eacff25913759bd529e132328 X-VCS-Branch: master Date: Thu, 13 Apr 2023 06:31:25 +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: e0eb793b-9cb6-48f7-80ee-07d5215e42ff X-Archives-Hash: 60d3885b3bc6dc741080ca2ee1843baa commit: 8c6b4c95c31e181eacff25913759bd529e132328 Author: brahmajit das gmail com> AuthorDate: Mon Apr 10 08:57:26 2023 +0000 Commit: Sam James gentoo 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 gmail.com> Closes: https://github.com/gentoo/gentoo/pull/30535 Signed-off-by: Sam James 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 }