From 04d99480dd91463887733891365c4c02c39e18e2dd5f7c9749670fdc753ec465 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismail=20D=C3=B6nmez?= Date: Mon, 4 Jan 2016 10:44:08 +0000 Subject: [PATCH 1/4] - Updated to revision 1046, fixes the following problems * The fix in patch 7.3.192 is not tested. * When a symbolic link points to a file in the root directory, the swapfile is not correct. * Vim overwrites the value of $PYTHONHOME. * The local value of 'errorformat' is not used for ":lexpr" and ":cexpr". * The column is not restored properly when the matchparen plugin is used in Insert mode and the cursor is after the end of the line. * When there is a backslash in an option ":set -=" doesn't work. * An Ex range gets adjusted for folded lines even when the range is not using line numbers. * Using "q!" when there is a modified hidden buffer does not unload the current buffer, resulting in the need to abandon it again. * g-CTRL-G shows the word count, but there is no way to get the word count in a script. OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=299 --- v7.4.1004.tar.gz | 3 --- v7.4.1046.tar.gz | 3 +++ vim.changes | 18 ++++++++++++++++++ vim.spec | 4 ++-- 4 files changed, 23 insertions(+), 5 deletions(-) delete mode 100644 v7.4.1004.tar.gz create mode 100644 v7.4.1046.tar.gz diff --git a/v7.4.1004.tar.gz b/v7.4.1004.tar.gz deleted file mode 100644 index 5778da8..0000000 --- a/v7.4.1004.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9ff3e424595d2a3fab691a646bbe0f702eda198d79980aa01979c0af4f6abd8d -size 12334381 diff --git a/v7.4.1046.tar.gz b/v7.4.1046.tar.gz new file mode 100644 index 0000000..5adfe7f --- /dev/null +++ b/v7.4.1046.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd4f4e40f55ea1402e91f527995c32cdd2366d5db2639c533041b22b408865f +size 12692613 diff --git a/vim.changes b/vim.changes index 9c09c32..49efc24 100644 --- a/vim.changes +++ b/vim.changes @@ -1,3 +1,21 @@ +------------------------------------------------------------------- +Mon Jan 4 10:27:55 UTC 2016 - idonmez@suse.com + +- Updated to revision 1046, fixes the following problems + * The fix in patch 7.3.192 is not tested. + * When a symbolic link points to a file in the root directory, + the swapfile is not correct. + * Vim overwrites the value of $PYTHONHOME. + * The local value of 'errorformat' is not used for ":lexpr" and ":cexpr". + * The column is not restored properly when the matchparen plugin + is used in Insert mode and the cursor is after the end of the line. + * When there is a backslash in an option ":set -=" doesn't work. + * An Ex range gets adjusted for folded lines even when the range + is not using line numbers. + * Using "q!" when there is a modified hidden buffer does not unload + the current buffer, resulting in the need to abandon it again. + * g-CTRL-G shows the word count, but there is no way to get the word count in a script. + ------------------------------------------------------------------- Thu Dec 31 13:49:01 UTC 2015 - idonmez@suse.com diff --git a/vim.spec b/vim.spec index d0413ef..dc81344 100644 --- a/vim.spec +++ b/vim.spec @@ -1,7 +1,7 @@ # # spec file for package vim # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ %define pkg_version 7.4 -%define patchlevel 1004 +%define patchlevel 1046 %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 4760156563f9f8c09767908e1432a01f615c3300480c82ed41a4755e66fd6c92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismail=20D=C3=B6nmez?= Date: Sat, 9 Jan 2016 16:35:41 +0000 Subject: [PATCH 2/4] - Updated to revision 1066, fixes the following problems * Segfault when unletting "count". * Illegal memory access with weird syntax command. (Dominique Pelle) * Typos in the :options window. * Compiler warning for ignoring return value of fwrite(). * When a spell file has single letter compounding creating suggestions takes an awful long time. OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=300 --- v7.4.1046.tar.gz | 3 --- v7.4.1066.tar.gz | 3 +++ vim.changes | 11 +++++++++++ vim.spec | 2 +- 4 files changed, 15 insertions(+), 4 deletions(-) delete mode 100644 v7.4.1046.tar.gz create mode 100644 v7.4.1066.tar.gz diff --git a/v7.4.1046.tar.gz b/v7.4.1046.tar.gz deleted file mode 100644 index 5adfe7f..0000000 --- a/v7.4.1046.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9fd4f4e40f55ea1402e91f527995c32cdd2366d5db2639c533041b22b408865f -size 12692613 diff --git a/v7.4.1066.tar.gz b/v7.4.1066.tar.gz new file mode 100644 index 0000000..4f1d16a --- /dev/null +++ b/v7.4.1066.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8787089247066e32eb94682a34ff538bcb8716fdbf2661146e08ec198b94f711 +size 12542617 diff --git a/vim.changes b/vim.changes index 49efc24..e5ddc55 100644 --- a/vim.changes +++ b/vim.changes @@ -1,3 +1,14 @@ +------------------------------------------------------------------- +Sat Jan 9 16:34:06 UTC 2016 - idonmez@suse.com + +- Updated to revision 1066, fixes the following problems + * Segfault when unletting "count". + * Illegal memory access with weird syntax command. (Dominique Pelle) + * Typos in the :options window. + * Compiler warning for ignoring return value of fwrite(). + * When a spell file has single letter compounding creating + suggestions takes an awful long time. + ------------------------------------------------------------------- Mon Jan 4 10:27:55 UTC 2016 - idonmez@suse.com diff --git a/vim.spec b/vim.spec index dc81344..d5cca69 100644 --- a/vim.spec +++ b/vim.spec @@ -17,7 +17,7 @@ %define pkg_version 7.4 -%define patchlevel 1046 +%define patchlevel 1066 %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 2734b6aa63e950a112a7853e13674e4bc5ee5a96fcdcc1219ac1a785981371a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismail=20D=C3=B6nmez?= Date: Sun, 10 Jan 2016 20:13:12 +0000 Subject: [PATCH 3/4] - Updated to revision 1086, fixes the following problems * Wrong way to check for unletting internal variables. * The Tcl interface can't be loaded dynamically on Unix. * Crash when using an invalid command. * CTRL-A does not work well in right-left mode. * Using "." to repeat CTRL-A in Visual mode increments the wrong numbers. * The CTRL-A and CTRL-X commands do not update the '[ and '] marks. * Crash with an extremely long buffer name. OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=301 --- v7.4.1066.tar.gz | 3 --- v7.4.1086.tar.gz | 3 +++ vim.changes | 12 ++++++++++++ vim.spec | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) delete mode 100644 v7.4.1066.tar.gz create mode 100644 v7.4.1086.tar.gz diff --git a/v7.4.1066.tar.gz b/v7.4.1066.tar.gz deleted file mode 100644 index 4f1d16a..0000000 --- a/v7.4.1066.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8787089247066e32eb94682a34ff538bcb8716fdbf2661146e08ec198b94f711 -size 12542617 diff --git a/v7.4.1086.tar.gz b/v7.4.1086.tar.gz new file mode 100644 index 0000000..d7b0d2e --- /dev/null +++ b/v7.4.1086.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c216d89f26a6b43d6647a4e2f753b517442ef609270380a10e852a3e05bab41d +size 12547613 diff --git a/vim.changes b/vim.changes index e5ddc55..9a3a829 100644 --- a/vim.changes +++ b/vim.changes @@ -1,3 +1,15 @@ +------------------------------------------------------------------- +Sun Jan 10 20:08:21 UTC 2016 - idonmez@suse.com + +- Updated to revision 1086, fixes the following problems + * Wrong way to check for unletting internal variables. + * The Tcl interface can't be loaded dynamically on Unix. + * Crash when using an invalid command. + * CTRL-A does not work well in right-left mode. + * Using "." to repeat CTRL-A in Visual mode increments the wrong numbers. + * The CTRL-A and CTRL-X commands do not update the '[ and '] marks. + * Crash with an extremely long buffer name. + ------------------------------------------------------------------- Sat Jan 9 16:34:06 UTC 2016 - idonmez@suse.com diff --git a/vim.spec b/vim.spec index d5cca69..ff46e1b 100644 --- a/vim.spec +++ b/vim.spec @@ -17,7 +17,7 @@ %define pkg_version 7.4 -%define patchlevel 1066 +%define patchlevel 1086 %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 d737a42de99938052a446b386083047b3949bcbb82086329e9c6ea74572a734c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismail=20D=C3=B6nmez?= Date: Mon, 11 Jan 2016 08:11:36 +0000 Subject: [PATCH 4/4] - Updated to revision 1087, fixes the following problems * CTRL-A and CTRL-X work badly with blockwise visual selection OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=302 --- v7.4.1086.tar.gz | 3 --- v7.4.1087.tar.gz | 3 +++ vim.changes | 5 +++-- vim.spec | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 v7.4.1086.tar.gz create mode 100644 v7.4.1087.tar.gz diff --git a/v7.4.1086.tar.gz b/v7.4.1086.tar.gz deleted file mode 100644 index d7b0d2e..0000000 --- a/v7.4.1086.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c216d89f26a6b43d6647a4e2f753b517442ef609270380a10e852a3e05bab41d -size 12547613 diff --git a/v7.4.1087.tar.gz b/v7.4.1087.tar.gz new file mode 100644 index 0000000..a5bd78e --- /dev/null +++ b/v7.4.1087.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2540b52dca515fe71079705f1a2f603f8e869a6b07e70341bc10fa68f3157ef8 +size 12547578 diff --git a/vim.changes b/vim.changes index 9a3a829..f9be96f 100644 --- a/vim.changes +++ b/vim.changes @@ -1,7 +1,7 @@ ------------------------------------------------------------------- -Sun Jan 10 20:08:21 UTC 2016 - idonmez@suse.com +Sun Jan 11 08:11:21 UTC 2016 - idonmez@suse.com -- Updated to revision 1086, fixes the following problems +- Updated to revision 1087, fixes the following problems * Wrong way to check for unletting internal variables. * The Tcl interface can't be loaded dynamically on Unix. * Crash when using an invalid command. @@ -9,6 +9,7 @@ Sun Jan 10 20:08:21 UTC 2016 - idonmez@suse.com * Using "." to repeat CTRL-A in Visual mode increments the wrong numbers. * The CTRL-A and CTRL-X commands do not update the '[ and '] marks. * Crash with an extremely long buffer name. + * CTRL-A and CTRL-X work badly with blockwise visual selection ------------------------------------------------------------------- Sat Jan 9 16:34:06 UTC 2016 - idonmez@suse.com diff --git a/vim.spec b/vim.spec index ff46e1b..ef60227 100644 --- a/vim.spec +++ b/vim.spec @@ -17,7 +17,7 @@ %define pkg_version 7.4 -%define patchlevel 1086 +%define patchlevel 1087 %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}