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 2022-03-10 22:45:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/vim-plugins (Old) and /work/SRC/openSUSE:Factory/.vim-plugins.new.2349 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "vim-plugins" Thu Mar 10 22:45:11 2022 rev:40 rq:960651 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/vim-plugins/vim-plugins.changes 2022-02-07 23:39:49.013735648 +0100 +++ /work/SRC/openSUSE:Factory/.vim-plugins.new.2349/vim-plugins.changes 2022-03-11 11:37:23.086346009 +0100 @@ -1,0 +2,5 @@ +Wed Mar 9 08:38:55 UTC 2022 - Jiri Slaby <jsl...@suse.cz> + +- add vim-plugin-gitrebase-keywordprg + +------------------------------------------------------------------- New: ---- gitrebase.vim ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ vim-plugins.spec ++++++ --- /var/tmp/diff_new_pack.9nZghk/_old 2022-03-11 11:37:24.006347089 +0100 +++ /var/tmp/diff_new_pack.9nZghk/_new 2022-03-11 11:37:24.006347089 +0100 @@ -104,6 +104,7 @@ Source102: neomutt.vim-%{neomutt_version}.tar.xz Source103: salt-vim-%{salt_version}.tar.xz Source104: vim-latex-%{latex_version}.tar.xz +Source200: gitrebase.vim Source1000: https://raw.githubusercontent.com/openSUSE/pack-tools/master/contrib/vim/spec.snippets Patch1: locateopen-1.3-locate-support.patch Patch2: showmarks-signs.patch @@ -286,6 +287,19 @@ :GITChanges [commitish] Highlight lines that were changed since the HEAD or some other changeset. +%package -n vim-plugin-gitrebase-keywordprg +Version: 1 +Release: 0 +Summary: Set keywordprg in git rebase --interactive +License: GPL-2.0-only +Group: Productivity/Text/Editors +Requires: git-core + +%description -n vim-plugin-gitrebase-keywordprg +Set keywordprg in git rebase --interactive. This was used to done before vim +8.2.4529, but was changed afterwards. For details, see +https://github.com/vim/vim/issues/9845. + %package -n vim-plugin-gnupg Version: %gnupg_version Release: 0 @@ -695,6 +709,9 @@ popd done +install -d %buildroot/%vimplugin_dir/after/ftplugin/ +install -m 644 %{SOURCE200} %buildroot/%vimplugin_dir/after/ftplugin/ + install -d %{buildroot}%{_defaultdocdir}/vimplugin-NERDtree/ mv %{buildroot}/%vimplugin_dir/nerdtree_plugin %{buildroot}%{_defaultdocdir}/vimplugin-NERDtree/ @@ -837,6 +854,9 @@ %defattr(-,root,root,0755) %vimplugin_dir/plugin/gitdiff.vim +%files -n vim-plugin-gitrebase-keywordprg +%vimplugin_dir/after/ftplugin/gitrebase.vim + %files -n vim-plugin-gnupg %defattr(-,root,root,0755) %vimplugin_dir/autoload/gnupg.vim ++++++ gitrebase.vim ++++++ " Vim filetype plugin " Language: git rebase --interactive " Maintainer: Jiri Slaby <jsl...@suse.cz> " Last Change: 2022 Mar 09 " " See https://github.com/vim/vim/issues/9845 setlocal keywordprg=git\ show