Accepting request 445244 from editors
- Updated to revision 130, fixes the following problems * Not enough testing for entering Ex commands. * Display problem with 'foldcolumn' and a wide character. (esiegerman) * Cancelling completion still inserts text when formatting is done for 'textwidth'. (lacygoill) * Display test fails on MS-Windows. * Parallel make still doesn't work. (Lewis Muir) * Configure uses "ushort" while the Vim code doesn't. - Updated to revision 124, fixes the following problems * May not process channel readahead. (skywind) * Value of 'thesaurus' option not checked properly. * When using ch_read() with zero timeout, can't tell the difference between reading an empty line and nothing available. * Cannot use a semicolon in 'backupext'. (Jeff) * When reading channel output in a timer, messages may go missing. (Skywind) * The channel "drop" option is not tested. * Still checking if memcmp() exists while every system should have it now. * Drop command doesn't use existing window. * The :history command is not tested. * Tests 92 and 93 are old style. * When reading English help and using CTRl-] the language from 'helplang' is used. * Parallel make fails. (J. Lewis Muir) * No test for using CTRL-R on the command line. * Setting 'cursorline' changes the curswant column. (Daniel Hahler) * Internal error for assert_inrange(1, 1). OBS-URL: https://build.opensuse.org/request/show/445244 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/vim?expand=0&rev=182
This commit is contained in:
commit
7649762dc2
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:1ec25523841812505aed05230296272c6598696b1bffb58fdbd21d6589839441
|
|
||||||
size 12945134
|
|
3
vim-8.0.0130.tar.gz
Normal file
3
vim-8.0.0130.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:73b1236dc4fdf77bff6ab946f80463932c7a806bb020cf0738ffad3ed2e7ed13
|
||||||
|
size 12948905
|
34
vim.changes
34
vim.changes
@ -1,3 +1,37 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Dec 10 15:32:28 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
- Updated to revision 130, fixes the following problems
|
||||||
|
* Not enough testing for entering Ex commands.
|
||||||
|
* Display problem with 'foldcolumn' and a wide character. (esiegerman)
|
||||||
|
* Cancelling completion still inserts text when formatting is done for
|
||||||
|
'textwidth'. (lacygoill)
|
||||||
|
* Display test fails on MS-Windows.
|
||||||
|
* Parallel make still doesn't work. (Lewis Muir)
|
||||||
|
* Configure uses "ushort" while the Vim code doesn't.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Dec 6 10:34:58 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
- Updated to revision 124, fixes the following problems
|
||||||
|
* May not process channel readahead. (skywind)
|
||||||
|
* Value of 'thesaurus' option not checked properly.
|
||||||
|
* When using ch_read() with zero timeout, can't tell the difference between
|
||||||
|
reading an empty line and nothing available.
|
||||||
|
* Cannot use a semicolon in 'backupext'. (Jeff)
|
||||||
|
* When reading channel output in a timer, messages may go missing. (Skywind)
|
||||||
|
* The channel "drop" option is not tested.
|
||||||
|
* Still checking if memcmp() exists while every system should have it now.
|
||||||
|
* Drop command doesn't use existing window.
|
||||||
|
* The :history command is not tested.
|
||||||
|
* Tests 92 and 93 are old style.
|
||||||
|
* When reading English help and using CTRl-] the language from 'helplang'
|
||||||
|
is used.
|
||||||
|
* Parallel make fails. (J. Lewis Muir)
|
||||||
|
* No test for using CTRL-R on the command line.
|
||||||
|
* Setting 'cursorline' changes the curswant column. (Daniel Hahler)
|
||||||
|
* Internal error for assert_inrange(1, 1).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Nov 26 09:21:03 UTC 2016 - idonmez@suse.com
|
Sat Nov 26 09:21:03 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
8
vim.spec
8
vim.spec
@ -17,8 +17,8 @@
|
|||||||
|
|
||||||
|
|
||||||
%define pkg_version 8.0
|
%define pkg_version 8.0
|
||||||
%define patchlevel 0102
|
%define patchlevel 0130
|
||||||
%define patchlevel_compact 102
|
%define patchlevel_compact 130
|
||||||
%define VIM_SUBDIR vim80
|
%define VIM_SUBDIR vim80
|
||||||
%define site_runtimepath /usr/share/vim/site
|
%define site_runtimepath /usr/share/vim/site
|
||||||
%define make make VIMRCLOC=/etc VIMRUNTIMEDIR=/usr/share/vim/current MAKE="make -e" %{?_smp_mflags}
|
%define make make VIMRCLOC=/etc VIMRUNTIMEDIR=/usr/share/vim/current MAKE="make -e" %{?_smp_mflags}
|
||||||
@ -206,14 +206,14 @@ popd
|
|||||||
# build vim
|
# build vim
|
||||||
%configure ${COMMON_OPTIONS} --disable-gui --disable-gpm
|
%configure ${COMMON_OPTIONS} --disable-gui --disable-gpm
|
||||||
sed -i -e 's|define HAVE_DATE_TIME 1|undef HAVE_DATE_TIME|' src/auto/config.h
|
sed -i -e 's|define HAVE_DATE_TIME 1|undef HAVE_DATE_TIME|' src/auto/config.h
|
||||||
%make
|
make %{?_smp_mflags}
|
||||||
cp src/vim vim
|
cp src/vim vim
|
||||||
|
|
||||||
# build gvim
|
# build gvim
|
||||||
make distclean
|
make distclean
|
||||||
%configure ${COMMON_OPTIONS} ${GUI_OPTIONS}
|
%configure ${COMMON_OPTIONS} ${GUI_OPTIONS}
|
||||||
sed -i -e 's|define HAVE_DATE_TIME 1|undef HAVE_DATE_TIME|' src/auto/config.h
|
sed -i -e 's|define HAVE_DATE_TIME 1|undef HAVE_DATE_TIME|' src/auto/config.h
|
||||||
%make
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
#
|
#
|
||||||
# build vitmp
|
# build vitmp
|
||||||
|
Loading…
Reference in New Issue
Block a user