- Updated to version 8.1.1330, fixes the following problems

- refreshed disable-unreliable-tests.patch
  * Running make in src/po leaves LINGUAS file behind. (Ken Takata)
  * Delaying half a second after the top-bot message.
  * Detecting *.tmpl as htmlcheetah is outdated.
  * Test17 is old style.
  * Running tests leaves XTest_tabpage_cmdheight file behind.
  * Cannot build with +eval but without +mouse.
  * Search stats don't show for mapped command.
  * May not have enough space to add "W" to search stats.
  * .hgignore and .gitignore are either distributed or in git, not both.
  * Not easy to change directory and restore.
  * Invalid command line arguments not tested.
  * When vimrun.exe does not exist external command may fail.
  * Crash when using invalid command line argument.
  * Invalid argument test fails without GTK.
  * Invalid argument test fails without X clipboard.
  * "extends" from 'listchars' is used when 'list' is off. (Hiroyuki Yoshinaga)
  * In a terminal 'ballooneval' does not work right away.
  * When compiled with VIMDLL some messages are not shown.
  * v:beval_text is not tested in Visual mode.
  * Not possible to hide a balloon.
  * There is no easy way to manipulate environment variables.
  * Borland support is outdated and doesn't work.
  * Cannot reconnect to the X server after it restarted.
  * The Normal highlight is not defined when compiled with GUI.
  * Test for Normal highlight fails on MS-Windows GUI.
  * Named function arguments are never optional.
  * Aborting an autocmd with an exception is not tested.
  * Coverity warning for using uninitialized variable.

OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=551
This commit is contained in:
Ondřej Súkup 2019-05-14 14:51:12 +00:00 committed by Git OBS Bridge
parent 1b68027d8d
commit f8931248a4
5 changed files with 82 additions and 15 deletions

View File

@ -1,7 +1,7 @@
Index: vim-8.1.1282/src/testdir/test_alot.vim
Index: vim-8.1.1330/src/testdir/test_alot.vim
===================================================================
--- vim-8.1.1282.orig/src/testdir/test_alot.vim
+++ vim-8.1.1282/src/testdir/test_alot.vim
--- vim-8.1.1330.orig/src/testdir/test_alot.vim
+++ vim-8.1.1330/src/testdir/test_alot.vim
@@ -37,14 +37,12 @@ source test_join.vim
source test_jumps.vim
source test_lambda.vim
@ -25,11 +25,19 @@ Index: vim-8.1.1282/src/testdir/test_alot.vim
source test_true_false.vim
source test_unlet.vim
source test_virtualedit.vim
Index: vim-8.1.1282/src/testdir/Make_all.mak
Index: vim-8.1.1330/src/testdir/Make_all.mak
===================================================================
--- vim-8.1.1282.orig/src/testdir/Make_all.mak
+++ vim-8.1.1282/src/testdir/Make_all.mak
@@ -188,7 +188,6 @@ NEW_TESTS = \
--- vim-8.1.1330.orig/src/testdir/Make_all.mak
+++ vim-8.1.1330/src/testdir/Make_all.mak
@@ -68,7 +68,6 @@ NEW_TESTS = \
test_autoload \
test_backspace_opt \
test_backup \
- test_balloon \
test_behave \
test_blob \
test_blockedit \
@@ -191,7 +190,6 @@ NEW_TESTS = \
test_netbeans \
test_normal \
test_number \
@ -37,7 +45,15 @@ Index: vim-8.1.1282/src/testdir/Make_all.mak
test_packadd \
test_partial \
test_paste \
@@ -406,11 +405,8 @@ NEW_TESTS_RES = \
@@ -297,7 +295,6 @@ NEW_TESTS_RES = \
test_autocmd.res \
test_autoload.res \
test_backspace_opt.res \
- test_balloon.res \
test_blob.res \
test_blockedit.res \
test_breakindent.res \
@@ -413,11 +410,8 @@ NEW_TESTS_RES = \
test_tcl.res \
test_termencoding.res \
test_termcodes.res \
@ -49,10 +65,10 @@ Index: vim-8.1.1282/src/testdir/Make_all.mak
test_undo.res \
test_user_func.res \
test_usercommands.res \
Index: vim-8.1.1282/src/testdir/Makefile
Index: vim-8.1.1330/src/testdir/Makefile
===================================================================
--- vim-8.1.1282.orig/src/testdir/Makefile
+++ vim-8.1.1282/src/testdir/Makefile
--- vim-8.1.1330.orig/src/testdir/Makefile
+++ vim-8.1.1330/src/testdir/Makefile
@@ -36,8 +36,6 @@ SCRIPTS = $(SCRIPTS_ALL) \
# Explicit dependencies.
test49.out: test49.vim

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4c43cc64b44a6e46be7295f4ee16b42eafff067116ee9a98b056bb5451f03784
size 14173849

3
vim-8.1.1330.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:40fc770973cd6e6514f453a97a2a6147c8c2cca0f6205d6267867bdb747a0799
size 14175613

View File

@ -1,3 +1,54 @@
-------------------------------------------------------------------
Tue May 14 14:49:46 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
- Updated to version 8.1.1330, fixes the following problems
- refreshed disable-unreliable-tests.patch
* Running make in src/po leaves LINGUAS file behind. (Ken Takata)
* Delaying half a second after the top-bot message.
* Detecting *.tmpl as htmlcheetah is outdated.
* Test17 is old style.
* Running tests leaves XTest_tabpage_cmdheight file behind.
* Cannot build with +eval but without +mouse.
* Search stats don't show for mapped command.
* May not have enough space to add "W" to search stats.
* .hgignore and .gitignore are either distributed or in git, not both.
* Not easy to change directory and restore.
* Invalid command line arguments not tested.
* When vimrun.exe does not exist external command may fail.
* Crash when using invalid command line argument.
* Invalid argument test fails without GTK.
* Invalid argument test fails without X clipboard.
* "extends" from 'listchars' is used when 'list' is off. (Hiroyuki Yoshinaga)
* In a terminal 'ballooneval' does not work right away.
* When compiled with VIMDLL some messages are not shown.
* v:beval_text is not tested in Visual mode.
* Not possible to hide a balloon.
* There is no easy way to manipulate environment variables.
* Borland support is outdated and doesn't work.
* Cannot reconnect to the X server after it restarted.
* The Normal highlight is not defined when compiled with GUI.
* Test for Normal highlight fails on MS-Windows GUI.
* Named function arguments are never optional.
* Aborting an autocmd with an exception is not tested.
* Coverity warning for using uninitialized variable.
* Warnings for using localtime() and ctime().
* There is always a delay if a termrequest is never answered.
* Duplicated localtime() call.
* Output from Travis can be improved.
* Code for text changes is in a "misc" file.
* Computing function length name in many places.
* It is not possible to track changes to a buffer.
* No docs or tests for listener functions.
* Cygwin makefile is not nicely indented.
* 'mouse' option is reset when using GPM mouse.
* Stray comma in VMS makefile.
* Cannot build with +eval but without +channel and +timers. (John Marriott)
* No test for listener with partial.
* Unnecessary scroll after horizontal split.
* No test for listener with undo operation.
* Plans for popup window support are spread out.
* Using bold attribute in terminal changes the color. (Jason Franklin)
-------------------------------------------------------------------
Mon May 6 07:48:00 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>

View File

@ -17,7 +17,7 @@
%define pkg_version 8.1
%define patchlevel 1282
%define patchlevel 1330
%define patchlevel_compact %{patchlevel}
%define VIM_SUBDIR vim81
%define site_runtimepath %{_datadir}/vim/site