- Updated to revision 640, fixes the following problems
* When using Insert mode completion combined with autocommands the redo command may not work. * The default conceal character is documented to be a space but it's initially a dash. (Christian Brabandt) * 7.4.592 breaks the netrw plugin, because the autocommands are skipped. * Marks are not restored after redo + undo. * If no NL or CR is found in the first block of a file then the 'fileformat' may be set to "mac". (Issue 77) * A search with end offset gets stuck at end of file. (Gary Johnson) * Incorrectly read the number of buffer for which an autocommand should be registered. * Can't build with Lua 5.3 on Windows. * Combination of linebreak and conceal doesn't work well. * After deleting characters in Insert mode such that lines are joined undo does not work properly. (issue 324) OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=258
This commit is contained in:
parent
19aff1f6c5
commit
5a242822de
4
_service
4
_service
@ -3,8 +3,8 @@
|
||||
<param name="scm">hg</param>
|
||||
<param name="url">https://code.google.com/p/vim</param>
|
||||
<param name="filename">vim</param>
|
||||
<param name="versionprefix">7.4.629.hg</param>
|
||||
<param name="revision">v7-4-629</param>
|
||||
<param name="versionprefix">7.4.640.hg</param>
|
||||
<param name="revision">v7-4-640</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
<param name="compression">xz</param>
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:31fc60240787ebe1c132ec7931d08733fa74d0ca0edcd3fcb59c91cbd001296f
|
||||
size 7785992
|
3
vim-7.4.640.hg.6629.tar.xz
Normal file
3
vim-7.4.640.hg.6629.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:22ef8f2a1322aaf3400b2e3af14ab11a3bf189f344f152c66b3d726f735827ff
|
||||
size 7785896
|
20
vim.changes
20
vim.changes
@ -1,3 +1,23 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 20 09:49:43 UTC 2015 - idonmez@suse.com
|
||||
|
||||
- Updated to revision 640, fixes the following problems
|
||||
* When using Insert mode completion combined with autocommands the
|
||||
redo command may not work.
|
||||
* The default conceal character is documented to be a space but it's
|
||||
initially a dash. (Christian Brabandt)
|
||||
* 7.4.592 breaks the netrw plugin, because the autocommands are
|
||||
skipped.
|
||||
* Marks are not restored after redo + undo.
|
||||
* If no NL or CR is found in the first block of a file then the
|
||||
'fileformat' may be set to "mac". (Issue 77)
|
||||
* A search with end offset gets stuck at end of file. (Gary Johnson)
|
||||
* Incorrectly read the number of buffer for which an autocommand should be registered.
|
||||
* Can't build with Lua 5.3 on Windows.
|
||||
* Combination of linebreak and conceal doesn't work well.
|
||||
* After deleting characters in Insert mode such that lines are
|
||||
joined undo does not work properly. (issue 324)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 11 11:42:11 UTC 2015 - idonmez@suse.com
|
||||
|
||||
|
27
vim.spec
27
vim.spec
@ -17,8 +17,8 @@
|
||||
|
||||
|
||||
%define pkg_version 7.4
|
||||
%define patchlevel 629
|
||||
%define revision 6606
|
||||
%define patchlevel 640
|
||||
%define revision 6629
|
||||
%define VIM_SUBDIR vim74
|
||||
%define site_runtimepath /usr/share/vim/site
|
||||
%define make make VIMRCLOC=/etc VIMRUNTIMEDIR=/usr/share/vim/current MAKE="make -e" %{?_smp_mflags}
|
||||
@ -26,12 +26,11 @@
|
||||
Name: vim
|
||||
Version: 7.4.%{patchlevel}.hg.%{revision}
|
||||
Release: 0
|
||||
BuildRequires: db-devel
|
||||
%if 0%{?suse_version} > 1020
|
||||
BuildRequires: fdupes
|
||||
%endif
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: db-devel
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: gettext-devel
|
||||
BuildRequires: gpm-devel
|
||||
BuildRequires: gtk2-devel
|
||||
%if 0%{?suse_version} > 1200
|
||||
BuildRequires: pkgconfig(xt)
|
||||
@ -48,17 +47,9 @@ BuildRequires: python3-devel
|
||||
BuildRequires: rsvg-view
|
||||
BuildRequires: ruby-devel
|
||||
BuildRequires: update-desktop-files
|
||||
#
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if 0%{?suse_version} > 1130
|
||||
BuildRequires: gpm-devel
|
||||
%else
|
||||
BuildRequires: gpm
|
||||
%endif
|
||||
#
|
||||
PreReq: fileutils
|
||||
PreReq: sh-utils
|
||||
#
|
||||
Provides: vi
|
||||
Provides: vim-base = %{version}-%{release}
|
||||
Provides: vim-enhanced = %{version}-%{release}
|
||||
@ -67,14 +58,10 @@ Obsoletes: vim-base < %{version}-%{release}
|
||||
Obsoletes: vim-enhanced < %{version}-%{release}
|
||||
Obsoletes: vim-python < %{version}-%{release}
|
||||
Provides: vim_client
|
||||
#
|
||||
%if 0%{?suse_version} >= 1010
|
||||
Recommends: vim-data = %{version}-%{release}
|
||||
%endif
|
||||
Summary: Vi IMproved
|
||||
License: Vim
|
||||
Group: Productivity/Editors/Vi
|
||||
#
|
||||
Url: http://www.vim.org/
|
||||
Source: vim-%{version}.tar.xz
|
||||
Source3: suse.vimrc
|
||||
@ -125,9 +112,7 @@ For SUSE Linux, Vim is used as /usr/bin/vi.
|
||||
%package data
|
||||
Summary: Vi IMproved
|
||||
Group: Productivity/Editors/Vi
|
||||
%if 0%{?suse_version} >= 1120
|
||||
BuildArch: noarch
|
||||
%endif
|
||||
# Used to be in vim-plugins package
|
||||
Obsoletes: vim-plugin-matchit <= 1.13.2
|
||||
Provides: vim-plugin-matchit = 1.13.2
|
||||
@ -339,11 +324,9 @@ rm -f %{buildroot}%{_datadir}/vim/%{VIM_SUBDIR}/macros/maze/*.c
|
||||
# Create ghost files (see vim.conf)
|
||||
mkdir -p %{buildroot}/var/run/vi.recover
|
||||
|
||||
%if 0%{?suse_version} > 1020
|
||||
%fdupes -s %{buildroot}%{_datadir}/vim/%{VIM_SUBDIR}/lang
|
||||
%fdupes -s %{buildroot}%{_datadir}/vim/%{VIM_SUBDIR}/tutor
|
||||
%fdupes -s %{buildroot}%{_datadir}/vim/%{VIM_SUBDIR}/ftplugin
|
||||
%endif
|
||||
|
||||
%check
|
||||
# Reset the terminal scrolling region left behind by the testsuite
|
||||
|
Loading…
Reference in New Issue
Block a user