- patchlevel 373

This commit is contained in:
Karsten Hopp 2014-07-22 15:42:09 +02:00
parent 21238a50fd
commit 4e5c8bade6
2 changed files with 203 additions and 3 deletions

View File

@ -331,3 +331,68 @@ Individual patches for Vim 7.4:
7820 7.4.305 making 'ttymouse' empty causes problems 7820 7.4.305 making 'ttymouse' empty causes problems
2660 7.4.306 getchar(0) does not return Esc 2660 7.4.306 getchar(0) does not return Esc
4150 7.4.307 can't build without the +termresponse feature 4150 7.4.307 can't build without the +termresponse feature
1420 7.4.308 ":diffsplit" on empty file cursor is displayed on command line
2095 7.4.309 increasing size of lower window, upper window jumps to the top
11194 7.4.310 getpos()/setpos() don't include curswant
4740 7.4.311 can't use winrestview to only restore part of the view
6272 7.4.312 cannot know what argument list is being used for a window
10912 7.4.313 (after 7.4.310) changing return value of getpos() causes error
5875 7.4.314 completion messages can get in the way of a plugin
8020 7.4.315 (after 7.4.309) fixes for computation of topline not tested
1537 7.4.316 warning from 64-bit compiler
1434 7.4.317 crash when starting gvim, issue 230
1748 7.4.318 fg/bg color settings ignored when checking syntax attributes
1764 7.4.319 crash when putting zero bytes on the clipboard
4439 7.4.320 possible crash when an BufLeave autocommand deletes the buffer
2515 7.4.321 can't build with strawberry perl 5.20 + mingw-w64-4.9.0
3274 7.4.322 using "msgfmt" is hard coded, cannot use "gmsgfmt"
2898 7.4.323 substitute() with zero width pattern breaks multi-byte char
4631 7.4.324 in Ex mode, cyrillic characters are not handled
2070 7.4.325 incorrect display when starting GUI and setting 'laststatus'
1384 7.4.326 can't build Tiny version
4330 7.4.327 when 'verbose' is set may get E724 repeatedly
2580 7.4.328 selection of inner block is inconsistent
1945 7.4.329 window not scrolled if moving cursor and go to another window
32746 7.4.330 using regexp pattern to show a position match can be slow
1506 7.4.331 relative numbering not updated after a linewise yank
4079 7.4.332 GTK: ugly gaps when a sign icon doesn't fit exactly
2036 7.4.333 compiler warning for unused function
3295 7.4.334 (after 7.4.330) unitialized variables, causing some problems
3313 7.4.335 no digraph for the new rouble sign
3536 7.4.336 setting 'history' to a big value causes out-of-memory errors
1589 7.4.337 can't execute command line if there was an error before
52480 7.4.338 cannot wrap lines taking indent into account
2655 7.4.339 local function is available globally
3140 7.4.340 error from sed about illegal bytes when installing Vim
6001 7.4.341 sort() doesn't handle numbers well
1988 7.4.342 clang gives warnings
1850 7.4.343 matchdelete() does not always update the right lines
5304 7.4.344 small issues related to matchaddpos()
2618 7.4.345 (after 7.4.338) indent is not updated when deleting indent
1963 7.4.346 (after 7.4.338) indent is not updated when changing 'briopt'
3209 7.4.347 test55 fails on some systems
1738 7.4.348 Using "J1" in 'cinoptions' may cause too much indent
2967 7.4.349 avoid redrawing the whole window with highlighted matches
3909 7.4.350 C-indenting for Javascript fails for a {} block inside parens
6034 7.4.351 sort() is not stable
2637 7.4.352 with 'linebreak' a Tab causes a missing line break
14437 7.4.353 'linebreak' doesn't work with the 'list' option
1891 7.4.354 compiler warning
21483 7.4.355 several problems with Javascript indenting
1247 7.4.356 mercurial does not ignore memfile_test
1654 7.4.357 after completion some characters are not redrawn
8040 7.4.358 (after 7.4.351) sort is not always stable
2942 7.4.359 if 'ttymouse' set to 'uxterm' xterm version is not requested
2461 7.4.360 pattern with "$" followed by \[vV] is not used as end-of-line
1487 7.4.361 flickering when filling the preview window for 'omnifunc'
1608 7.4.362 short length in matchaddpos() highlights until end of the line
4445 7.4.363 in Windows console typing 0xCE does not work
2425 7.4.364 no error message when the viminfo file can't be renamed
3973 7.4.365 crash when using ":botright split" when there isn't much space
1602 7.4.366 can't run the linebreak test on MS-Windows
2165 7.4.367 (after 7.4.357) other solution for redrawing after completion
2581 7.4.368 window sizes not restored properly when closing cmdline window
9476 7.4.370 linebreak test fails when encoding is not utf-8
1880 7.4.371 with 'linebreak' set control characters displayed wrong
5628 7.4.372 with 'winminheight' zero current window might be zero height
2668 7.4.373 compiler warning for unused argument and unused variable

139
vim.spec
View File

@ -1,4 +1,4 @@
%define patchlevel 307 %define patchlevel 373
%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
@ -355,6 +355,72 @@ Patch304: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.304
Patch305: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.305 Patch305: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.305
Patch306: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.306 Patch306: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.306
Patch307: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.307 Patch307: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.307
Patch308: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.308
Patch309: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.309
Patch310: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.310
Patch311: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.311
Patch312: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.312
Patch313: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.313
Patch314: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.314
Patch315: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.315
Patch316: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.316
Patch317: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.317
Patch318: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.318
Patch319: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.319
Patch320: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.320
Patch321: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.321
Patch322: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.322
Patch323: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.323
Patch324: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.324
Patch325: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.325
Patch326: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.326
Patch327: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.327
Patch328: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.328
Patch329: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.329
Patch330: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.330
Patch331: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.331
Patch332: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.332
Patch333: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.333
Patch334: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.334
Patch335: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.335
Patch336: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.336
Patch337: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.337
Patch338: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.338
Patch339: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.339
Patch340: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.340
Patch341: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.341
Patch342: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.342
Patch343: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.343
Patch344: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.344
Patch345: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.345
Patch346: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.346
Patch347: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.347
Patch348: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.348
Patch349: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.349
Patch350: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.350
Patch351: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.351
Patch352: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.352
Patch353: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.353
Patch354: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.354
Patch355: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.355
Patch356: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.356
Patch357: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.357
Patch358: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.358
Patch359: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.359
Patch360: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.360
Patch361: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.361
Patch362: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.362
Patch363: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.363
Patch364: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.364
Patch365: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.365
Patch366: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.366
Patch367: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.367
Patch368: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.368
Patch369: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.369
Patch370: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.370
Patch371: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.371
Patch372: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.372
Patch373: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.373
Patch3000: vim-7.4-syntax.patch Patch3000: vim-7.4-syntax.patch
Patch3002: vim-7.1-nowarnings.patch Patch3002: vim-7.1-nowarnings.patch
@ -810,6 +876,72 @@ perl -pi -e "s,bin/nawk,bin/awk,g" runtime/tools/mve.awk
%patch305 -p0 %patch305 -p0
%patch306 -p0 %patch306 -p0
%patch307 -p0 %patch307 -p0
%patch308 -p0
%patch309 -p0
%patch310 -p0
%patch311 -p0
%patch312 -p0
%patch313 -p0
%patch314 -p0
%patch315 -p0
%patch316 -p0
%patch317 -p0
%patch318 -p0
%patch319 -p0
%patch320 -p0
%patch321 -p0
%patch322 -p0
%patch323 -p0
%patch324 -p0
%patch325 -p0
%patch326 -p0
%patch327 -p0
%patch328 -p0
%patch329 -p0
%patch330 -p0
%patch331 -p0
%patch332 -p0
%patch333 -p0
%patch334 -p0
%patch335 -p0
%patch336 -p0
%patch337 -p0
%patch338 -p0
%patch339 -p0
%patch340 -p0
%patch341 -p0
%patch342 -p0
%patch343 -p0
%patch344 -p0
%patch345 -p0
%patch346 -p0
%patch347 -p0
%patch348 -p0
%patch349 -p0
%patch350 -p0
%patch351 -p0
%patch352 -p0
%patch353 -p0
%patch354 -p0
%patch355 -p0
%patch356 -p0
%patch357 -p0
%patch358 -p0
%patch359 -p0
%patch360 -p0
%patch361 -p0
%patch362 -p0
%patch363 -p0
%patch364 -p0
%patch365 -p0
%patch366 -p0
%patch367 -p0
%patch368 -p0
%patch369 -p0
%patch370 -p0
%patch371 -p0
%patch372 -p0
%patch373 -p0
# install spell files # install spell files
%if %{withvimspell} %if %{withvimspell}
@ -1320,6 +1452,9 @@ rm -rf %{buildroot}
%{_datadir}/icons/hicolor/*/apps/* %{_datadir}/icons/hicolor/*/apps/*
%changelog %changelog
* Tue Jul 22 2014 Karsten Hopp <karsten@redhat.com> 7.4.373-1
- patchlevel 373
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:7.4.307-2 * Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:7.4.307-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild