- Updated to revision 514, fixes the following problems
* Insufficient testing for statusline. * 'makeencoding' missing from the options window. * Git and hg see new files after running tests. (Manuel Ortega) * Options test does not always test everything. * Options test fails or hangs on MS-Windows. * 'cinoptions' cannot set indent for extern block. * "make shadow" creates an invalid link. * Quite a few beeps when running tests. * Clang version not correctly detected. * Some functions are not tested. * Running the options test sometimes resizes the terminal. * The packadd test does not create the symlink correctly and does not test the right thing. * The fnamemodify test changes 'shell' in a way later tests may not be able to use system(). * Using ":%argdel" while the argument list is already empty gives an error. (Pavol Juhas) * Not enough test coverage in Insert mode. * Dead code in #ifdef. * Patch shell command uses double quotes around the argument, which allows for $HOME to be expanded. (Etienne) * Terminal width is set to 80 in test3. * Diffpatch fails when the file name has a quote. * Getpgid is not supported on all systems. * The ";" command does not work after characters with a lower byte that is NUL. * Getting font name does not work on X11. * Some macros are in lower case, which can be confusing. * Part of fold patch accidentally included. OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=428
This commit is contained in:
parent
65f4ad9651
commit
371ea81107
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:226ec0b35d1e787d237d535f1f55319a8b9b8882bc423e181b514c192be2f461
|
||||
size 13011260
|
3
vim-8.0.0514.tar.gz
Normal file
3
vim-8.0.0514.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1d53e3bad5fa2e7ed6ea56e0a2a063cd4ec576390722eae042da8878c2ed2fba
|
||||
size 13060466
|
108
vim.changes
108
vim.changes
@ -1,3 +1,111 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 27 10:14:04 UTC 2017 - idonmez@suse.com
|
||||
|
||||
- Updated to revision 514, fixes the following problems
|
||||
* Insufficient testing for statusline.
|
||||
* 'makeencoding' missing from the options window.
|
||||
* Git and hg see new files after running tests. (Manuel Ortega)
|
||||
* Options test does not always test everything.
|
||||
* Options test fails or hangs on MS-Windows.
|
||||
* 'cinoptions' cannot set indent for extern block.
|
||||
* "make shadow" creates an invalid link.
|
||||
* Quite a few beeps when running tests.
|
||||
* Clang version not correctly detected.
|
||||
* Some functions are not tested.
|
||||
* Running the options test sometimes resizes the terminal.
|
||||
* The packadd test does not create the symlink correctly and does not test
|
||||
the right thing.
|
||||
* The fnamemodify test changes 'shell' in a way later tests may not be
|
||||
able to use system().
|
||||
* Using ":%argdel" while the argument list is already empty gives an
|
||||
error. (Pavol Juhas)
|
||||
* Not enough test coverage in Insert mode.
|
||||
* Dead code in #ifdef.
|
||||
* Patch shell command uses double quotes around the argument, which allows
|
||||
for $HOME to be expanded. (Etienne)
|
||||
* Terminal width is set to 80 in test3.
|
||||
* Diffpatch fails when the file name has a quote.
|
||||
* Getpgid is not supported on all systems.
|
||||
* The ";" command does not work after characters with a lower byte that
|
||||
is NUL.
|
||||
* Getting font name does not work on X11.
|
||||
* Some macros are in lower case, which can be confusing.
|
||||
* Part of fold patch accidentally included.
|
||||
* v:progpath is not reliably set.
|
||||
* Some macros are in lower case.
|
||||
* Some macros are in lower case.
|
||||
* Adding fold marker creates new comment.
|
||||
* Compiler warnings for comparing unsigned char with 256 always being
|
||||
true. (Manuel Ortega)
|
||||
* The mode test may hang in Test_mode(). (Michael Soyka)
|
||||
* Typo in MinGW test makefile.
|
||||
* Using :move messes up manual folds.
|
||||
* Potential crash if adding list or dict to dict fails.
|
||||
* Old fix for :move messing up folding no longer needed, now that we have
|
||||
a proper solution.
|
||||
* Can't build on HPUX.
|
||||
* Test 45 hangs on MS-Windows.
|
||||
* If an MS-Windows tests succeeds at first and then fails in a way it does
|
||||
not produce a test.out file it looks like the test succeeded.
|
||||
* Resetting 'compatible' in defaults.vim has unexpected side effects.
|
||||
(David Fishburn)
|
||||
* Can't find executable name on Solaris and FreeBSD.
|
||||
* Off-by-one error in using :move with folding.
|
||||
* There are still a few macros that should be all-caps.
|
||||
* Using g< after :for does not show the right output. (Marcin Szamotulski)
|
||||
* After aborting an Ex command g< does not work. (Marcin Szamotulski)
|
||||
* Compiler warnings on MS-Windows.
|
||||
* Not enough testing for help commands.
|
||||
* Exit callback test sometimes fails.
|
||||
* When a test fails and test.log is created, Test_edit_CTRL_I matches it
|
||||
instead of test1.in.
|
||||
* No test covering arg_all().
|
||||
* The client-server feature is not tested.
|
||||
* Not enough testing for the client-server feature.
|
||||
* Missing change to main.c.
|
||||
* The client-server test may hang when failing.
|
||||
* Tests use assert_true(0) and assert_false(1) to report errors.
|
||||
* remote_peek() is not tested.
|
||||
* The remote_peek() test fails on MS-Windows.
|
||||
* Unnecessary if statement.
|
||||
* The setbufvar() function may mess up the window layout. (Kay Z.)
|
||||
* Illegal memory access when using :all. (Dominique Pelle)
|
||||
* Using :lhelpgrep with an argument that should fail does not produce an
|
||||
error if the previous :helpgrep worked.
|
||||
* Not all windows commands are tested.
|
||||
* Crash and endless loop when closing windows in a SessionLoadPost
|
||||
autocommand.
|
||||
* The autocmd test hangs on MS-Windows.
|
||||
* Running tests leaves an "xxx" file behind.
|
||||
* Clipboard and "* register is not tested.
|
||||
* Splitting a 'winfixwidth' window vertically makes it one column
|
||||
smaller. (Dominique Pelle)
|
||||
* The quotestar test fails when a required feature is missing.
|
||||
* A failing client-server request can make Vim hang.
|
||||
* Crash with cd command with very long argument.
|
||||
* Build failure with older compiler on MS-Windows.
|
||||
* The quotestar test uses a timer instead of a timeout, thus it cannot be
|
||||
rerun like a flaky test.
|
||||
* Insufficient testing for folding.
|
||||
* Arabic support is not fully tested.
|
||||
* Two autocmd tests are skipped on MS-Windows.
|
||||
* taglist() does not prioritize tags for a buffer.
|
||||
* Quotestar test is still a bit flaky.
|
||||
* On MS-Windows ":!start" does not work as expected.
|
||||
* Coverity complains about possible NULL pointer.
|
||||
* Endless loop in updating folds with 32 bit ints.
|
||||
* Looking up an Ex command is a bit slow.
|
||||
* Failed window split for :stag not handled. (Coverity CID 99204)
|
||||
* Can't build with ANSI C.
|
||||
* Client-server tests fail when $DISPLAY is not set.
|
||||
* Coveralls no longer shows per-file coverage.
|
||||
* No link to codecov.io results.
|
||||
* Typo in link to codecov.io results.
|
||||
* Menuage for skipping client-server tests is unclear.
|
||||
* Check for available characters takes too long.
|
||||
* Getting name of cleared highlight group is wrong. (Matt Wozniski)
|
||||
* Script for creating cmdidxs can be improved.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 20 16:46:58 CET 2017 - kukuk@suse.de
|
||||
|
||||
|
6
vim.spec
6
vim.spec
@ -17,8 +17,8 @@
|
||||
|
||||
|
||||
%define pkg_version 8.0
|
||||
%define patchlevel 0425
|
||||
%define patchlevel_compact 425
|
||||
%define patchlevel 0514
|
||||
%define patchlevel_compact 514
|
||||
%define VIM_SUBDIR vim80
|
||||
%define site_runtimepath %{_datadir}/vim/site
|
||||
%define make make VIMRCLOC=%{_sysconfdir} VIMRUNTIMEDIR=%{_datadir}/vim/current MAKE="make -e" %{?_smp_mflags}
|
||||
@ -105,8 +105,8 @@ file name completion, block operations, and editing of binary data.
|
||||
|
||||
%package data
|
||||
Summary: Vi IMproved
|
||||
Group: Productivity/Editors/Vi
|
||||
# Used to be in vim-plugins package
|
||||
Group: Productivity/Editors/Vi
|
||||
Obsoletes: vim-plugin-matchit <= 1.13.2
|
||||
Provides: vim-plugin-matchit = 1.13.2
|
||||
BuildArch: noarch
|
||||
|
Loading…
Reference in New Issue
Block a user