[oe-commits] [openembedded-core] 04/06: vim: Update to 8.1.1240

git at git.openembedded.org git at git.openembedded.org
Wed May 1 15:47:52 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 2ef631d0d8a9f0db18ef25a91690d3f6389a3081
Author: Tom Rini <trini at konsulko.com>
AuthorDate: Wed May 1 08:51:09 2019 -0400

    vim: Update to 8.1.1240
    
    This brings us to the current version of vim.  As part of this we need
    to work-around a locale issue that upstream has exposed.  We do not
    support fully / correctly the certain locales.  Attempting to use these
    with msgfmt in order to update the ".desktop" files exposes this problem
    and leads to the compile failing.
    
    Signed-off-by: Tom Rini <trini at konsulko.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 .../vim/{vim-tiny_8.1.1017.bb => vim-tiny_8.1.1240.bb}       |  0
 .../recipes-support/vim/{vim_8.1.1017.bb => vim_8.1.1240.bb} | 12 +++++++++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-support/vim/vim-tiny_8.1.1017.bb b/meta/recipes-support/vim/vim-tiny_8.1.1240.bb
similarity index 100%
rename from meta/recipes-support/vim/vim-tiny_8.1.1017.bb
rename to meta/recipes-support/vim/vim-tiny_8.1.1240.bb
diff --git a/meta/recipes-support/vim/vim_8.1.1017.bb b/meta/recipes-support/vim/vim_8.1.1240.bb
similarity index 91%
rename from meta/recipes-support/vim/vim_8.1.1017.bb
rename to meta/recipes-support/vim/vim_8.1.1240.bb
index 4e3e663..f5c7468 100644
--- a/meta/recipes-support/vim/vim_8.1.1017.bb
+++ b/meta/recipes-support/vim/vim_8.1.1240.bb
@@ -13,7 +13,7 @@ SRC_URI = "git://github.com/vim/vim.git \
            file://vim-add-knob-whether-elf.h-are-checked.patch \
            file://0001-src-Makefile-improve-reproducibility.patch \
 "
-SRCREV = "493fbe4abee660d30b4f2aef87b754b0a720213c"
+SRCREV = "d96dbd6f95ea22f609042cc9c6272f14a21ff1a5"
 
 S = "${WORKDIR}/git"
 
@@ -36,6 +36,16 @@ do_configure () {
     touch src/auto/config.mk src/auto/config.h
 }
 
+do_compile() {
+    # We do not support fully / correctly the following locales.  Attempting
+    # to use these with msgfmt in order to update the ".desktop" files exposes
+    # this problem and leads to the compile failing.
+    for LOCALE in cs fr ko pl sk zh_CN zh_TW;do
+        echo -n > src/po/${LOCALE}.po
+    done
+    autotools_do_compile
+}
+
 #Available PACKAGECONFIG options are gtkgui, acl, x11, tiny
 PACKAGECONFIG ??= ""
 PACKAGECONFIG += " \

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list