diff options
author | listout <listout@protonmail.com> | 2023-01-04 14:49:28 +0530 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-01-05 05:20:10 +0000 |
commit | f91cb005d0f1610655c3d91b2172482c6d481189 (patch) | |
tree | 98ab8ee48be6aa0e2015ba65f92d17813ffe1f69 /app-editors/neovim | |
parent | net-analyzer/wtfis: drop 0.4.0 (diff) | |
download | gentoo-f91cb005d0f1610655c3d91b2172482c6d481189.tar.gz gentoo-f91cb005d0f1610655c3d91b2172482c6d481189.tar.bz2 gentoo-f91cb005d0f1610655c3d91b2172482c6d481189.zip |
app-editors/neovim: Syncing live ebuild to 0.8.2 ebuild
With PR #28893, the syntax of adding patches is modified, this PR is
reflecting those changes in the live ebuild.
Referrence: https://github.com/gentoo/gentoo/pull/28893#issuecomment-1370510768
Signed-off-by: listout <listout@protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/28957
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-editors/neovim')
-rw-r--r-- | app-editors/neovim/neovim-9999.ebuild | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/app-editors/neovim/neovim-9999.ebuild b/app-editors/neovim/neovim-9999.ebuild index da37df6874aa..6083e311ff39 100644 --- a/app-editors/neovim/neovim-9999.ebuild +++ b/app-editors/neovim/neovim-9999.ebuild @@ -68,17 +68,14 @@ BDEPEND=" ) " -PATCHES=() +PATCHES=( + "${FILESDIR}/${PN}-9999-cmake_lua_version.patch" + "${FILESDIR}/${PN}-9999-cmake-darwin.patch" +) -if [[ ${PV} == 9999 ]]; then - PATCHES+=( - "${FILESDIR}/${PN}-9999-cmake_lua_version.patch" - "${FILESDIR}/${PN}-9999-cmake-darwin.patch" - ) -else +if [[ ${PV} != 9999 ]]; then PATCHES+=( - "${FILESDIR}/${PN}-9999-cmake_lua_version.patch" - "${FILESDIR}/${PN}-9999-cmake-darwin.patch" + "${FILESDIR}/${PN}-0.8.0-cmake-release-type.patch" ) fi |