From 9d1d576382a8a86a26f2071c6351153ad9eab85a1a766b27a5e4a3a14829c10c Mon Sep 17 00:00:00 2001 From: Jiri Slaby Date: Wed, 16 Mar 2022 05:53:41 +0000 Subject: [PATCH 1/4] fix text OBS-URL: https://build.opensuse.org/package/show/editors/vim-plugins?expand=0&rev=94 --- vim-plugins.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim-plugins.spec b/vim-plugins.spec index aba26c4..3687213 100644 --- a/vim-plugins.spec +++ b/vim-plugins.spec @@ -296,7 +296,7 @@ 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 +Set keywordprg in git rebase --interactive. This used to done before vim 8.2.4529, but was changed afterwards. For details, see https://github.com/vim/vim/issues/9845. From 7a0a923da40f0e013ac16cbe4a33c8a2380d713cde6d6c04d9e3cd6e3c8e3dbf Mon Sep 17 00:00:00 2001 From: Jiri Slaby Date: Fri, 5 Aug 2022 09:17:36 +0000 Subject: [PATCH 2/4] up OBS-URL: https://build.opensuse.org/package/show/editors/vim-plugins?expand=0&rev=95 --- _service | 6 +--- check_for_updates.pl | 43 +++++++++++++++++++++++++++++ neomutt.vim-20210218.obscpio | 3 -- neomutt.vim-20220612.obscpio | 3 ++ neomutt.vim.obsinfo | 6 ++-- vim-latex-1.10.0+20210818.obscpio | 3 -- vim-latex-1.10.0+20220519.obscpio | 3 ++ vim-latex.obsinfo | 6 ++-- vim-markdown-2.0.0+20220129.obscpio | 3 -- vim-markdown-2.0.0+20220507.obscpio | 3 ++ vim-markdown.obsinfo | 6 ++-- vim-plugins.changes | 12 ++++++++ vim-plugins.spec | 19 +++++++------ vimplugin-editorconfig-0.3.3.tar.gz | 3 -- vimplugin-editorconfig-1.1.1.tar.gz | 3 ++ 15 files changed, 87 insertions(+), 35 deletions(-) create mode 100644 check_for_updates.pl delete mode 100644 neomutt.vim-20210218.obscpio create mode 100644 neomutt.vim-20220612.obscpio delete mode 100644 vim-latex-1.10.0+20210818.obscpio create mode 100644 vim-latex-1.10.0+20220519.obscpio delete mode 100644 vim-markdown-2.0.0+20220129.obscpio create mode 100644 vim-markdown-2.0.0+20220507.obscpio delete mode 100644 vimplugin-editorconfig-0.3.3.tar.gz create mode 100644 vimplugin-editorconfig-1.1.1.tar.gz diff --git a/_service b/_service index 48ae2a0..266c885 100644 --- a/_service +++ b/_service @@ -5,7 +5,6 @@ @PARENT_TAG@+%cd v(.*) \1 - 559088afaf10124ea663ee0f4f73b1de48fb1632 file-line.obsinfo @@ -15,7 +14,7 @@ https://github.com/neomutt/neomutt.vim.git git %cd - 15b06057a75e5b648b1c1c692c870bc7f052d0c9 + origin/main neomutt.vim.obsinfo @@ -25,7 +24,6 @@ https://github.com/saltstack/salt-vim.git git %cd - 6ca9e3500cc39dd417b411435d58a1b720b331cc salt-vim.obsinfo @@ -37,7 +35,6 @@ @PARENT_TAG@+%cd v(.*) \1 - 0760891c71e4c332d0b07704f2356bc4f56a7128 vim-latex.obsinfo @@ -47,7 +44,6 @@ https://github.com/plasticboy/vim-markdown git @PARENT_TAG@+%cd - 50d42082819cfa91745b6eff6e28ad5cbc8b27fa vim-markdown.obsinfo diff --git a/check_for_updates.pl b/check_for_updates.pl new file mode 100644 index 0000000..cfc76e9 --- /dev/null +++ b/check_for_updates.pl @@ -0,0 +1,43 @@ +#!/usr/bin/perl +use warnings; +use strict; +use Data::Dumper; +use JSON; +use LWP::UserAgent; + +open(SPEC, '; +} +close(SPEC); + +my $child = open(SPEC, '-|', qw|rpm -E|, $spec) // die "cannot run rpm"; +exit 0 unless ($child); + +my $ua = LWP::UserAgent->new; +my $json = JSON->new->allow_nonref; + +while () { + chomp; + my ($org, $repo, $rel, $ver) = (m@^Source\d+:\s+https://github\.com/([^/]+)/([^/]+)/(?:archive/refs/tags|releases/download/([^/]+))/([^/]+)\.tar\.gz#@); + next unless defined $ver; + $ver = $rel if defined $rel; + + my $req_url = defined $rel ? 'releases/latest' : 'tags'; + my $req = HTTP::Request->new(GET => "https://api.github.com/repos/$org/$repo/$req_url"); + my $res = $ua->request($req); + die "bad HTTP reply for $org/$repo -- \"" . $res->status_line . '"' unless ($res->is_success); + + my $j = $json->decode($res->content); + $j = @{$j}[0] unless (defined $rel); + my $ver2 = $j->{'name'} || $j->{'tag_name'}; + + if ($ver2 ne $ver) { + print "$org, $repo, $ver -> $ver2\n"; + } +} +close(SPEC); + +1; diff --git a/neomutt.vim-20210218.obscpio b/neomutt.vim-20210218.obscpio deleted file mode 100644 index fb804d5..0000000 --- a/neomutt.vim-20210218.obscpio +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d68ba5f6b0734be236c7f4b0cc588e9ab07b594474f62728c72369e6ef72117e -size 92683 diff --git a/neomutt.vim-20220612.obscpio b/neomutt.vim-20220612.obscpio new file mode 100644 index 0000000..1f7c87b --- /dev/null +++ b/neomutt.vim-20220612.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a951da2d1501cb50d02e801f6d0349c6a95a762de7f5e4af2eb5f5bc6a28b685 +size 93195 diff --git a/neomutt.vim.obsinfo b/neomutt.vim.obsinfo index dc9ffc7..fe6214b 100644 --- a/neomutt.vim.obsinfo +++ b/neomutt.vim.obsinfo @@ -1,4 +1,4 @@ name: neomutt.vim -version: 20210218 -mtime: 1613614995 -commit: 15b06057a75e5b648b1c1c692c870bc7f052d0c9 +version: 20220612 +mtime: 1655060512 +commit: 4f87a1e1fa3e4b343558594f3b5490cd028b8718 diff --git a/vim-latex-1.10.0+20210818.obscpio b/vim-latex-1.10.0+20210818.obscpio deleted file mode 100644 index 82f493e..0000000 --- a/vim-latex-1.10.0+20210818.obscpio +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ef6881ef3003e63e679f06b4b4349944acd284eb783496747cf12363e717bdb6 -size 1012236 diff --git a/vim-latex-1.10.0+20220519.obscpio b/vim-latex-1.10.0+20220519.obscpio new file mode 100644 index 0000000..45eb29c --- /dev/null +++ b/vim-latex-1.10.0+20220519.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25f81b34a00b74299b4e0c55ea2e5da25250f0b5318ccd9d434ecc9f8c1e9d14 +size 1012236 diff --git a/vim-latex.obsinfo b/vim-latex.obsinfo index 4e17c34..9360329 100644 --- a/vim-latex.obsinfo +++ b/vim-latex.obsinfo @@ -1,4 +1,4 @@ name: vim-latex -version: 1.10.0+20210818 -mtime: 1629271826 -commit: 0760891c71e4c332d0b07704f2356bc4f56a7128 +version: 1.10.0+20220519 +mtime: 1652983369 +commit: 069a26a0963adb6a9de9f40f5a7332c7207d5423 diff --git a/vim-markdown-2.0.0+20220129.obscpio b/vim-markdown-2.0.0+20220129.obscpio deleted file mode 100644 index 7f4e4d6..0000000 --- a/vim-markdown-2.0.0+20220129.obscpio +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4cc73ca8340ddf54c83053ba200965cf2e6b26438904b74e5d91f6027d044e7c -size 157195 diff --git a/vim-markdown-2.0.0+20220507.obscpio b/vim-markdown-2.0.0+20220507.obscpio new file mode 100644 index 0000000..784324b --- /dev/null +++ b/vim-markdown-2.0.0+20220507.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2ed26bab1612ac38c5ca371d506ebdd2b26fd43c14918f1fad89f617218fb77 +size 161291 diff --git a/vim-markdown.obsinfo b/vim-markdown.obsinfo index d35cd93..c66ce84 100644 --- a/vim-markdown.obsinfo +++ b/vim-markdown.obsinfo @@ -1,4 +1,4 @@ name: vim-markdown -version: 2.0.0+20220129 -mtime: 1643455211 -commit: 50d42082819cfa91745b6eff6e28ad5cbc8b27fa +version: 2.0.0+20220507 +mtime: 1651922706 +commit: 3a9643961233c2812816078af8bd1eaabc530dce diff --git a/vim-plugins.changes b/vim-plugins.changes index c1a49ac..051b22e 100644 --- a/vim-plugins.changes +++ b/vim-plugins.changes @@ -1,3 +1,15 @@ +------------------------------------------------------------------- +Fri Aug 5 09:15:57 UTC 2022 - Jiri Slaby + +- update + * bufexplorer 7.4.24 + * editorconfig 1.1.1 + * fugitive 3.7 + * latex 1.10.0+20220519 + * markdown 2.0.0+20220507 + * neomutt 20220612 +- add check_for_updates.pl script + ------------------------------------------------------------------- Wed Mar 9 08:38:55 UTC 2022 - Jiri Slaby diff --git a/vim-plugins.spec b/vim-plugins.spec index 3687213..dd2ba2c 100644 --- a/vim-plugins.spec +++ b/vim-plugins.spec @@ -20,24 +20,24 @@ %define align_version_orig 37-43 %define align_version 37.43 %define a_version 2.18 -%define bufexplorer_version 7.4.21 +%define bufexplorer_version 7.4.24 %define calendar_version 2.5 %define colorsel_version 20110107 %define colorschemes_version 1.0 %define diffchanges_tag 346dae2 %define diffchanges_version 0.6+g346dae2 -%define editorconfig_version 0.3.3 +%define editorconfig_version 1.1.1 %define file_line_version 1.0+20161020 -%define fugitive_version 3.4 +%define fugitive_version 3.7 %define gitdiff_version 2 %define gnupg_version 2.7.1 -%define latex_version 1.10.0+20210818 +%define latex_version 1.10.0+20220519 %define locateopen_version 1.3 -%define markdown_version 2.0.0+20220129 +%define markdown_version 2.0.0+20220507 %define matrix_version 1.10 %define minibufexpl_version 6.3.2 %define multiplesearch_version 1.3 -%define neomutt_version 20210218 +%define neomutt_version 20220612 %define NERDcommenter_version 2.6.0 %define NERDtree_version 6.10.16 %define project_version 1.4.1 @@ -95,9 +95,9 @@ Source29: https://github.com/jamessan/vim-gnupg/releases/download/v%{gnupg Source30: https://github.com/vim-scripts/gitdiff.vim/archive/refs/tags/%{gitdiff_version}.tar.gz#/vimplugin-gitdiff-%{gitdiff_version}.tar.gz Source31: https://github.com/vim-scripts/snipMate/archive/refs/tags/%{snipmate_version}.tar.gz#/vimplugin-snipmate-%{snipmate_version}.tar.gz Source32: https://github.com/vim-scripts/rails.vim/archive/refs/tags/%{rails_version}.tar.gz#/vimplugin-rails-%{rails_version}.tar.gz -Source33: https://github.com/mileszs/ack.vim/archive/%{ack_version}.tar.gz#/vimplugin-ack-%{ack_version}.tar.gz -Source34: https://github.com/editorconfig/editorconfig-vim/archive/v%{editorconfig_version}.tar.gz#/vimplugin-editorconfig-%{editorconfig_version}.tar.gz -Source35: https://github.com/tpope/vim-fugitive/archive/v%{fugitive_version}.tar.gz#/vimplugin-fugitive-%{fugitive_version}.tar.gz +Source33: https://github.com/mileszs/ack.vim/archive/refs/tags/%{ack_version}.tar.gz#/vimplugin-ack-%{ack_version}.tar.gz +Source34: https://github.com/editorconfig/editorconfig-vim/archive/refs/tags/v%{editorconfig_version}.tar.gz#/vimplugin-editorconfig-%{editorconfig_version}.tar.gz +Source35: https://github.com/tpope/vim-fugitive/archive/refs/tags/v%{fugitive_version}.tar.gz#/vimplugin-fugitive-%{fugitive_version}.tar.gz # from _service Source100: file-line-%{file_line_version}.tar.xz Source101: vim-markdown-%{markdown_version}.tar.xz @@ -106,6 +106,7 @@ 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 +Source1001: check_for_updates.pl Patch1: locateopen-1.3-locate-support.patch Patch2: showmarks-signs.patch Patch3: file-line-Fix-other-plugins-loading.patch diff --git a/vimplugin-editorconfig-0.3.3.tar.gz b/vimplugin-editorconfig-0.3.3.tar.gz deleted file mode 100644 index b4fe3d6..0000000 --- a/vimplugin-editorconfig-0.3.3.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fd579672c426a089835e9bc57a1fd5fc18dba77c014b67141153372e83c92c57 -size 35395 diff --git a/vimplugin-editorconfig-1.1.1.tar.gz b/vimplugin-editorconfig-1.1.1.tar.gz new file mode 100644 index 0000000..cbf2748 --- /dev/null +++ b/vimplugin-editorconfig-1.1.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb8be206659e6fb3bab9df66fe9b80c14265325e3d9a4bbaad7c63058c2ba558 +size 33287 From c17f8289e93ca9c26af5777c742f1717b688a81a679888d1b1624c7c4f238a2a Mon Sep 17 00:00:00 2001 From: Jiri Slaby Date: Fri, 5 Aug 2022 09:19:08 +0000 Subject: [PATCH 3/4] up OBS-URL: https://build.opensuse.org/package/show/editors/vim-plugins?expand=0&rev=96 --- bufexplorer-7.4.21.tar.gz | 3 --- bufexplorer-7.4.24.tar.gz | 3 +++ vimplugin-fugitive-3.4.tar.gz | 3 --- vimplugin-fugitive-3.7.tar.gz | 3 +++ 4 files changed, 6 insertions(+), 6 deletions(-) delete mode 100644 bufexplorer-7.4.21.tar.gz create mode 100644 bufexplorer-7.4.24.tar.gz delete mode 100644 vimplugin-fugitive-3.4.tar.gz create mode 100644 vimplugin-fugitive-3.7.tar.gz diff --git a/bufexplorer-7.4.21.tar.gz b/bufexplorer-7.4.21.tar.gz deleted file mode 100644 index 1aa9563..0000000 --- a/bufexplorer-7.4.21.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:58cb89e9ac8c3a65e7ef01782b99ea15ef63171d40977645a3970c230b183678 -size 26135 diff --git a/bufexplorer-7.4.24.tar.gz b/bufexplorer-7.4.24.tar.gz new file mode 100644 index 0000000..ff87366 --- /dev/null +++ b/bufexplorer-7.4.24.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e405a868b1c7b72f72d4805fb45c4ed20c7e407cf5728eb6f3a47a0d520fb31e +size 26364 diff --git a/vimplugin-fugitive-3.4.tar.gz b/vimplugin-fugitive-3.4.tar.gz deleted file mode 100644 index 6913b9b..0000000 --- a/vimplugin-fugitive-3.4.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:421b7cbf413f026cbe7fa5491266758b2d14a9d27223a28fb834e88011ecae65 -size 80677 diff --git a/vimplugin-fugitive-3.7.tar.gz b/vimplugin-fugitive-3.7.tar.gz new file mode 100644 index 0000000..724931d --- /dev/null +++ b/vimplugin-fugitive-3.7.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1deeb9fffe3e3299375842657cb2d6b7059a67d3373dc0ab52c16d7a7c99ea2a +size 84271 From 0501de80dc63e5c8daf9e73deb0406b6cb3291ed3f323b52986b449638a74d53 Mon Sep 17 00:00:00 2001 From: Jiri Slaby Date: Fri, 5 Aug 2022 09:23:34 +0000 Subject: [PATCH 4/4] up OBS-URL: https://build.opensuse.org/package/show/editors/vim-plugins?expand=0&rev=97 --- vim-plugins.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vim-plugins.spec b/vim-plugins.spec index dd2ba2c..e4426dd 100644 --- a/vim-plugins.spec +++ b/vim-plugins.spec @@ -833,6 +833,8 @@ fi \ %defattr(-,root,root,0755) %license editorconfig-vim-%{editorconfig_version}/LICENSE %vimplugin_dir/plugin/editorconfig.vim +%vimplugin_dir/autoload/editorconfig_core/ +%vimplugin_dir/autoload/editorconfig_core.vim %vimplugin_dir/autoload/editorconfig.vim %vimplugin_dir/doc/editorconfig.txt