summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2018-08-01 00:14:41 +0200
committerKhem Raj <raj.khem@gmail.com>2018-08-02 11:23:02 -0700
commitd561c5cb6bbcc0f44baaa65bc8878a121d4c9786 (patch)
tree9dbb238d15a360d517e0fe0616d7eb2efacccde8
parent19aeaf028f6819e5fa705593d4bcdbf0b98143e0 (diff)
downloadmeta-openembedded-d561c5cb6bbcc0f44baaa65bc8878a121d4c9786.tar.gz
vim, vim-tiny: Make vim provide xxd without vim-tiny doing it too
There is no xxd in vim-tiny, so there is no reason to provide vim-tiny-xxd. Besides, it is typically "xxd-native" that one wants to be able to depend on, not "vim-native-xxd" (then the old dependency on vim-native already did the trick). Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/vim/vim-tiny_8.1.0172.bb2
-rw-r--r--meta-oe/recipes-support/vim/vim_8.1.0172.bb4
2 files changed, 4 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/vim/vim-tiny_8.1.0172.bb b/meta-oe/recipes-support/vim/vim-tiny_8.1.0172.bb
index 84ad659e06..23f6aec49a 100644
--- a/meta-oe/recipes-support/vim/vim-tiny_8.1.0172.bb
+++ b/meta-oe/recipes-support/vim/vim-tiny_8.1.0172.bb
@@ -2,6 +2,8 @@ require vim_${PV}.bb
2 2
3SUMMARY += " (with tiny features)" 3SUMMARY += " (with tiny features)"
4 4
5PROVIDES_remove = "xxd"
6
5PACKAGECONFIG += "tiny" 7PACKAGECONFIG += "tiny"
6 8
7do_install() { 9do_install() {
diff --git a/meta-oe/recipes-support/vim/vim_8.1.0172.bb b/meta-oe/recipes-support/vim/vim_8.1.0172.bb
index fd2afbc5ae..371fe35eec 100644
--- a/meta-oe/recipes-support/vim/vim_8.1.0172.bb
+++ b/meta-oe/recipes-support/vim/vim_8.1.0172.bb
@@ -1,5 +1,7 @@
1SUMMARY = "Vi IMproved - enhanced vi editor" 1SUMMARY = "Vi IMproved - enhanced vi editor"
2SECTION = "console/utils" 2SECTION = "console/utils"
3
4PROVIDES = "xxd"
3DEPENDS = "ncurses gettext-native" 5DEPENDS = "ncurses gettext-native"
4# vimdiff doesn't like busybox diff 6# vimdiff doesn't like busybox diff
5RSUGGESTS_${PN} = "diffutils" 7RSUGGESTS_${PN} = "diffutils"
@@ -111,5 +113,3 @@ ALTERNATIVE_LINK_NAME[vim] = "${bindir}/vim"
111ALTERNATIVE_PRIORITY = "100" 113ALTERNATIVE_PRIORITY = "100"
112 114
113BBCLASSEXTEND = "native" 115BBCLASSEXTEND = "native"
114
115PROVIDES += "${PN}-xxd"