From 978d9cd248490cda55c924e66a407bb793aff400 Mon Sep 17 00:00:00 2001 From: Sam Bingner Date: Fri, 15 Nov 2019 18:11:36 -1000 Subject: Update to vim_8.1.1948 and stop using patches I mean... 1948... --- data/vim/patches/8.1.1468 | 87 ----------------------------------------------- 1 file changed, 87 deletions(-) delete mode 100644 data/vim/patches/8.1.1468 (limited to 'data/vim/patches/8.1.1468') diff --git a/data/vim/patches/8.1.1468 b/data/vim/patches/8.1.1468 deleted file mode 100644 index b3afffbac..000000000 --- a/data/vim/patches/8.1.1468 +++ /dev/null @@ -1,87 +0,0 @@ -To: vim_dev@googlegroups.com -Subject: Patch 8.1.1468 -Fcc: outbox -From: Bram Moolenaar -Mime-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit ------------- - -Patch 8.1.1468 -Problem: The generated desktop files may be invalid. -Solution: Check validity with desktop-file-validate. (Christian Brabandt, - Will Thompson, closes #4480) -Files: src/po/Makefile - - -*** ../vim-8.1.1467/src/po/Makefile 2019-05-05 21:01:47.654072636 +0200 ---- src/po/Makefile 2019-06-04 23:10:49.853378460 +0200 -*************** -*** 151,157 **** - - clean: checkclean - rm -f core core.* *.old.po *.mo *.pot sjiscorr -! rm -f LINGUAS vim.desktop gvim.desktop - - distclean: clean - ---- 151,157 ---- - - clean: checkclean - rm -f core core.* *.old.po *.mo *.pot sjiscorr -! rm -f LINGUAS vim.desktop gvim.desktop tmp_*desktop - - distclean: clean - -*************** -*** 167,179 **** - - vim.desktop: vim.desktop.in $(POFILES) - @echo $(LANGUAGES) | tr " " "\n" |sed -e '/\./d' | sort > LINGUAS -! $(MSGFMT) --desktop -d . --template vim.desktop.in -o vim.desktop - rm -f LINGUAS - - gvim.desktop: gvim.desktop.in $(POFILES) - @echo $(LANGUAGES) | tr " " "\n" |sed -e '/\./d' | sort > LINGUAS -! $(MSGFMT) --desktop -d . --template gvim.desktop.in -o gvim.desktop - rm -f LINGUAS - - update-po: $(LANGUAGES) - ---- 167,183 ---- - - vim.desktop: vim.desktop.in $(POFILES) - @echo $(LANGUAGES) | tr " " "\n" |sed -e '/\./d' | sort > LINGUAS -! $(MSGFMT) --desktop -d . --template vim.desktop.in -o tmp_vim.desktop - rm -f LINGUAS -+ if command -v desktop-file-validate; then desktop-file-validate tmp_vim.desktop; fi -+ mv tmp_vim.desktop vim.desktop - - gvim.desktop: gvim.desktop.in $(POFILES) - @echo $(LANGUAGES) | tr " " "\n" |sed -e '/\./d' | sort > LINGUAS -! $(MSGFMT) --desktop -d . --template gvim.desktop.in -o tmp_gvim.desktop - rm -f LINGUAS -+ if command -v desktop-file-validate; then desktop-file-validate tmp_gvim.desktop; fi -+ mv tmp_gvim.desktop gvim.desktop - - update-po: $(LANGUAGES) - -*** ../vim-8.1.1467/src/version.c 2019-06-04 23:20:19.974043597 +0200 ---- src/version.c 2019-06-05 21:25:12.494834304 +0200 -*************** -*** 769,770 **** ---- 769,772 ---- - { /* Add new patch number below this line */ -+ /**/ -+ 1468, - /**/ - --- -I AM THANKFUL... -...for the mess to clean after a party because it means I have -been surrounded by friends. - - /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ -/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ -\\\ an exciting new programming language -- http://www.Zimbu.org /// - \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- cgit v1.2.3