- patchlevel 159

- vim-enhanced requires which for vimtutor (#395371)
This commit is contained in:
Karsten Hopp 2007-11-22 10:55:27 +00:00
parent 2dbef6448b
commit be5822d334
2 changed files with 78 additions and 2 deletions

View File

@ -164,3 +164,27 @@ Individual patches for Vim 7.1:
1515 7.1.133 shorten_fname1() linked when it's not needed
10379 7.1.134 (extra) Win32: Can't build with VC8
3337 7.1.135 Win32: ":e c:/tmp/foo" and ":e c:/tmp//foo" create two buffers
1522 7.1.136 memory leak when using Ruby syntax highlighting
1553 7.1.137 build failure when using EXITFREE
1836 7.1.138 Perl: Msg() doesn't stop when "q" is typed at the more prompt
1557 7.1.139 fold truncated when ending Insert mode with CTRL-C
1664 7.1.140 v:count can't be used in an expression mapping
2806 7.1.141 GTK: can't use negative offset with -geom argument
2161 7.1.142 ":redir @A>" doesn't work
1723 7.1.143 uninitialized memory read when diffing three files
1250 7.1.144 after ":diffup" cursor can be in the wrong position
6160 7.1.145 stay in Insert completion mode depending on the char typed
2838 7.1.146 VMS: writing fails for rare record organisation
2079 7.1.147 (after 7.1.127) freeing memory twice completing user name
2557 7.1.148 QNX and some other systems require testing for sys/types.h
4823 7.1.149 completion menu messed up when using the scroll bar
1759 7.1.150 Visual mode "p" doesn't work when 'clipboard' has "unnamed"
2108 7.1.151 lalloc(0) error for line completion with 'ic' and 'inf' set
3183 7.1.152 display problem when 'hls' and 'cursorcolumn' are set
4610 7.1.153 compiler warnings on SGI
1547 7.1.154 (after 7.1.152) compiler warning for signed/unsigned compare
1594 7.1.155 crash when 'undolevels' is 0 and repeating "udd"
4174 7.1.156 overlapping arguments for strcpy() during cmdline completion
1541 7.1.157 :" in Ex mode at end of file results in an error message
4629 7.1.158 (extra) Win32: with utf-8 and cp1250 Alt-y is the wrong char
1646 7.1.159 overlapping arguments for a strcpy()

View File

@ -15,7 +15,7 @@
#used for pre-releases:
%define beta %{nil}
%define vimdir vim71%{?beta}
%define patchlevel 135
%define patchlevel 159
Summary: The VIM editor
URL: http://www.vim.org/
@ -186,6 +186,30 @@ Patch132: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.132
Patch133: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.133
Patch134: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.134
Patch135: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.135
Patch136: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.136
Patch137: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.137
Patch138: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.138
Patch139: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.139
Patch140: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.140
Patch141: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.141
Patch142: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.142
Patch143: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.143
Patch144: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.144
Patch145: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.145
Patch146: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.146
Patch147: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.147
Patch148: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.148
Patch149: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.149
Patch150: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.150
Patch151: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.151
Patch152: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.152
Patch153: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.153
Patch154: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.154
Patch155: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.155
Patch156: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.156
Patch157: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.157
Patch158: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.158
Patch159: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.159
Patch3000: vim-7.0-syntax.patch
Patch3002: vim-7.1-nowarnings.patch
@ -265,7 +289,7 @@ package is installed.
%package enhanced
Summary: A version of the VIM editor which includes recent enhancements
Group: Applications/Editors
Requires: vim-common = %{epoch}:%{version}-%{release}
Requires: vim-common = %{epoch}:%{version}-%{release} which
Provides: vim = %{version}-%{release}
%description enhanced
@ -453,6 +477,30 @@ perl -pi -e "s,bin/nawk,bin/awk,g" runtime/tools/mve.awk
%patch133 -p0
%patch134 -p0
%patch135 -p0
%patch136 -p0
%patch137 -p0
%patch138 -p0
%patch139 -p0
%patch140 -p0
%patch141 -p0
%patch142 -p0
%patch143 -p0
%patch144 -p0
%patch145 -p0
%patch146 -p0
%patch147 -p0
%patch148 -p0
%patch149 -p0
%patch150 -p0
%patch151 -p0
%patch152 -p0
%patch153 -p0
%patch154 -p0
%patch155 -p0
%patch156 -p0
%patch157 -p0
%patch158 -p0
%patch159 -p0
# install spell files
@ -839,6 +887,10 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/icons/hicolor/*/apps/*
%changelog
* Thu Nov 22 2007 Karsten Hopp <karsten@redhat.com> 7.1.159-1
- patchlevel 159
- vim-enhanced requires which for vimtutor (#395371)
* Thu Oct 04 2007 Karsten Hopp <karsten@redhat.com> 7.1.135-1
- patchlevel 135