Accepting request 76051 from editors
- Update to official patchlevel 243 * Fix multiple illegal memory accesses * Fix: Using CTRL-R CTRL-W on the command line may insert only part of the word. * Fix: Python corrects the cursor column without taking 'virtualedit' into account. * Fix: Python 3 doesn't compile without +multi_byte * Fix: ";" gets stuck on a "t" command, it's not useful. * Fix: ":scriptnames" and ":breaklist" show long file names. * Fix: ":wundo" and ":rundo" don't unescape their argument * Fix: "2gj" does not always move to the correct position. * Fix: On a 64 bit system "syn sync fromstart" is very slow. * Fix: Can't pass dict to sort function. * Fix: Text from the clipboard is sometimes handled as linewise, but not consistently. * Fix: Inside an "if" a ":wincmd" causes problems. - Use /usr/lib/tmpfiles.d instead of /etc/tmpfiles.d. OBS-URL: https://build.opensuse.org/request/show/76051 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/vim?expand=0&rev=60
This commit is contained in:
commit
51349d3f6e
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f7d9c52f0ea9389804295fb2f9ffc987f3859d0a3009a8c4ea4ef9b3478ac2b7
|
||||
size 194833
|
||||
oid sha256:28e42b9b681f005d317a00b759c269032acedf0dc95504edd350e62bde0290f9
|
||||
size 248903
|
||||
|
25
vim.changes
25
vim.changes
@ -1,3 +1,28 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 11 15:00:00 UTC 2011 - idonmez@novell.com
|
||||
|
||||
- Update to official patchlevel 243
|
||||
* Fix multiple illegal memory accesses
|
||||
* Fix: Using CTRL-R CTRL-W on the command line may insert only
|
||||
part of the word.
|
||||
* Fix: Python corrects the cursor column without taking
|
||||
'virtualedit' into account.
|
||||
* Fix: Python 3 doesn't compile without +multi_byte
|
||||
* Fix: ";" gets stuck on a "t" command, it's not useful.
|
||||
* Fix: ":scriptnames" and ":breaklist" show long file names.
|
||||
* Fix: ":wundo" and ":rundo" don't unescape their argument
|
||||
* Fix: "2gj" does not always move to the correct position.
|
||||
* Fix: On a 64 bit system "syn sync fromstart" is very slow.
|
||||
* Fix: Can't pass dict to sort function.
|
||||
* Fix: Text from the clipboard is sometimes handled as linewise,
|
||||
but not consistently.
|
||||
* Fix: Inside an "if" a ":wincmd" causes problems.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 6 08:11:28 UTC 2011 - aj@suse.de
|
||||
|
||||
- Use /usr/lib/tmpfiles.d instead of /etc/tmpfiles.d.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 17 07:43:45 UTC 2011 - idoenmez@novell.com
|
||||
|
||||
|
12
vim.spec
12
vim.spec
@ -19,7 +19,7 @@
|
||||
|
||||
Name: vim
|
||||
Version: 7.3
|
||||
Release: 8
|
||||
Release: 1
|
||||
License: Vim
|
||||
Group: Productivity/Editors/Vi
|
||||
BuildRequires: db-devel
|
||||
@ -46,7 +46,7 @@ BuildRequires: gpm
|
||||
%endif
|
||||
#
|
||||
%define pkg_version 7.3
|
||||
%define official_ptchlvl 189
|
||||
%define official_ptchlvl 243
|
||||
%define VIM_SUBDIR vim73
|
||||
%define site_runtimepath /usr/share/vim/site
|
||||
#
|
||||
@ -428,8 +428,8 @@ install -D -m 0644 \
|
||||
# stupid helper
|
||||
install -m 0755 %{SOURCE18} %{buildroot}%{_datadir}/vim/current/tools/missing-vim-client
|
||||
# For /var/run on tmpfs
|
||||
mkdir -p %{buildroot}%{_sysconfdir}/tmpfiles.d/
|
||||
install -m 644 %{SOURCE22} %{buildroot}%{_sysconfdir}/tmpfiles.d/
|
||||
mkdir -p %{buildroot}/usr/lib/tmpfiles.d/
|
||||
install -m 644 %{SOURCE22} %{buildroot}/usr/lib/tmpfiles.d/
|
||||
# remove unecessary duplicate manpages
|
||||
rm -rf %{buildroot}%{_mandir}/fr.ISO8859-1/
|
||||
rm -rf %{buildroot}%{_mandir}/fr.UTF-8/
|
||||
@ -517,8 +517,8 @@ fi
|
||||
%config(noreplace) %{_sysconfdir}/vimrc
|
||||
%config(noreplace) %{_sysconfdir}/skel/.vimrc
|
||||
%ghost %{_sysconfdir}/alternatives/vim
|
||||
%dir %{_sysconfdir}/tmpfiles.d
|
||||
%config(noreplace) %{_sysconfdir}/tmpfiles.d/vim.conf
|
||||
%dir /usr/lib/tmpfiles.d
|
||||
%config(noreplace) /usr/lib/tmpfiles.d/vim.conf
|
||||
# symlinks
|
||||
/bin/vi
|
||||
/bin/vim
|
||||
|
Loading…
Reference in New Issue
Block a user