- patchlevel 416
This commit is contained in:
parent
f2c4b95c4f
commit
4e29c3fa3c
69
7.2.416
Normal file
69
7.2.416
Normal file
@ -0,0 +1,69 @@
|
||||
To: vim-dev@vim.org
|
||||
Subject: Patch 7.2.416
|
||||
Fcc: outbox
|
||||
From: Bram Moolenaar <Bram@moolenaar.net>
|
||||
Mime-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
------------
|
||||
|
||||
Patch 7.2.416
|
||||
Problem: Logtalk.dict is not installed.
|
||||
Solution: Add it to the install target. (Markus Heidelberg)
|
||||
Files: src/Makefile
|
||||
|
||||
|
||||
*** ../vim-7.2.415/src/Makefile 2010-05-07 16:35:12.000000000 +0200
|
||||
--- src/Makefile 2010-04-06 20:19:48.000000000 +0200
|
||||
***************
|
||||
*** 30,36 ****
|
||||
# want to disable using X11 libraries. This speeds up starting Vim,
|
||||
# but the window title will not be set and the X11 selection can not
|
||||
# used.
|
||||
! # - Uncomment the line "CONF_OPT_XSMP = --without-xsmp" if you have the
|
||||
# X11 Session Management Protocol (XSMP) library (libSM) but do not
|
||||
# want to use it.
|
||||
# This can speedup Vim startup but Vim loses the ability to catch the
|
||||
--- 30,36 ----
|
||||
# want to disable using X11 libraries. This speeds up starting Vim,
|
||||
# but the window title will not be set and the X11 selection can not
|
||||
# used.
|
||||
! # - Uncomment the line "CONF_OPT_XSMP = --disable-xsmp" if you have the
|
||||
# X11 Session Management Protocol (XSMP) library (libSM) but do not
|
||||
# want to use it.
|
||||
# This can speedup Vim startup but Vim loses the ability to catch the
|
||||
***************
|
||||
*** 1882,1888 ****
|
||||
cd $(PLUGSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_PLUG)
|
||||
cd $(DEST_PLUG); chmod $(HELPMOD) *.vim README.txt
|
||||
# install the ftplugin files
|
||||
! cd $(FTPLUGSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_FTP)
|
||||
cd $(DEST_FTP); chmod $(HELPMOD) *.vim README.txt
|
||||
# install the compiler files
|
||||
cd $(COMPSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_COMP)
|
||||
--- 1882,1888 ----
|
||||
cd $(PLUGSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_PLUG)
|
||||
cd $(DEST_PLUG); chmod $(HELPMOD) *.vim README.txt
|
||||
# install the ftplugin files
|
||||
! cd $(FTPLUGSOURCE); $(INSTALL_DATA) *.vim README.txt logtalk.dict $(DEST_FTP)
|
||||
cd $(DEST_FTP); chmod $(HELPMOD) *.vim README.txt
|
||||
# install the compiler files
|
||||
cd $(COMPSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_COMP)
|
||||
*** ../vim-7.2.415/src/version.c 2010-05-07 16:34:59.000000000 +0200
|
||||
--- src/version.c 2010-05-07 16:53:17.000000000 +0200
|
||||
***************
|
||||
*** 683,684 ****
|
||||
--- 683,686 ----
|
||||
{ /* Add new patch number below this line */
|
||||
+ /**/
|
||||
+ 416,
|
||||
/**/
|
||||
|
||||
--
|
||||
How To Keep A Healthy Level Of Insanity:
|
||||
8. Don't use any punctuation marks.
|
||||
|
||||
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
||||
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
||||
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
||||
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|
@ -443,3 +443,8 @@ Individual patches for Vim 7.2:
|
||||
1814 7.2.409 summary of number of substitutes is incorrect for ":folddo"
|
||||
2526 7.2.410 highlighting directories for completion doesn't work properly
|
||||
1462 7.2.411 when parsing 'cino' a comma isn't skipped properly
|
||||
3000 7.2.412 [ or ] followed by mouse click doesn't work
|
||||
13552 7.2.413 large file support is incorrect
|
||||
2558 7.2.414 CTRK-K <space> <space> does not produce 0xa0 as expected
|
||||
2122 7.2.415 Win32: Can't open a remote file when starting Vim
|
||||
2757 7.2.416 logtalk.dict is not installed
|
||||
|
17
vim.spec
17
vim.spec
@ -18,13 +18,13 @@
|
||||
#used for pre-releases:
|
||||
%define beta %{nil}
|
||||
%define vimdir vim72%{?beta}
|
||||
%define patchlevel 411
|
||||
%define patchlevel 416
|
||||
|
||||
Summary: The VIM editor
|
||||
URL: http://www.vim.org/
|
||||
Name: vim
|
||||
Version: %{baseversion}.%{beta}%{patchlevel}
|
||||
Release: 2%{?dist}
|
||||
Release: 1%{?dist}
|
||||
License: Vim
|
||||
Group: Applications/Editors
|
||||
Source0: ftp://ftp.vim.org/pub/vim/unix/vim-%{baseversion}%{?beta}%{?CVSDATE}.tar.bz2
|
||||
@ -477,6 +477,11 @@ Patch408: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.408
|
||||
Patch409: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.409
|
||||
Patch410: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.410
|
||||
Patch411: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.411
|
||||
Patch412: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.412
|
||||
Patch413: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.413
|
||||
Patch414: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.414
|
||||
Patch415: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.415
|
||||
Patch416: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.416
|
||||
|
||||
Patch3000: vim-7.0-syntax.patch
|
||||
Patch3002: vim-7.1-nowarnings.patch
|
||||
@ -1026,6 +1031,11 @@ perl -pi -e "s,bin/nawk,bin/awk,g" runtime/tools/mve.awk
|
||||
%patch409 -p0
|
||||
%patch410 -p0
|
||||
%patch411 -p0
|
||||
%patch412 -p0
|
||||
%patch413 -p0
|
||||
%patch414 -p0
|
||||
%patch415 -p0
|
||||
%patch416 -p0
|
||||
|
||||
|
||||
# install spell files
|
||||
@ -1490,6 +1500,9 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_datadir}/icons/hicolor/*/apps/*
|
||||
|
||||
%changelog
|
||||
* Fri May 07 2010 Karsten Hopp <karsten@redhat.com> 7.2.416-1
|
||||
- patchlevel 416
|
||||
|
||||
* Tue Apr 20 2010 Karsten Hopp <karsten@redhat.com> 7.2.411-2
|
||||
- fix rvim manpage (#583180)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user