- patchlevel 442
This commit is contained in:
parent
444314fc00
commit
f913b95dd6
@ -422,7 +422,7 @@ Individual patches for Vim 7.4:
|
|||||||
8881 7.4.396 when 'clipboard' is "unnamed", :g/pat/d is very slow
|
8881 7.4.396 when 'clipboard' is "unnamed", :g/pat/d is very slow
|
||||||
5060 7.4.397 matchparen only uses the topmost syntax item
|
5060 7.4.397 matchparen only uses the topmost syntax item
|
||||||
1533 7.4.398 (after 7.4.393) gcc error for argument of InterlockedIncrement
|
1533 7.4.398 (after 7.4.393) gcc error for argument of InterlockedIncrement
|
||||||
136105 7.4.399 crypt implementation is messy; blowfish crypt has a weakness
|
136047 7.4.399 crypt implementation is messy; blowfish crypt has a weakness
|
||||||
1848 7.4.400 list of distributed files is incomplete
|
1848 7.4.400 list of distributed files is incomplete
|
||||||
8581 7.4.401 (after 7.4.399) new files missing in Makefiles
|
8581 7.4.401 (after 7.4.399) new files missing in Makefiles
|
||||||
2992 7.4.402 test 72 crashes under certain conditions
|
2992 7.4.402 test 72 crashes under certain conditions
|
||||||
@ -441,3 +441,28 @@ Individual patches for Vim 7.4:
|
|||||||
2015 7.4.415 (after 7.4.414) cannot build, warning for shadowed variable
|
2015 7.4.415 (after 7.4.414) cannot build, warning for shadowed variable
|
||||||
2977 7.4.416 problem with breakindent/showbreak and tabs
|
2977 7.4.416 problem with breakindent/showbreak and tabs
|
||||||
4376 7.4.417 minimum width used for breakindent is not set after split
|
4376 7.4.417 minimum width used for breakindent is not set after split
|
||||||
|
1727 7.4.418 when leaving ":append" the cursor shape is like in Insert mode
|
||||||
|
3294 7.4.419 when part of a list is locked it's possible to make changes
|
||||||
|
2044 7.4.420 it's not obvious how to add a new test
|
||||||
|
3521 7.4.421 crash when searching for "\ze*"
|
||||||
|
3205 7.4.422 with conceal + linebreak some text is not displayed correctly
|
||||||
|
3565 7.4.423 expand("$shell") does not work as documented
|
||||||
|
1793 7.4.424 ml_get error when using Python to delete lines in a buffer
|
||||||
|
2453 7.4.425 when 'showbreak' is used "gj" may move to the wrong position
|
||||||
|
1333 7.4.426 README File missing from list of files
|
||||||
|
3287 7.4.427 system() typeahead may be echoed and mess up the display
|
||||||
|
2926 7.4.428 executable() may return a wrong result on MS-Windows
|
||||||
|
1384 7.4.429 build fails with fewer features
|
||||||
|
1634 7.4.430 test_listlbr fails when compiled with normal features
|
||||||
|
1599 7.4.431 compiler warning
|
||||||
|
3119 7.4.432 MS-Windows: setting 'encoding' does not convert arguments
|
||||||
|
2110 7.4.433 test 75 fails on MS-Windows
|
||||||
|
4131 7.4.434 gettabvar() is not consistent with getwinvar() and getbufvar()
|
||||||
|
1863 7.4.435 line formatting behaves differently when 'linebreak' is set
|
||||||
|
1470 7.4.436 ml_get error for autocommand that moves the cursor
|
||||||
|
3229 7.4.437 new and old regexp engine are not consistent
|
||||||
|
1372 7.4.438 cached values for 'cino' not reset for ":set all&"
|
||||||
|
1655 7.4.439 duplicate message in message history
|
||||||
|
2106 7.4.440 omni complete popup drawn incorrectly
|
||||||
|
1826 7.4.441 endless loop and other problems when 'cedit' is set to CTRL-C
|
||||||
|
2303 7.4.442 (after 7.4.434) using unitinialized variable
|
||||||
|
57
vim.spec
57
vim.spec
@ -1,4 +1,4 @@
|
|||||||
%define patchlevel 417
|
%define patchlevel 442
|
||||||
%if %{?WITH_SELINUX:0}%{!?WITH_SELINUX:1}
|
%if %{?WITH_SELINUX:0}%{!?WITH_SELINUX:1}
|
||||||
%define WITH_SELINUX 1
|
%define WITH_SELINUX 1
|
||||||
%endif
|
%endif
|
||||||
@ -21,7 +21,7 @@ Summary: The VIM editor
|
|||||||
URL: http://www.vim.org/
|
URL: http://www.vim.org/
|
||||||
Name: vim
|
Name: vim
|
||||||
Version: %{baseversion}.%{patchlevel}
|
Version: %{baseversion}.%{patchlevel}
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
License: Vim
|
License: Vim
|
||||||
Group: Applications/Editors
|
Group: Applications/Editors
|
||||||
Source0: ftp://ftp.vim.org/pub/vim/unix/vim-%{baseversion}.tar.bz2
|
Source0: ftp://ftp.vim.org/pub/vim/unix/vim-%{baseversion}.tar.bz2
|
||||||
@ -464,6 +464,31 @@ Patch414: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.414
|
|||||||
Patch415: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.415
|
Patch415: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.415
|
||||||
Patch416: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.416
|
Patch416: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.416
|
||||||
Patch417: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.417
|
Patch417: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.417
|
||||||
|
Patch418: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.418
|
||||||
|
Patch419: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.419
|
||||||
|
Patch420: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.420
|
||||||
|
Patch421: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.421
|
||||||
|
Patch422: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.422
|
||||||
|
Patch423: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.423
|
||||||
|
Patch424: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.424
|
||||||
|
Patch425: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.425
|
||||||
|
Patch426: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.426
|
||||||
|
Patch427: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.427
|
||||||
|
Patch428: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.428
|
||||||
|
Patch429: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.429
|
||||||
|
Patch430: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.430
|
||||||
|
Patch431: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.431
|
||||||
|
Patch432: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.432
|
||||||
|
Patch433: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.433
|
||||||
|
Patch434: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.434
|
||||||
|
Patch435: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.435
|
||||||
|
Patch436: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.436
|
||||||
|
Patch437: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.437
|
||||||
|
Patch438: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.438
|
||||||
|
Patch439: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.439
|
||||||
|
Patch440: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.440
|
||||||
|
Patch441: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.441
|
||||||
|
Patch442: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.442
|
||||||
|
|
||||||
Patch3000: vim-7.4-syntax.patch
|
Patch3000: vim-7.4-syntax.patch
|
||||||
Patch3002: vim-7.1-nowarnings.patch
|
Patch3002: vim-7.1-nowarnings.patch
|
||||||
@ -1027,6 +1052,31 @@ perl -pi -e "s,bin/nawk,bin/awk,g" runtime/tools/mve.awk
|
|||||||
%patch415 -p0
|
%patch415 -p0
|
||||||
%patch416 -p0
|
%patch416 -p0
|
||||||
%patch417 -p0
|
%patch417 -p0
|
||||||
|
%patch418 -p0
|
||||||
|
%patch419 -p0
|
||||||
|
%patch420 -p0
|
||||||
|
%patch421 -p0
|
||||||
|
%patch422 -p0
|
||||||
|
%patch423 -p0
|
||||||
|
%patch424 -p0
|
||||||
|
%patch425 -p0
|
||||||
|
%patch426 -p0
|
||||||
|
%patch427 -p0
|
||||||
|
%patch428 -p0
|
||||||
|
%patch429 -p0
|
||||||
|
%patch430 -p0
|
||||||
|
%patch431 -p0
|
||||||
|
%patch432 -p0
|
||||||
|
%patch433 -p0
|
||||||
|
%patch434 -p0
|
||||||
|
%patch435 -p0
|
||||||
|
%patch436 -p0
|
||||||
|
%patch437 -p0
|
||||||
|
%patch438 -p0
|
||||||
|
%patch439 -p0
|
||||||
|
%patch440 -p0
|
||||||
|
%patch441 -p0
|
||||||
|
%patch442 -p0
|
||||||
|
|
||||||
# install spell files
|
# install spell files
|
||||||
%if %{withvimspell}
|
%if %{withvimspell}
|
||||||
@ -1543,6 +1593,9 @@ rm -rf %{buildroot}
|
|||||||
%{_datadir}/icons/hicolor/*/apps/*
|
%{_datadir}/icons/hicolor/*/apps/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Sep 10 2014 Karsten Hopp <karsten@redhat.com> 7.4.442-1
|
||||||
|
- patchlevel 442
|
||||||
|
|
||||||
* Tue Aug 26 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2:7.4.417-2
|
* Tue Aug 26 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2:7.4.417-2
|
||||||
- Perl 5.20 rebuild
|
- Perl 5.20 rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user