diff options
author | Tom Rini <trini@konsulko.com> | 2019-03-06 15:33:44 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-03-06 23:12:27 +0000 |
commit | f08b1e12a024e02ad3d6c1472030f82aa477b076 (patch) | |
tree | 3ec19675c05bd1883fa61105ae896a621112f980 /meta/recipes-support | |
parent | ccc413fd93f5e7572afd50bbfac8532f07fed9b1 (diff) | |
download | poky-f08b1e12a024e02ad3d6c1472030f82aa477b076.tar.gz |
vim: Import version 8.1.0347
In order to have a stand-alone editor in oe-core, bring in vim from
meta-openembedded/meta-oe. This imports the recipes as of git commit:
commit 41f3f8165bde3eb4f8bcf6dddbaca0d3b760c70b
Author: Mark Hatle <mark.hatle@windriver.com>
Date: Thu Feb 28 09:39:19 2019 +0800
vim: remove xfce vim bbappend
Changing the behavior of a recipe by including a layer is not allowed
by the yocto-check-layer script.
(From OE-Core rev: cc2022ad369a74ee3f60c345778e4fe206f5df36)
Signed-off-by: Tom Rini <trini@konsulko.com>
--
Changes in v3:
- Catch vim-tiny too (thanks Richard!)
Changes in v2:
- List self as maintainer
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
5 files changed, 271 insertions, 0 deletions
diff --git a/meta/recipes-support/vim/files/0001-src-Makefile-improve-reproducibility.patch b/meta/recipes-support/vim/files/0001-src-Makefile-improve-reproducibility.patch new file mode 100644 index 0000000000..63a7b78f12 --- /dev/null +++ b/meta/recipes-support/vim/files/0001-src-Makefile-improve-reproducibility.patch | |||
@@ -0,0 +1,46 @@ | |||
1 | From 133ab27cdb17ca20ef6b0304cf30621d2bcbe757 Mon Sep 17 00:00:00 2001 | ||
2 | From: Mingli Yu <mingli.yu@windriver.com> | ||
3 | Date: Thu, 31 Jan 2019 21:32:26 -0800 | ||
4 | Subject: [PATCH] src/Makefile: improve reproducibility | ||
5 | |||
6 | Clear all_cflags, all_lflags, compiled_user | ||
7 | and compiled_sys to avoid introducing build | ||
8 | info to improve reproducibility as below: | ||
9 | |||
10 | WARNING: vim-8.1.0347-r0 do_package_qa: QA Issue: File /work/core2-64-wrs-linux/vim/8.1.0347-r0/packages-split/vim/usr/bin/vim.vim in package contained reference to tmpdir [buildpaths] | ||
11 | |||
12 | Upstream-Status: Inappropriate [oe specific] | ||
13 | |||
14 | Signed-off-by: Mingli Yu <mingli.yu@windriver.com> | ||
15 | --- | ||
16 | src/Makefile | 14 ++++---------- | ||
17 | 1 file changed, 4 insertions(+), 10 deletions(-) | ||
18 | |||
19 | diff --git a/src/Makefile b/src/Makefile | ||
20 | index f2fafa4dc..7148d4bd9 100644 | ||
21 | --- a/src/Makefile | ||
22 | +++ b/src/Makefile | ||
23 | @@ -2845,16 +2845,10 @@ auto/pathdef.c: Makefile auto/config.mk | ||
24 | -@echo '#include "vim.h"' >> $@ | ||
25 | -@echo 'char_u *default_vim_dir = (char_u *)"$(VIMRCLOC)";' | $(QUOTESED) >> $@ | ||
26 | -@echo 'char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR)";' | $(QUOTESED) >> $@ | ||
27 | - -@echo 'char_u *all_cflags = (char_u *)"$(CC) -c -I$(srcdir) $(ALL_CFLAGS)";' | $(QUOTESED) >> $@ | ||
28 | - -@echo 'char_u *all_lflags = (char_u *)"$(CC) $(ALL_LIB_DIRS) $(LDFLAGS) -o $(VIMTARGET) $(ALL_LIBS) ";' | $(QUOTESED) >> $@ | ||
29 | - -@echo 'char_u *compiled_user = (char_u *)"' | tr -d $(NL) >> $@ | ||
30 | - -@if test -n "$(COMPILEDBY)"; then \ | ||
31 | - echo "$(COMPILEDBY)" | tr -d $(NL) >> $@; \ | ||
32 | - else ((logname) 2>/dev/null || whoami) | tr -d $(NL) >> $@; fi | ||
33 | - -@echo '";' >> $@ | ||
34 | - -@echo 'char_u *compiled_sys = (char_u *)"' | tr -d $(NL) >> $@ | ||
35 | - -@if test -z "$(COMPILEDBY)"; then hostname | tr -d $(NL) >> $@; fi | ||
36 | - -@echo '";' >> $@ | ||
37 | + -@echo 'char_u *all_cflags = (char_u *)"";' | $(QUOTESED) >> $@ | ||
38 | + -@echo 'char_u *all_lflags = (char_u *)"";' | $(QUOTESED) >> $@ | ||
39 | + -@echo 'char_u *compiled_user = (char_u *)"";' >> $@ | ||
40 | + -@echo 'char_u *compiled_sys = (char_u *)"";' >> $@ | ||
41 | -@sh $(srcdir)/pathdef.sh | ||
42 | |||
43 | GUI_GTK_RES_INPUTS = \ | ||
44 | -- | ||
45 | 2.17.1 | ||
46 | |||
diff --git a/meta/recipes-support/vim/files/disable_acl_header_check.patch b/meta/recipes-support/vim/files/disable_acl_header_check.patch new file mode 100644 index 0000000000..4720003c25 --- /dev/null +++ b/meta/recipes-support/vim/files/disable_acl_header_check.patch | |||
@@ -0,0 +1,39 @@ | |||
1 | From 5ed25c076a1fb1889a3c50dddf29f21850b59a13 Mon Sep 17 00:00:00 2001 | ||
2 | From: Wenzong Fan <wenzong.fan@windriver.com> | ||
3 | Date: Tue, 26 Jun 2018 17:29:09 +0800 | ||
4 | Subject: [PATCH] disable acl header check | ||
5 | |||
6 | Don't check 'sys/acl.h' if acl support disabled for vim/vim-tiny. | ||
7 | |||
8 | Upstream-Status: pending | ||
9 | |||
10 | Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com> | ||
11 | Signed-off-by: Changqing Li <changqing.li@windriver.com> | ||
12 | --- | ||
13 | src/configure.ac | 3 ++- | ||
14 | 1 file changed, 2 insertions(+), 1 deletion(-) | ||
15 | |||
16 | diff --git a/src/configure.ac b/src/configure.ac | ||
17 | index 107c170..0ee86ad 100644 | ||
18 | --- a/src/configure.ac | ||
19 | +++ b/src/configure.ac | ||
20 | @@ -3220,7 +3220,7 @@ AC_CHECK_HEADERS(stdint.h stdlib.h string.h \ | ||
21 | sys/systeminfo.h locale.h sys/stream.h termios.h \ | ||
22 | libc.h sys/statfs.h poll.h sys/poll.h pwd.h \ | ||
23 | utime.h sys/param.h libintl.h libgen.h \ | ||
24 | - util/debug.h util/msg18n.h frame.h sys/acl.h \ | ||
25 | + util/debug.h util/msg18n.h frame.h \ | ||
26 | sys/access.h sys/sysinfo.h wchar.h wctype.h) | ||
27 | |||
28 | dnl sys/ptem.h depends on sys/stream.h on Solaris | ||
29 | @@ -3848,6 +3848,7 @@ AC_ARG_ENABLE(acl, | ||
30 | , [enable_acl="yes"]) | ||
31 | if test "$enable_acl" = "yes"; then | ||
32 | AC_MSG_RESULT(no) | ||
33 | + AC_CHECK_HEADERS(sys/acl.h) | ||
34 | AC_CHECK_LIB(posix1e, acl_get_file, [LIBS="$LIBS -lposix1e"], | ||
35 | AC_CHECK_LIB(acl, acl_get_file, [LIBS="$LIBS -lacl" | ||
36 | AC_CHECK_LIB(attr, fgetxattr, LIBS="$LIBS -lattr",,)],,),) | ||
37 | -- | ||
38 | 2.7.4 | ||
39 | |||
diff --git a/meta/recipes-support/vim/files/vim-add-knob-whether-elf.h-are-checked.patch b/meta/recipes-support/vim/files/vim-add-knob-whether-elf.h-are-checked.patch new file mode 100644 index 0000000000..37914d4cd9 --- /dev/null +++ b/meta/recipes-support/vim/files/vim-add-knob-whether-elf.h-are-checked.patch | |||
@@ -0,0 +1,42 @@ | |||
1 | From 38de4bccdb8a861ffdd447f12fdab19d6d852c02 Mon Sep 17 00:00:00 2001 | ||
2 | From: Chong Lu <Chong.Lu@windriver.com> | ||
3 | Date: Tue, 26 Jun 2018 17:34:15 +0800 | ||
4 | Subject: [PATCH] vim: add knob whether elf.h are checked | ||
5 | |||
6 | Previously, it still was checked when there was no elf library in sysroots directory. | ||
7 | Add knob to decide whether elf.h are checked or not. | ||
8 | |||
9 | Upstream-Status: Pending | ||
10 | |||
11 | Signed-off-by: Chong Lu <Chong.Lu@windriver.com> | ||
12 | Signed-off-by: Changqing Li <changqing.li@windriver.com> | ||
13 | --- | ||
14 | src/configure.ac | 7 +++++++ | ||
15 | 1 file changed, 7 insertions(+) | ||
16 | |||
17 | diff --git a/src/configure.ac b/src/configure.ac | ||
18 | index 0ee86ad..64736f0 100644 | ||
19 | --- a/src/configure.ac | ||
20 | +++ b/src/configure.ac | ||
21 | @@ -3192,11 +3192,18 @@ AC_TRY_COMPILE([#include <stdio.h>], [int x __attribute__((unused));], | ||
22 | AC_MSG_RESULT(no)) | ||
23 | |||
24 | dnl Checks for header files. | ||
25 | +AC_MSG_CHECKING(whether or not to look for elf.h) | ||
26 | +AC_ARG_ENABLE(elf-check, | ||
27 | + [ --enable-elf-check If elfutils, check for elf.h [default=no]], | ||
28 | + , enable_elf_check="no") | ||
29 | +AC_MSG_RESULT($enable_elf_check) | ||
30 | +if test "x$enable_elf_check" != "xno"; then | ||
31 | AC_CHECK_HEADER(elf.h, HAS_ELF=1) | ||
32 | dnl AC_CHECK_HEADER(dwarf.h, SVR4=1) | ||
33 | if test "$HAS_ELF" = 1; then | ||
34 | AC_CHECK_LIB(elf, main) | ||
35 | fi | ||
36 | +fi | ||
37 | |||
38 | AC_HEADER_DIRENT | ||
39 | |||
40 | -- | ||
41 | 2.7.4 | ||
42 | |||
diff --git a/meta/recipes-support/vim/vim-tiny_8.1.0347.bb b/meta/recipes-support/vim/vim-tiny_8.1.0347.bb new file mode 100644 index 0000000000..8b1fb7b115 --- /dev/null +++ b/meta/recipes-support/vim/vim-tiny_8.1.0347.bb | |||
@@ -0,0 +1,15 @@ | |||
1 | require vim_${PV}.bb | ||
2 | |||
3 | SUMMARY += " (with tiny features)" | ||
4 | |||
5 | PROVIDES_remove = "xxd" | ||
6 | ALTERNATIVE_${PN}_remove = "xxd" | ||
7 | |||
8 | PACKAGECONFIG += "tiny" | ||
9 | |||
10 | do_install() { | ||
11 | install -D -m 0755 ${S}/vim ${D}/${bindir}/vim.tiny | ||
12 | } | ||
13 | |||
14 | ALTERNATIVE_PRIORITY = "90" | ||
15 | ALTERNATIVE_TARGET = "${bindir}/vim.tiny" | ||
diff --git a/meta/recipes-support/vim/vim_8.1.0347.bb b/meta/recipes-support/vim/vim_8.1.0347.bb new file mode 100644 index 0000000000..1c41caaf10 --- /dev/null +++ b/meta/recipes-support/vim/vim_8.1.0347.bb | |||
@@ -0,0 +1,129 @@ | |||
1 | SUMMARY = "Vi IMproved - enhanced vi editor" | ||
2 | SECTION = "console/utils" | ||
3 | |||
4 | PROVIDES = "xxd" | ||
5 | DEPENDS = "ncurses gettext-native" | ||
6 | # vimdiff doesn't like busybox diff | ||
7 | RSUGGESTS_${PN} = "diffutils" | ||
8 | LICENSE = "vim" | ||
9 | LIC_FILES_CHKSUM = "file://../runtime/doc/uganda.txt;endline=287;md5=f1f82b42360005c70b8c19b0ef493f72" | ||
10 | |||
11 | SRC_URI = "git://github.com/vim/vim.git \ | ||
12 | file://disable_acl_header_check.patch;patchdir=.. \ | ||
13 | file://vim-add-knob-whether-elf.h-are-checked.patch;patchdir=.. \ | ||
14 | file://0001-src-Makefile-improve-reproducibility.patch;patchdir=.. \ | ||
15 | " | ||
16 | SRCREV = "f1c118be93184e8e57e3e80b1b3383f464ed649e" | ||
17 | |||
18 | S = "${WORKDIR}/git/src" | ||
19 | |||
20 | VIMDIR = "vim${@d.getVar('PV').split('.')[0]}${@d.getVar('PV').split('.')[1]}" | ||
21 | |||
22 | inherit autotools-brokensep update-alternatives | ||
23 | |||
24 | CLEANBROKEN = "1" | ||
25 | |||
26 | # vim configure.in contains functions which got 'dropped' by autotools.bbclass | ||
27 | do_configure () { | ||
28 | rm -f auto/* | ||
29 | touch auto/config.mk | ||
30 | aclocal | ||
31 | autoconf | ||
32 | oe_runconf | ||
33 | touch auto/configure | ||
34 | touch auto/config.mk auto/config.h | ||
35 | } | ||
36 | |||
37 | #Available PACKAGECONFIG options are gtkgui, acl, x11, tiny | ||
38 | PACKAGECONFIG ??= "" | ||
39 | PACKAGECONFIG += " \ | ||
40 | ${@bb.utils.filter('DISTRO_FEATURES', 'acl selinux', d)} \ | ||
41 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 gtkgui', '', d)} \ | ||
42 | " | ||
43 | PACKAGECONFIG_class-native = "" | ||
44 | |||
45 | PACKAGECONFIG[gtkgui] = "--enable-gui=gtk2,--enable-gui=no,gtk+," | ||
46 | PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl," | ||
47 | PACKAGECONFIG[x11] = "--with-x,--without-x,xt," | ||
48 | PACKAGECONFIG[tiny] = "--with-features=tiny,--with-features=big,," | ||
49 | PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux," | ||
50 | PACKAGECONFIG[elfutils] = "--enable-elf-check,,elfutils," | ||
51 | |||
52 | EXTRA_OECONF = " \ | ||
53 | --disable-gpm \ | ||
54 | --disable-gtktest \ | ||
55 | --disable-xim \ | ||
56 | --disable-netbeans \ | ||
57 | --with-tlib=ncurses \ | ||
58 | ac_cv_small_wchar_t=no \ | ||
59 | vim_cv_getcwd_broken=no \ | ||
60 | vim_cv_memmove_handles_overlap=yes \ | ||
61 | vim_cv_stat_ignores_slash=no \ | ||
62 | vim_cv_terminfo=yes \ | ||
63 | vim_cv_tgetent=non-zero \ | ||
64 | vim_cv_toupper_broken=no \ | ||
65 | vim_cv_tty_group=world \ | ||
66 | STRIP=/bin/true \ | ||
67 | " | ||
68 | |||
69 | do_install() { | ||
70 | autotools_do_install | ||
71 | |||
72 | # Work around file-rdeps picking up csh, awk, perl or python as a dep | ||
73 | chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/vim132 | ||
74 | chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/mve.awk | ||
75 | chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/*.pl | ||
76 | chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/*.py | ||
77 | |||
78 | # Install example vimrc from runtime files | ||
79 | install -m 0644 ../runtime/vimrc_example.vim ${D}/${datadir}/${BPN}/vimrc | ||
80 | |||
81 | # we use --with-features=big as default | ||
82 | mv ${D}${bindir}/${BPN} ${D}${bindir}/${BPN}.${BPN} | ||
83 | |||
84 | if ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'true', 'false', d)}; then | ||
85 | # The mouse being autoenabled is just annoying in xfce4-terminal (mouse | ||
86 | # drag make vim go into visual mode and there is no right click menu), | ||
87 | # delete the block. | ||
88 | sed -i '/the mouse works just fine/,+4d' ${D}/${datadir}/${BPN}/vimrc | ||
89 | fi | ||
90 | } | ||
91 | |||
92 | PARALLEL_MAKEINST = "" | ||
93 | |||
94 | PACKAGES =+ "${PN}-common ${PN}-syntax ${PN}-help ${PN}-tutor ${PN}-vimrc ${PN}-tools" | ||
95 | FILES_${PN}-syntax = "${datadir}/${BPN}/${VIMDIR}/syntax" | ||
96 | FILES_${PN}-help = "${datadir}/${BPN}/${VIMDIR}/doc" | ||
97 | FILES_${PN}-tutor = "${datadir}/${BPN}/${VIMDIR}/tutor ${bindir}/${BPN}tutor" | ||
98 | FILES_${PN}-vimrc = "${datadir}/${BPN}/vimrc" | ||
99 | FILES_${PN}-data = "${datadir}/${BPN}" | ||
100 | FILES_${PN}-tools = "${datadir}/${BPN}/${VIMDIR}/tools" | ||
101 | FILES_${PN}-common = " \ | ||
102 | ${datadir}/${BPN}/${VIMDIR}/*.vim \ | ||
103 | ${datadir}/${BPN}/${VIMDIR}/autoload \ | ||
104 | ${datadir}/${BPN}/${VIMDIR}/colors \ | ||
105 | ${datadir}/${BPN}/${VIMDIR}/compiler \ | ||
106 | ${datadir}/${BPN}/${VIMDIR}/ftplugin \ | ||
107 | ${datadir}/${BPN}/${VIMDIR}/indent \ | ||
108 | ${datadir}/${BPN}/${VIMDIR}/keymap \ | ||
109 | ${datadir}/${BPN}/${VIMDIR}/lang \ | ||
110 | ${datadir}/${BPN}/${VIMDIR}/macros \ | ||
111 | ${datadir}/${BPN}/${VIMDIR}/plugin \ | ||
112 | ${datadir}/${BPN}/${VIMDIR}/print \ | ||
113 | ${datadir}/${BPN}/${VIMDIR}/spell \ | ||
114 | ${datadir}/icons \ | ||
115 | " | ||
116 | |||
117 | RDEPENDS_${BPN} = "ncurses-terminfo-base" | ||
118 | # Recommend that runtime data is installed along with vim | ||
119 | RRECOMMENDS_${BPN} = "${PN}-syntax ${PN}-help ${PN}-tutor ${PN}-vimrc ${PN}-common" | ||
120 | |||
121 | ALTERNATIVE_${PN} = "vi vim xxd" | ||
122 | ALTERNATIVE_PRIORITY = "100" | ||
123 | ALTERNATIVE_TARGET = "${bindir}/${BPN}.${BPN}" | ||
124 | ALTERNATIVE_LINK_NAME[vi] = "${base_bindir}/vi" | ||
125 | ALTERNATIVE_LINK_NAME[vim] = "${bindir}/vim" | ||
126 | ALTERNATIVE_TARGET[xxd] = "${bindir}/xxd" | ||
127 | ALTERNATIVE_LINK_NAME[xxd] = "${bindir}/xxd" | ||
128 | |||
129 | BBCLASSEXTEND = "native" | ||