@@ -77,3 +77,7 @@ Individual patches for Vim 6.3:
|
|
77
77
|
3175 6.3.052 (extra) Win 98: can't enter non-ASCII characters if 'enc' set
|
78
78
|
1576 6.3.053 Win32: ":loadview" doesn't work for files with non-latin chars
|
79
79
|
1981 6.3.054 when 'im' is set redraw remains off when repeating an insert
|
80
|
+
8844 6.3.055 wrong text and crash using <C-R>= or <C-\>e in command line
|
81
|
+
2091 6.3.056 window title wrong for specific multi-byte character
|
82
|
+
1748 6.3.057 folds are not updated after a filter command
|
83
|
+
4440 6.3.058 crash when zero columns room; can't compile without :vsplit
|
@@ -21,12 +21,12 @@
|
|
21
21
|
|
22
22
|
%define baseversion 6.3
|
23
23
|
%define vimdir vim63
|
24
|
-
%define patchlevel
|
24
|
+
%define patchlevel 058
|
25
25
|
|
26
26
|
Summary: The VIM editor.
|
27
27
|
Name: vim
|
28
28
|
Version: %{baseversion}.%{patchlevel}
|
29
|
-
Release:
|
29
|
+
Release: 1
|
30
30
|
License: freeware
|
31
31
|
Group: Applications/Editors
|
32
32
|
Source0: ftp://ftp.vim.org/pub/vim/unix/vim-%{baseversion}.tar.bz2
|
@@ -105,6 +105,10 @@ Patch051: ftp://ftp.vim.org/pub/vim/patches/6.3.051
|
|
105
105
|
Patch052: ftp://ftp.vim.org/pub/vim/patches/6.3.052
|
106
106
|
Patch053: ftp://ftp.vim.org/pub/vim/patches/6.3.053
|
107
107
|
Patch054: ftp://ftp.vim.org/pub/vim/patches/6.3.054
|
108
|
+
Patch055: ftp://ftp.vim.org/pub/vim/patches/6.3.055
|
109
|
+
Patch056: ftp://ftp.vim.org/pub/vim/patches/6.3.056
|
110
|
+
Patch057: ftp://ftp.vim.org/pub/vim/patches/6.3.057
|
111
|
+
Patch058: ftp://ftp.vim.org/pub/vim/patches/6.3.058
|
108
112
|
|
109
113
|
Patch3000: vim-6.1-syntax.patch
|
110
114
|
Patch3001: vim-6.2-rh1.patch
|
@@ -212,11 +216,10 @@ vim-common package.
|
|
212
216
|
%prep
|
213
217
|
%setup -q -b 1 -n %{vimdir}
|
214
218
|
cp -f %{SOURCE6} runtime/ftplugin/spec.vim
|
215
|
-
%patch2000 -p1
|
219
|
+
%patch2000 -p1
|
216
220
|
# fix rogue dependencies from sample code
|
217
221
|
chmod -x runtime/tools/mve.awk
|
218
|
-
%patch2001 -p1
|
222
|
+
%patch2001 -p1
|
219
|
-
find . -name \*.paths | xargs rm -f
|
220
223
|
%patch2002 -p1
|
221
224
|
%patch2003 -p1
|
222
225
|
%patch2004 -p1
|
@@ -287,6 +290,10 @@ perl -pi -e "s,bin/nawk,bin/awk,g" runtime/tools/mve.awk
|
|
287
290
|
# Win 32
|
288
291
|
#%patch053 -p0
|
289
292
|
%patch054 -p0
|
293
|
+
%patch055 -p0
|
294
|
+
%patch056 -p0
|
295
|
+
%patch057 -p0
|
296
|
+
%patch058 -p0
|
290
297
|
|
291
298
|
|
292
299
|
%patch3000 -p1
|
@@ -552,6 +559,11 @@ rm -rf $RPM_BUILD_ROOT
|
|
552
559
|
%endif
|
553
560
|
|
554
561
|
%changelog
|
562
|
+
* Tue Jan 18 2005 Karsten Hopp <karsten@redhat.de> 6.3.058-1
|
563
|
+
- Patchlevel 58
|
564
|
+
- rebuild with new perl
|
565
|
+
- remove all rpm backup files
|
566
|
+
|
555
567
|
* Wed Jan 12 2005 Karsten Hopp <karsten@redhat.de> 6.3.054-2
|
556
568
|
- remove backup files
|
557
569
|
|