Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package vim-plugins for openSUSE:Factory checked in at 2021-08-04 22:28:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/vim-plugins (Old) and /work/SRC/openSUSE:Factory/.vim-plugins.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "vim-plugins" Wed Aug 4 22:28:58 2021 rev:36 rq:910123 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/vim-plugins/vim-plugins.changes 2021-04-26 16:40:25.470154410 +0200 +++ /work/SRC/openSUSE:Factory/.vim-plugins.new.1899/vim-plugins.changes 2021-08-04 22:29:41.613742799 +0200 @@ -1,0 +2,6 @@ +Tue Aug 3 11:22:05 UTC 2021 - Jiri Slaby <jsl...@suse.cz> + +- update vim-fugitive to 3.3 +- add vim-fugitive-Remove-unnecessary-complete-on-command-with-no-argum.patch + +------------------------------------------------------------------- Old: ---- vimplugin-fugitive-3.2.tar.gz New: ---- vim-fugitive-Remove-unnecessary-complete-on-command-with-no-argum.patch vimplugin-fugitive-3.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ vim-plugins.spec ++++++ --- /var/tmp/diff_new_pack.UheeuN/_old 2021-08-04 22:29:42.389741852 +0200 +++ /var/tmp/diff_new_pack.UheeuN/_new 2021-08-04 22:29:42.393741848 +0200 @@ -26,7 +26,7 @@ %define diffchanges_version 0.6.346dae2 %define editorconfig_version 0.3.3 %define file_line_version 1.0+20161020 -%define fugitive_version 3.2 +%define fugitive_version 3.3 %define gitdiff_version 2 %define gnupg_version 2.7.1 %define latex_version 1.10.0+20210323 @@ -104,6 +104,7 @@ Patch1: locateopen-1.3-locate-support.patch Patch2: showmarks-signs.patch Patch3: file-line-Fix-other-plugins-loading.patch +Patch4: vim-fugitive-Remove-unnecessary-complete-on-command-with-no-argum.patch BuildRequires: vim BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch @@ -641,6 +642,9 @@ pushd file-line-%file_line_version %patch3 -p1 popd +pushd vim-fugitive-%fugitive_version +%patch4 -p1 +popd %build ++++++ vim-fugitive-Remove-unnecessary-complete-on-command-with-no-argum.patch ++++++ From: Tim Pope <c...@tpope.net> Date: Sun, 11 Jul 2021 11:33:31 -0400 Subject: Remove unnecessary -complete on command with no arguments Git-repo: https://github.com/tpope/vim-fugitive.git Git-commit: 4cdeff8c33ec2fe0686324bf1846ce158c452754 Patch-mainline: 3.4 References: vim-fugitive error References https://github.com/vim/vim/pull/8544 Signed-off-by: Jiri Slaby <jsl...@suse.cz> --- plugin/fugitive.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugin/fugitive.vim b/plugin/fugitive.vim index bab337a9..62ae17f1 100644 --- a/plugin/fugitive.vim +++ b/plugin/fugitive.vim @@ -438,16 +438,16 @@ exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Gw exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Gwrite exe fugitive#WriteCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])' exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Gwq exe fugitive#WqCommand( <line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])' -exe 'command! -bar -bang -nargs=0 -complete=customlist,fugitive#CompleteObject GRemove exe fugitive#RemoveCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])' -exe 'command! -bar -bang -nargs=0 -complete=customlist,fugitive#CompleteObject GDelete exe fugitive#DeleteCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])' +exe 'command! -bar -bang -nargs=0 GRemove exe fugitive#RemoveCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])' +exe 'command! -bar -bang -nargs=0 GDelete exe fugitive#DeleteCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])' exe 'command! -bar -bang -nargs=1 -complete=customlist,fugitive#CompleteObject GMove exe fugitive#MoveCommand( <line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])' exe 'command! -bar -bang -nargs=1 -complete=customlist,fugitive#RenameComplete GRename exe fugitive#RenameCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])' if exists(':Gremove') != 2 && get(g:, 'fugitive_legacy_commands', 1) - exe 'command! -bar -bang -nargs=0 -complete=customlist,fugitive#CompleteObject Gremove exe fugitive#RemoveCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])' + exe 'command! -bar -bang -nargs=0 Gremove exe fugitive#RemoveCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])' \ '|echohl WarningMSG|echo ":Gremove is deprecated in favor of :GRemove"|echohl NONE' endif if exists(':Gdelete') != 2 && get(g:, 'fugitive_legacy_commands', 1) - exe 'command! -bar -bang -nargs=0 -complete=customlist,fugitive#CompleteObject Gdelete exe fugitive#DeleteCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])' + exe 'command! -bar -bang -nargs=0 Gdelete exe fugitive#DeleteCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])' \ '|echohl WarningMSG|echo ":Gdelete is deprecated in favor of :GDelete"|echohl NONE' endif if exists(':Gmove') != 2 && get(g:, 'fugitive_legacy_commands', 1) -- 2.26.2 ++++++ vimplugin-fugitive-3.2.tar.gz -> vimplugin-fugitive-3.3.tar.gz ++++++ ++++ 5274 lines of diff (skipped)