Patchlevel 42

This commit is contained in:
Karsten Hopp 2006-07-24 13:32:41 +00:00
parent 9a55382074
commit 6b9cac077a
2 changed files with 13 additions and 1 deletions

View File

@ -64,3 +64,6 @@ Individual patches for Vim 7.0:
1880 7.0.037 crash when resizing Vim window when a line doesn't fit
3236 7.0.038 complete() can be used from expr. mapping after inserting text
3240 7.0.039 third argument for inputdialog() doesn't work in the console
1946 7.0.040 mouse selection with "z=" and inputlist() gets wrong entry
2229 7.0.041 cursor([1, 2]) failed, required third item in the list
1603 7.0.042 crash or hang when pasting a block in Insert mode

View File

@ -24,7 +24,7 @@
#used for pre-releases:
%define beta %{nil}
%define vimdir vim70%{?beta}
%define patchlevel 039
%define patchlevel 042
Summary: The VIM editor.
Name: vim
@ -93,6 +93,9 @@ Patch036: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.036
Patch037: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.037
Patch038: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.038
Patch039: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.039
Patch040: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.040
Patch041: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.041
Patch042: ftp://ftp.vim.org/pub/vim/patches/7.0/7.0.042
Patch3000: vim-7.0-syntax.patch
@ -266,6 +269,9 @@ perl -pi -e "s,bin/nawk,bin/awk,g" runtime/tools/mve.awk
%patch037 -p0
%patch038 -p0
%patch039 -p0
%patch040 -p0
%patch041 -p0
%patch042 -p0
%patch3000 -p1
%patch3001 -p1
@ -602,6 +608,9 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/icons/hicolor/*/apps/*
%changelog
* Mon Jul 24 2006 Karsten Hopp <karsten@redhat.de> 7.0.042-1
- patchlevel 42
* Wed Jul 20 2006 Karsten Hopp <karsten@redhat.de> 7.0.039-1
- patchlevel 39
- allow usage of $VIM variable (#199465)