parent
5c3e2974d2
commit
499cbffb34
@ -85,3 +85,5 @@ Individual patches for Vim 6.3:
|
|||||||
1609 6.3.060 register name isn't checked for CTRL-R CTRL-O in Insert mode
|
1609 6.3.060 register name isn't checked for CTRL-R CTRL-O in Insert mode
|
||||||
1984 6.3.061 display mess when multi-byte char at right edge of screen
|
1984 6.3.061 display mess when multi-byte char at right edge of screen
|
||||||
2337 6.3.062 ":normal! gQ" hangs
|
2337 6.3.062 ":normal! gQ" hangs
|
||||||
|
1434 6.3.063 after the CursorHold event 'mousefocus' may stop working
|
||||||
|
1586 6.3.064 line2byte(line("$") + 1) sometimes returns the wrong number
|
||||||
|
14
vim.spec
14
vim.spec
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
%define baseversion 6.3
|
%define baseversion 6.3
|
||||||
%define vimdir vim63
|
%define vimdir vim63
|
||||||
%define patchlevel 062
|
%define patchlevel 064
|
||||||
|
|
||||||
Summary: The VIM editor.
|
Summary: The VIM editor.
|
||||||
Name: vim
|
Name: vim
|
||||||
@ -475,14 +475,16 @@ chmod 644 ../runtime/doc/vim2html.pl
|
|||||||
|
|
||||||
mkdir -p $RPM_BUILD_ROOT/etc/profile.d
|
mkdir -p $RPM_BUILD_ROOT/etc/profile.d
|
||||||
cat >$RPM_BUILD_ROOT/etc/profile.d/vim.sh <<EOF
|
cat >$RPM_BUILD_ROOT/etc/profile.d/vim.sh <<EOF
|
||||||
[ -w /etc/passwd ] && return
|
|
||||||
if [ -n "\$BASH_VERSION" -o -n "\$KSH_VERSION" -o -n "\$ZSH_VERSION" ]; then
|
if [ -n "\$BASH_VERSION" -o -n "\$KSH_VERSION" -o -n "\$ZSH_VERSION" ]; then
|
||||||
# for bash, pdksh and zsh, only if no alias is already set
|
[ -x /usr/bin/id ] || return
|
||||||
|
[ `/usr/bin/id -u` -le 100 ] && return
|
||||||
|
# for bash and zsh, only if no alias is already set
|
||||||
alias vi >/dev/null 2>&1 || alias vi=vim
|
alias vi >/dev/null 2>&1 || alias vi=vim
|
||||||
fi
|
fi
|
||||||
EOF
|
EOF
|
||||||
cat >$RPM_BUILD_ROOT/etc/profile.d/vim.csh <<EOF
|
cat >$RPM_BUILD_ROOT/etc/profile.d/vim.csh <<EOF
|
||||||
[ -w /etc/passwd ] && return
|
[ -x /usr/bin/id ] || exit
|
||||||
|
[ `/usr/bin/id -u` -le 100 ] && exit
|
||||||
alias vi vim
|
alias vi vim
|
||||||
EOF
|
EOF
|
||||||
chmod 0755 $RPM_BUILD_ROOT/etc/profile.d/*
|
chmod 0755 $RPM_BUILD_ROOT/etc/profile.d/*
|
||||||
@ -569,6 +571,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Mar 14 2005 Karsten Hopp <karsten@redhat.de> 6.3.064-1
|
||||||
|
- patchlevel 64
|
||||||
|
- fix selinux warning (#150126)
|
||||||
|
|
||||||
* Wed Mar 02 2005 Karsten Hopp <karsten@redhat.de> 6.3.062-1
|
* Wed Mar 02 2005 Karsten Hopp <karsten@redhat.de> 6.3.062-1
|
||||||
- patchlevel 62, build with gcc-4
|
- patchlevel 62, build with gcc-4
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user