Hello community, here is the log from the commit of package vim for openSUSE:Factory checked in at 2019-05-17 23:38:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/vim (Old) and /work/SRC/openSUSE:Factory/.vim.new.5148 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "vim" Fri May 17 23:38:27 2019 rev:235 rq:702864 version:8.1.1330 Changes: -------- --- /work/SRC/openSUSE:Factory/vim/vim.changes 2019-05-07 23:11:30.879992403 +0200 +++ /work/SRC/openSUSE:Factory/.vim.new.5148/vim.changes 2019-05-17 23:38:31.210065834 +0200 @@ -1,0 +2,51 @@ +Tue May 14 14:49:46 UTC 2019 - Ondřej Súkup <[email protected]> + +- 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) + +------------------------------------------------------------------- Old: ---- vim-8.1.1282.tar.gz New: ---- vim-8.1.1330.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ vim.spec ++++++ --- /var/tmp/diff_new_pack.Cbra0V/_old 2019-05-17 23:38:32.446065154 +0200 +++ /var/tmp/diff_new_pack.Cbra0V/_new 2019-05-17 23:38:32.450065153 +0200 @@ -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 ++++++ disable-unreliable-tests.patch ++++++ --- /var/tmp/diff_new_pack.Cbra0V/_old 2019-05-17 23:38:32.498065126 +0200 +++ /var/tmp/diff_new_pack.Cbra0V/_new 2019-05-17 23:38:32.498065126 +0200 @@ -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 @@ 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 @@ 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 @@ 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 ++++++ vim-8.1.1282.tar.gz -> vim-8.1.1330.tar.gz ++++++ /work/SRC/openSUSE:Factory/vim/vim-8.1.1282.tar.gz /work/SRC/openSUSE:Factory/.vim.new.5148/vim-8.1.1330.tar.gz differ: char 13, line 1
