From ebdd880615566c6b658822ef600d0506a9733680e930e55de64082cb1b079836 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismail=20D=C3=B6nmez?= Date: Wed, 12 Feb 2014 09:42:58 +0000 Subject: [PATCH 1/4] - Updated to revision 178, fixes the following problems * Some help tags don't work with ":help". (Tim Chase) * Redo does not set v:count and v:count1. * The blowfish code mentions output feedback, but the code is actually doing cipher feedback. * When using scrollbind the cursor can end up below the last line. (mvxxc) * Compiler warnings for Python interface. (Tony Mechelynck) * When a wide library function fails, falling back to the non-wide function may do the wrong thing. * Dictionary.update() thows an error when used without arguments. Python programmers don't expect that. * Compiler warning for unused variable. (Tony Mechelynck) * The J command does not update '[ and '] marks. (William Gardner) OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=190 --- vim-7.4-patches.tar.bz2 | 4 ++-- vim.changes | 18 ++++++++++++++++++ vim.spec | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/vim-7.4-patches.tar.bz2 b/vim-7.4-patches.tar.bz2 index 54c0fe0..e34667f 100644 --- a/vim-7.4-patches.tar.bz2 +++ b/vim-7.4-patches.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0bc9db521ab0c5898329198f9b051b1e51b701f08f7c10aa6c586360d25de381 -size 136404 +oid sha256:4f16c3104b4350af67bfe23c48e5248b343d2e63e59dc13db25cf06498b4db12 +size 144702 diff --git a/vim.changes b/vim.changes index f118c9e..d62320c 100644 --- a/vim.changes +++ b/vim.changes @@ -1,3 +1,21 @@ +------------------------------------------------------------------- +Wed Feb 12 09:34:44 UTC 2014 - idonmez@suse.com + +- Updated to revision 178, fixes the following problems + * Some help tags don't work with ":help". (Tim Chase) + * Redo does not set v:count and v:count1. + * The blowfish code mentions output feedback, but the code is + actually doing cipher feedback. + * When using scrollbind the cursor can end up below the last line. + (mvxxc) + * Compiler warnings for Python interface. (Tony Mechelynck) + * When a wide library function fails, falling back to the non-wide + function may do the wrong thing. + * Dictionary.update() thows an error when used without arguments. + Python programmers don't expect that. + * Compiler warning for unused variable. (Tony Mechelynck) + * The J command does not update '[ and '] marks. (William Gardner) + ------------------------------------------------------------------- Fri Feb 7 09:48:35 UTC 2014 - idonmez@suse.com diff --git a/vim.spec b/vim.spec index 2df7b6a..3f74dfb 100644 --- a/vim.spec +++ b/vim.spec @@ -17,7 +17,7 @@ %define pkg_version 7.4 -%define official_ptchlvl 169 +%define official_ptchlvl 178 %define VIM_SUBDIR vim74 %define site_runtimepath /usr/share/vim/site %define make make VIMRCLOC=/etc VIMRUNTIMEDIR=/usr/share/vim/current MAKE="make -e" %{?_smp_mflags} From cdf349dbe01707b8c196d1001e50c5f33f954e2d0eb55788a51b8d4b7d412d6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismail=20D=C3=B6nmez?= Date: Tue, 25 Feb 2014 09:57:42 +0000 Subject: [PATCH 2/4] - Updated to revision 192, fixes the following problems * Warning for type-punned pointer. (Tony Mechelynck) * Older Python versions don't support %ld. * When using 'pastetoggle' the status lines are not updated. (Samuel Ferencik, Jan Christoph Ebersbach) * Building with mzscheme and racket does not work. (David Chimay) * match() does not work properly with a {count} argument. * Clang gives warnings. * Insert in Visual mode sometimes gives incorrect results. (Dominique Pelle) * Delete that crosses line break splits multi-byte character. * SIZEOF_LONG clashes with similar defines in header files. * Compiler warning for unused argument. * Compiler warning for using %lld for off_t. * Escaping a file name for shell commands can't be done without a function. * Memory leak when giving E853. - Disable test87 until python 3.4 is fixed (http://bugs.python.org/issue20763) OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=191 --- vim-7.4-patches.tar.bz2 | 4 ++-- vim.changes | 20 ++++++++++++++++++++ vim.spec | 3 ++- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/vim-7.4-patches.tar.bz2 b/vim-7.4-patches.tar.bz2 index e34667f..f6dac9a 100644 --- a/vim-7.4-patches.tar.bz2 +++ b/vim-7.4-patches.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4f16c3104b4350af67bfe23c48e5248b343d2e63e59dc13db25cf06498b4db12 -size 144702 +oid sha256:7adcff22b214e52c5825f1e868e069501a0ed66d1193fddf0631e27ddedb9a6c +size 163615 diff --git a/vim.changes b/vim.changes index d62320c..c42eaad 100644 --- a/vim.changes +++ b/vim.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Tue Feb 25 09:56:21 UTC 2014 - idonmez@suse.com + +- Updated to revision 192, fixes the following problems + * Warning for type-punned pointer. (Tony Mechelynck) + * Older Python versions don't support %ld. + * When using 'pastetoggle' the status lines are not updated. (Samuel + Ferencik, Jan Christoph Ebersbach) + * Building with mzscheme and racket does not work. (David Chimay) + * match() does not work properly with a {count} argument. + * Clang gives warnings. + * Insert in Visual mode sometimes gives incorrect results. (Dominique Pelle) + * Delete that crosses line break splits multi-byte character. + * SIZEOF_LONG clashes with similar defines in header files. + * Compiler warning for unused argument. + * Compiler warning for using %lld for off_t. + * Escaping a file name for shell commands can't be done without a function. + * Memory leak when giving E853. +- Disable test87 until python 3.4 is fixed (http://bugs.python.org/issue20763) + ------------------------------------------------------------------- Wed Feb 12 09:34:44 UTC 2014 - idonmez@suse.com diff --git a/vim.spec b/vim.spec index 3f74dfb..9007d4c 100644 --- a/vim.spec +++ b/vim.spec @@ -350,7 +350,8 @@ mkdir -p %{buildroot}/var/run/vi.recover %check # Look for "TEST FAILURE" in the build log -# Currently all tests pass +# rm ./src/testdir/test87.* +# http://bugs.python.org/issue20763 make test %files From 7df43d22614058791b1173b539df79a22e8fc89121886498f3120b8e36529eb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismail=20D=C3=B6nmez?= Date: Tue, 25 Feb 2014 09:59:09 +0000 Subject: [PATCH 3/4] - OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=192 --- vim.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim.spec b/vim.spec index 9007d4c..411d373 100644 --- a/vim.spec +++ b/vim.spec @@ -17,7 +17,7 @@ %define pkg_version 7.4 -%define official_ptchlvl 178 +%define official_ptchlvl 192 %define VIM_SUBDIR vim74 %define site_runtimepath /usr/share/vim/site %define make make VIMRCLOC=/etc VIMRUNTIMEDIR=/usr/share/vim/current MAKE="make -e" %{?_smp_mflags} From 0cbd05ca3c0609bbe8d092e874d7c891406b70ba593fea9f246cffde410197c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismail=20D=C3=B6nmez?= Date: Tue, 25 Feb 2014 12:14:35 +0000 Subject: [PATCH 4/4] - OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=193 --- vim.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim.spec b/vim.spec index 411d373..9deb9c3 100644 --- a/vim.spec +++ b/vim.spec @@ -350,8 +350,8 @@ mkdir -p %{buildroot}/var/run/vi.recover %check # Look for "TEST FAILURE" in the build log -# rm ./src/testdir/test87.* # http://bugs.python.org/issue20763 +rm ./src/testdir/test87.* make test %files