patchlevel 514, 1436124 - VIM chooses ft=bindzone for sudoedit /etc/named.conf

This commit is contained in:
Zdenek Dohnal 2017-03-27 17:26:13 +02:00
commit 699aceedba
5 changed files with 126 additions and 2 deletions

1
.gitignore vendored
View File

@ -54,3 +54,4 @@
/vim-8.0-497.tar.bz2 /vim-8.0-497.tar.bz2
/vim-8.0-502.tar.bz2 /vim-8.0-502.tar.bz2
/vim-8.0-503.tar.bz2 /vim-8.0-503.tar.bz2
/vim-8.0-514.tar.bz2

View File

@ -1,3 +1,108 @@
commit 980128c369451450743bdb90a67588fa72ec4b07
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Mar 26 21:46:28 2017 +0200
patch 8.0.0514: script for creating cmdidxs can be improved
Problem: Script for creating cmdidxs can be improved.
Solution: Count skipped lines instead of collecting the lines. Add "const".
(Dominique Pelle, closes #1594)
commit c96272e30e2b81e5e0c8418f09d9db4e2fcd5d73
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Mar 26 13:50:09 2017 +0200
patch 8.0.0513: getting name of cleared highlight group is wrong
Problem: Getting name of cleared highlight group is wrong. (Matt Wozniski)
Solution: Only skip over cleared names for completion. (closes #1592)
Also fix that a cleared group causes duplicate completions.
commit 1572e30607e9a3bee9750242bf37168f7d2b6e66
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 25 20:16:28 2017 +0100
patch 8.0.0512: check for available characters takes too long
Problem: Check for available characters takes too long.
Solution: Only check did_start_blocking if wtime is negative. (Daisuke
Suzuki, closes #1591)
commit a683ec44c34f0717dcc6a0c03493ba39b879ac38
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 25 20:14:34 2017 +0100
patch 8.0.0511: message for skipping client-server tests is unclear
Problem: Menuage for skipping client-server tests is unclear.
Solution: Be more specific about what's missing (Hirohito Higashi, Kazunobu
Kuriyama)
commit 8a0141d4e7054587281d3bfd09480376b1fc719f
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 25 18:10:31 2017 +0100
patch 8.0.0510: typo in link to codecov.io results
Problem: Typo in link to codecov.io results.
Solution: Remove duplicate https:.
commit dd00851e07f251c7c2696d87303f3df70a458731
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 25 18:04:32 2017 +0100
patch 8.0.0509: no link to codecov.io results
Problem: No link to codecov.io results.
Solution: Add a badge to the readme file.
commit d722fd74d84c8e7119d9599b67388bd26a2dacf5
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 25 17:46:59 2017 +0100
patch 8.0.0508: Coveralls no longer shows per-file coverage
Problem: Coveralls no longer shows per-file coverage.
Solution: Add coverage from codecov.io. (Christian Brabandt)
commit a2845b8f5a3058c8c89699771ffd4d69513b097d
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 25 15:20:06 2017 +0100
patch 8.0.0507: client-server tests fail when $DISPLAY is not set
Problem: Client-server tests fail when $DISPLAY is not set.
Solution: Check for E240 before running the test.
commit 6c0c1e8052811a818739e2f3d543291b7a347ad0
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 25 15:07:43 2017 +0100
patch 8.0.0506: can't build with ANSI C
Problem: Can't build with ANSI C.
Solution: Move declarations to start of block.
commit ba6ad17378ddb9b33412d85174224997b8ff7a4f
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 25 15:03:45 2017 +0100
patch 8.0.0505: failed window split for :stag not handled
Problem: Failed window split for :stag not handled. (Coverity CID 99204)
Solution: If the split fails skip to the end. (bstaletic, closes #1577)
commit e5e0fbcd4244d032a0635ad7defe2831f251c639
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 25 14:51:01 2017 +0100
patch 8.0.0504: looking up an Ex command is a bit slow
Problem: Looking up an Ex command is a bit slow.
Solution: Instead of just using the first letter, also use the second letter
to skip ahead in the list of commands. Generate the table with a
Perl script. (Dominique Pelle, closes #1589)
commit 9d20ce6970158de69202a82529d9e97827a9e71b commit 9d20ce6970158de69202a82529d9e97827a9e71b
Author: Bram Moolenaar <Bram@vim.org> Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Mar 23 21:53:35 2017 +0100 Date: Thu Mar 23 21:53:35 2017 +0100

View File

@ -1 +1 @@
SHA512 (vim-8.0-503.tar.bz2) = c7761bb314163a8960c675ff0f0869d2f3b6c9c286637064c1b257318863585da076b92e13929c4d158c894a877a51e9bb3753cea551dec9cbbc585bb2dbd0dc SHA512 (vim-8.0-514.tar.bz2) = 0130f946a446d294a8ede7c1ace3f342b21528f0ec45cea8d530769de740e386428642df678cdf0ec0c2621f0042eaa32f83b6c3f66ef668dc7bc77983be06c4

12
vim-8.0-bindsyntax.patch Normal file
View File

@ -0,0 +1,12 @@
diff -up vim80/runtime/filetype.vim.bindsyntax vim80/runtime/filetype.vim
--- vim80/runtime/filetype.vim.bindsyntax 2017-03-27 16:51:42.863820018 +0200
+++ vim80/runtime/filetype.vim 2017-03-27 17:04:41.264496625 +0200
@@ -288,7 +288,7 @@ au BufNewFile,BufRead *.bib setf bib
au BufNewFile,BufRead *.bst setf bst
" BIND configuration
-au BufNewFile,BufRead named.conf,rndc.conf setf named
+au BufNewFile,BufRead named*.conf,rndc*.conf,rndc*.key setf named
" BIND zone
au BufNewFile,BufRead named.root setf bindzone

View File

@ -1,4 +1,4 @@
%define patchlevel 503 %define patchlevel 514
%if %{?WITH_SELINUX:0}%{!?WITH_SELINUX:1} %if %{?WITH_SELINUX:0}%{!?WITH_SELINUX:1}
%define WITH_SELINUX 1 %define WITH_SELINUX 1
%endif %endif
@ -68,6 +68,7 @@ Patch3013: vim-7.4-globalsyntax.patch
Patch3014: vim-7.4-releasestring-1318991.patch Patch3014: vim-7.4-releasestring-1318991.patch
Patch3015: vim-8.0-rhbz1365258.patch Patch3015: vim-8.0-rhbz1365258.patch
Patch3016: vim-8.0-copy-paste.patch Patch3016: vim-8.0-copy-paste.patch
Patch3017: vim-8.0-bindsyntax.patch
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: python-devel python3-devel ncurses-devel gettext perl-devel BuildRequires: python-devel python3-devel ncurses-devel gettext perl-devel
@ -223,6 +224,7 @@ perl -pi -e "s,bin/nawk,bin/awk,g" runtime/tools/mve.awk
%patch3014 -p1 %patch3014 -p1
%patch3015 -p1 %patch3015 -p1
%patch3016 -p1 %patch3016 -p1
%patch3017 -p1
%build %build
cp -f %{SOURCE6} . cp -f %{SOURCE6} .
@ -768,6 +770,10 @@ rm -rf %{buildroot}
%{_datadir}/icons/locolor/*/apps/* %{_datadir}/icons/locolor/*/apps/*
%changelog %changelog
* Mon Mar 27 2017 Karsten Hopp <karsten@redhat.com> 8.0.514-1
- patchlevel 514
- 1436124 - VIM chooses ft=bindzone for sudoedit /etc/named.conf
* Fri Mar 24 2017 Karsten Hopp <karsten@redhat.com> 8.0.503-1 * Fri Mar 24 2017 Karsten Hopp <karsten@redhat.com> 8.0.503-1
- patchlevel 503 - patchlevel 503