- patchlevel 307
This commit is contained in:
parent
26f9a8ed76
commit
a4ad1c83fc
@ -282,3 +282,52 @@ Individual patches for Vim 7.4:
|
|||||||
2252 7.4.256 (after 7.4.248) systemlist() does not work properly
|
2252 7.4.256 (after 7.4.248) systemlist() does not work properly
|
||||||
1948 7.4.257 compiler warning, possibly for mismatch in parameter name
|
1948 7.4.257 compiler warning, possibly for mismatch in parameter name
|
||||||
5726 7.4.258 configure fails if $CC contains options
|
5726 7.4.258 configure fails if $CC contains options
|
||||||
|
1554 7.4.259 warning for misplaced "const"
|
||||||
|
8693 7.4.260 no error for function name with colon or lowercase char
|
||||||
|
2863 7.4.261 an interactive :s to replace a "\n" with line break may fail
|
||||||
|
9779 7.4.262 duplicate code in regexec()
|
||||||
|
1306 7.4.263 GCC 4.8 compiler warning for hiding a declaration
|
||||||
|
5143 7.4.264 (after 7.4.260) can't define function g:Foo()
|
||||||
|
4813 7.4.265 (after 7.4.260) can't call function with "g:" in an expression
|
||||||
|
1347 7.4.266 test 62 fails
|
||||||
|
13880 7.4.267 (after 7.4.178) '[ mark is in the wrong position after "gq"
|
||||||
|
3312 7.4.268 exists() on a funcref for script-local function does not work
|
||||||
|
6283 7.4.269 CTRL-U in Insert mode does not work after using a cursor key
|
||||||
|
1947 7.4.270 comparing pointers instead of the string they point to
|
||||||
|
1457 7.4.271 compiler warning on 64 bit windows
|
||||||
|
4216 7.4.272 using just "$" does not cause an error message
|
||||||
|
2136 7.4.273 "make autoconf/reconfig" may run configure pointlessly
|
||||||
|
1522 7.4.274 check for timestamp does not always detect a changed file
|
||||||
|
1747 7.4.275 no error message when changing type of unplaced sign
|
||||||
|
8604 7.4.276 the fish shell is not supported
|
||||||
|
2243 7.4.277 using ":sign unplace *" may leave the cursor in wrong position
|
||||||
|
5402 7.4.278 list_remove() conflicts with Sun header file
|
||||||
|
18280 7.4.279 globpath() returns a string, a list would be better
|
||||||
|
3504 7.4.280 relative position of cursor not restored if session has 2 tabs
|
||||||
|
2486 7.4.281 positions are off when loading session with two tabpages
|
||||||
|
1429 7.4.282 (after 7.4.279) test 97 fails on Mac
|
||||||
|
1771 7.4.283 (after 7.4.276) compiler warning about unused variable
|
||||||
|
1727 7.4.284 setting 'langmap' in the modeline can cause trouble
|
||||||
|
1549 7.4.285 line numbers are not always updated for 'relativenumber'
|
||||||
|
1610 7.4.286 error messages are inconsistant
|
||||||
|
1394 7.4.287 patches for .hgignore don't work
|
||||||
|
1397 7.4.288 when 'spellfile' is set the screen is not redrawn
|
||||||
|
3604 7.4.289 NFA regexp with repeated backreference does not match
|
||||||
|
6261 7.4.290 a non-greedy match followed by a branch is too greedy
|
||||||
|
1650 7.4.291 compiler warning for int to pointer of different size
|
||||||
|
4141 7.4.292 pattern "a" matches accented "a" when pattern is one byte
|
||||||
|
9143 7.4.293 can't ignore composing characters in a pattern
|
||||||
|
4480 7.4.294 (after 7.4.293) test files missing from patch
|
||||||
|
5287 7.4.295 various typos, bad white space and unclear comments
|
||||||
|
1927 7.4.296 can't run tests on Solaris
|
||||||
|
2593 7.4.297 memory leak from result of get_isolated_shell_name()
|
||||||
|
1789 7.4.298 can't have a funcref start with "t:"
|
||||||
|
19202 7.4.299 when running configure twice DYNAMIC_PYTHON_DLL becomes empty
|
||||||
|
2262 7.4.300 the way config.cache is removed doesn't always work
|
||||||
|
1651 7.4.301 (after 7.4.280) scrolling problem when loading a session file
|
||||||
|
2241 7.4.302 signs don't show up after filler lines
|
||||||
|
2182 7.4.303 double-width chars on the command line sometimes truncated
|
||||||
|
1559 7.4.304 cannot always use Python with Vim
|
||||||
|
7820 7.4.305 making 'ttymouse' empty causes problems
|
||||||
|
2660 7.4.306 getchar(0) does not return Esc
|
||||||
|
4150 7.4.307 can't build without the +termresponse feature
|
||||||
|
105
vim.spec
105
vim.spec
@ -1,4 +1,4 @@
|
|||||||
%define patchlevel 258
|
%define patchlevel 307
|
||||||
%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
|
||||||
@ -306,6 +306,55 @@ Patch255: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.255
|
|||||||
Patch256: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.256
|
Patch256: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.256
|
||||||
Patch257: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.257
|
Patch257: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.257
|
||||||
Patch258: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.258
|
Patch258: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.258
|
||||||
|
Patch259: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.259
|
||||||
|
Patch260: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.260
|
||||||
|
Patch261: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.261
|
||||||
|
Patch262: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.262
|
||||||
|
Patch263: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.263
|
||||||
|
Patch264: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.264
|
||||||
|
Patch265: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.265
|
||||||
|
Patch266: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.266
|
||||||
|
Patch267: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.267
|
||||||
|
Patch268: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.268
|
||||||
|
Patch269: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.269
|
||||||
|
Patch270: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.270
|
||||||
|
Patch271: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.271
|
||||||
|
Patch272: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.272
|
||||||
|
Patch273: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.273
|
||||||
|
Patch274: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.274
|
||||||
|
Patch275: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.275
|
||||||
|
Patch276: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.276
|
||||||
|
Patch277: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.277
|
||||||
|
Patch278: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.278
|
||||||
|
Patch279: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.279
|
||||||
|
Patch280: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.280
|
||||||
|
Patch281: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.281
|
||||||
|
Patch282: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.282
|
||||||
|
Patch283: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.283
|
||||||
|
Patch284: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.284
|
||||||
|
Patch285: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.285
|
||||||
|
Patch286: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.286
|
||||||
|
Patch287: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.287
|
||||||
|
Patch288: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.288
|
||||||
|
Patch289: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.289
|
||||||
|
Patch290: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.290
|
||||||
|
Patch291: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.291
|
||||||
|
Patch292: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.292
|
||||||
|
Patch293: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.293
|
||||||
|
Patch294: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.294
|
||||||
|
Patch295: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.295
|
||||||
|
Patch296: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.296
|
||||||
|
Patch297: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.297
|
||||||
|
Patch298: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.298
|
||||||
|
Patch299: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.299
|
||||||
|
Patch300: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.300
|
||||||
|
Patch301: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.301
|
||||||
|
Patch302: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.302
|
||||||
|
Patch303: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.303
|
||||||
|
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
|
||||||
|
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
|
||||||
|
|
||||||
Patch3000: vim-7.4-syntax.patch
|
Patch3000: vim-7.4-syntax.patch
|
||||||
Patch3002: vim-7.1-nowarnings.patch
|
Patch3002: vim-7.1-nowarnings.patch
|
||||||
@ -712,6 +761,55 @@ perl -pi -e "s,bin/nawk,bin/awk,g" runtime/tools/mve.awk
|
|||||||
%patch256 -p0
|
%patch256 -p0
|
||||||
%patch257 -p0
|
%patch257 -p0
|
||||||
%patch258 -p0
|
%patch258 -p0
|
||||||
|
%patch259 -p0
|
||||||
|
%patch260 -p0
|
||||||
|
%patch261 -p0
|
||||||
|
%patch262 -p0
|
||||||
|
%patch263 -p0
|
||||||
|
%patch264 -p0
|
||||||
|
%patch265 -p0
|
||||||
|
%patch266 -p0
|
||||||
|
%patch267 -p0
|
||||||
|
%patch268 -p0
|
||||||
|
%patch269 -p0
|
||||||
|
%patch270 -p0
|
||||||
|
%patch271 -p0
|
||||||
|
%patch272 -p0
|
||||||
|
%patch273 -p0
|
||||||
|
%patch274 -p0
|
||||||
|
%patch275 -p0
|
||||||
|
%patch276 -p0
|
||||||
|
%patch277 -p0
|
||||||
|
%patch278 -p0
|
||||||
|
%patch279 -p0
|
||||||
|
%patch280 -p0
|
||||||
|
%patch281 -p0
|
||||||
|
%patch282 -p0
|
||||||
|
%patch283 -p0
|
||||||
|
%patch284 -p0
|
||||||
|
%patch285 -p0
|
||||||
|
%patch286 -p0
|
||||||
|
%patch287 -p0
|
||||||
|
%patch288 -p0
|
||||||
|
%patch289 -p0
|
||||||
|
%patch290 -p0
|
||||||
|
%patch291 -p0
|
||||||
|
%patch292 -p0
|
||||||
|
%patch293 -p0
|
||||||
|
%patch294 -p0
|
||||||
|
%patch295 -p0
|
||||||
|
%patch296 -p0
|
||||||
|
%patch297 -p0
|
||||||
|
%patch298 -p0
|
||||||
|
%patch299 -p0
|
||||||
|
%patch300 -p0
|
||||||
|
%patch301 -p0
|
||||||
|
%patch302 -p0
|
||||||
|
%patch303 -p0
|
||||||
|
%patch304 -p0
|
||||||
|
%patch305 -p0
|
||||||
|
%patch306 -p0
|
||||||
|
%patch307 -p0
|
||||||
|
|
||||||
# install spell files
|
# install spell files
|
||||||
%if %{withvimspell}
|
%if %{withvimspell}
|
||||||
@ -1222,6 +1320,9 @@ rm -rf %{buildroot}
|
|||||||
%{_datadir}/icons/hicolor/*/apps/*
|
%{_datadir}/icons/hicolor/*/apps/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue May 27 2014 Karsten Hopp <karsten@redhat.com> 7.4.307-1
|
||||||
|
- patchlevel 307
|
||||||
|
|
||||||
* Tue Apr 29 2014 Vít Ondruch <vondruch@redhat.com> - 2:7.4.258-2
|
* Tue Apr 29 2014 Vít Ondruch <vondruch@redhat.com> - 2:7.4.258-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.1
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user