[PATCH] vim: Clarify where RDEPENDS/RRECOMMENDS apply
From: Richard Purdie <hidden>
Date: 2021-08-02 15:42:06
Subsystem:
the rest · Maintainer:
Linus Torvalds
The tricky of using BPN in a common inc file is rather hard to understand. Simplfy this by moving it to the base vim recipe and use the standard variable form. Signed-off-by: Richard Purdie <redacted> --- meta/recipes-support/vim/vim.inc | 4 ---- meta/recipes-support/vim/vim_8.2.bb | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/meta/recipes-support/vim/vim.inc b/meta/recipes-support/vim/vim.inc
index 9e4117466e0..17d1c24a7cc 100644
--- a/meta/recipes-support/vim/vim.inc
+++ b/meta/recipes-support/vim/vim.inc@@ -140,10 +140,6 @@ FILES:${PN}-common = " \ ${datadir}/icons \ " -RDEPENDS:${BPN} = "ncurses-terminfo-base" -# Recommend that runtime data is installed along with vim -RRECOMMENDS:${BPN} = "${PN}-syntax ${PN}-help ${PN}-tutor ${PN}-vimrc ${PN}-common" - ALTERNATIVE:${PN} = "vi vim" ALTERNATIVE_PRIORITY = "100" ALTERNATIVE_TARGET = "${bindir}/${BPN}.${BPN}"
diff --git a/meta/recipes-support/vim/vim_8.2.bb b/meta/recipes-support/vim/vim_8.2.bb
index 3c1b98dca08..f358e61132b 100644
--- a/meta/recipes-support/vim/vim_8.2.bb
+++ b/meta/recipes-support/vim/vim_8.2.bb@@ -2,6 +2,10 @@ require vim.inc PROVIDES = "xxd" +RDEPENDS:${PN} = "ncurses-terminfo-base" +# Recommend that runtime data is installed along with vim +RRECOMMENDS:${PN} = "${PN}-syntax ${PN}-help ${PN}-tutor ${PN}-vimrc ${PN}-common" + PACKAGECONFIG:class-native = "" BBCLASSEXTEND = "native nativesdk"
--
2.30.2