From a8964b2f6dabd38c086e433569bb62c2a2336740 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 03:58:22 +0000 Subject: [PATCH 01/20] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vim-command-t.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index a175243..9cef044 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -4,7 +4,7 @@ Name: vim-command-t Version: 5.0.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM License: BSD URL: https://github.com/wincent/command-t @@ -103,6 +103,9 @@ rspec -Iruby spec %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 5.0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 5.0.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 79f802d2c0ad56f1c1c6f6a549a5bfa78caa68d7 Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Thu, 27 Jan 2022 08:38:52 +0900 Subject: [PATCH 02/20] F-36: rebuild against ruby31 --- vim-command-t.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index 9cef044..67b9df9 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -4,7 +4,7 @@ Name: vim-command-t Version: 5.0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM License: BSD URL: https://github.com/wincent/command-t @@ -103,6 +103,9 @@ rspec -Iruby spec %changelog +* Wed Jan 26 2022 Mamoru TASAKA - 5.0.3-4 +- F-36: rebuild against ruby31 + * Sat Jan 22 2022 Fedora Release Engineering - 5.0.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 5d2210b1a3e9160fc67ec7382dc524f7cf95c454 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 11:52:51 +0000 Subject: [PATCH 03/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vim-command-t.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index 67b9df9..c6d637e 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -4,7 +4,7 @@ Name: vim-command-t Version: 5.0.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM License: BSD URL: https://github.com/wincent/command-t @@ -103,6 +103,9 @@ rspec -Iruby spec %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 5.0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Wed Jan 26 2022 Mamoru TASAKA - 5.0.3-4 - F-36: rebuild against ruby31 From e2f7f66542bcb634f553577aca8ab58971aa498f Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Wed, 23 Nov 2022 16:21:59 +0900 Subject: [PATCH 04/20] Patch from upstream for ruby3.2 Fixnum removal --- ...ommand-t-5.0.3-ruby32-Fixnum-removal.patch | 47 +++++++++++++++++++ vim-command-t.spec | 9 +++- 2 files changed, 55 insertions(+), 1 deletion(-) create mode 100644 vim-command-t-5.0.3-ruby32-Fixnum-removal.patch diff --git a/vim-command-t-5.0.3-ruby32-Fixnum-removal.patch b/vim-command-t-5.0.3-ruby32-Fixnum-removal.patch new file mode 100644 index 0000000..2cbf93b --- /dev/null +++ b/vim-command-t-5.0.3-ruby32-Fixnum-removal.patch @@ -0,0 +1,47 @@ +From 5147a93a4b6cdb60cfa0ed1b792de711f44cd7b4 Mon Sep 17 00:00:00 2001 +From: Greg Hurrell +Date: Fri, 26 Aug 2022 23:59:38 +0200 +Subject: [PATCH] test: avoid another deprecation warning + + spec/command-t/watchman/utils_spec.rb:17: warning: constant + ::Fixnum is deprecated + +According to: + + https://bugs.ruby-lang.org/issues/12005 + +> CRuby has two Integer classes, Fixnum and Bignum. +> But it is implementation detail. +> They should be seen as a single class Integer + +Unification happened in Ruby 2.4.0, which is approximately $zillion +years ago (well, 25 Dec 2016): + + https://www.ruby-lang.org/en/news/2016/12/25/ruby-2-4-0-released/ + +I doubt anybody running these tests is on such an old version at this +point, so it seems safe to switch to `Integer`. + +Removed the comments because I am not certain whether we're going to hit +that first `if` branch's body any more, and I'd rather have no comments +than something inaccurate or misleading. +--- + spec/command-t/watchman/utils_spec.rb | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/spec/command-t/watchman/utils_spec.rb b/spec/command-t/watchman/utils_spec.rb +index 271589b6..6bfd0d0d 100644 +--- a/spec/command-t/watchman/utils_spec.rb ++++ b/spec/command-t/watchman/utils_spec.rb +@@ -14,9 +14,9 @@ def binary(str) + + def little_endian? + byte = [0xff00].pack('s')[0] +- if byte.is_a?(Fixnum) # ie. Ruby 1.8 ++ if byte.is_a?(Integer) + byte.zero? +- elsif byte.is_a?(String) # ie. Ruby >= 1.9 ++ elsif byte.is_a?(String) + byte == "\x00" + else + raise 'unable to determine endianness' diff --git a/vim-command-t.spec b/vim-command-t.spec index c6d637e..08db21e 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -4,7 +4,7 @@ Name: vim-command-t Version: 5.0.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM License: BSD URL: https://github.com/wincent/command-t @@ -18,6 +18,9 @@ Patch1: vim-command-t-5.0.3-Use-rspec-mock-for-stubbing.patch # Fix `CommandT::Scanner::BufferScanner` test. # https://github.com/wincent/command-t/commit/52adb808e2db85035e9a5a214cb147280c2f10e0 Patch2: vim-command-t-5.0.3-fix-tests.patch +# https://github.com/wincent/command-t/commit/5147a93a4b6cdb60cfa0ed1b792de711f44cd7b4 +# Ruby3.2 finally removes Fixnum +Patch3: vim-command-t-5.0.3-ruby32-Fixnum-removal.patch Requires: ruby(release) # Although command-t does not depend on rubygems directly, the RubyGems are # required by Ruby, but not always (rhbz#845011). So it is necessary to enforce @@ -52,6 +55,7 @@ more weight. %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 %build pushd ./ruby/command-t/ext/command-t @@ -103,6 +107,9 @@ rspec -Iruby spec %changelog +* Wed Nov 23 2022 Mamoru TASAKA - 5.0.3-6 +- Patch from upstream for ruby3.2 Fixnum removal + * Sat Jul 23 2022 Fedora Release Engineering - 5.0.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From bf3f72eca3141e72792062f2a86c17dcac4be542 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Ondruch?= Date: Tue, 3 Jan 2023 18:47:07 +0100 Subject: [PATCH 05/20] Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_3.2 --- vim-command-t.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index 08db21e..ac153d9 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -4,7 +4,7 @@ Name: vim-command-t Version: 5.0.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM License: BSD URL: https://github.com/wincent/command-t @@ -107,6 +107,9 @@ rspec -Iruby spec %changelog +* Tue Jan 03 2023 Vít Ondruch - 5.0.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_3.2 + * Wed Nov 23 2022 Mamoru TASAKA - 5.0.3-6 - Patch from upstream for ruby3.2 Fixnum removal From 8ce3b142ed00730ba424f343fbb90315ca157845 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 06:17:42 +0000 Subject: [PATCH 06/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vim-command-t.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index ac153d9..74f8f4f 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -4,7 +4,7 @@ Name: vim-command-t Version: 5.0.3 -Release: 7%{?dist} +Release: 8%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM License: BSD URL: https://github.com/wincent/command-t @@ -107,6 +107,9 @@ rspec -Iruby spec %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 5.0.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Tue Jan 03 2023 Vít Ondruch - 5.0.3-7 - Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_3.2 From 5596549d30fc18f746a8cf32fbf50846aff5c302 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 17:38:13 +0000 Subject: [PATCH 07/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vim-command-t.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index 74f8f4f..9d11c7b 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -4,7 +4,7 @@ Name: vim-command-t Version: 5.0.3 -Release: 8%{?dist} +Release: 9%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM License: BSD URL: https://github.com/wincent/command-t @@ -107,6 +107,9 @@ rspec -Iruby spec %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 5.0.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Sat Jan 21 2023 Fedora Release Engineering - 5.0.3-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From b46617fd6efb95e02f52cf53b619f4ad0d3c1a19 Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Thu, 4 Jan 2024 00:16:49 +0900 Subject: [PATCH 08/20] Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_3.3 --- vim-command-t.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index 9d11c7b..782da70 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -4,7 +4,7 @@ Name: vim-command-t Version: 5.0.3 -Release: 9%{?dist} +Release: 10%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM License: BSD URL: https://github.com/wincent/command-t @@ -107,6 +107,9 @@ rspec -Iruby spec %changelog +* Wed Jan 03 2024 Mamoru TASAKA - 5.0.3-10 +- Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_3.3 + * Sat Jul 22 2023 Fedora Release Engineering - 5.0.3-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 34f614b91e1d5ca698b7e6b7af8c975bb4b1033a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 07:46:37 +0000 Subject: [PATCH 09/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- vim-command-t.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index 782da70..765abc2 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -4,7 +4,7 @@ Name: vim-command-t Version: 5.0.3 -Release: 10%{?dist} +Release: 11%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM License: BSD URL: https://github.com/wincent/command-t @@ -107,6 +107,9 @@ rspec -Iruby spec %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 5.0.3-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Wed Jan 03 2024 Mamoru TASAKA - 5.0.3-10 - Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_3.3 From fb30028a99c882574c5585ae13c6a9efaa5c0ab5 Mon Sep 17 00:00:00 2001 From: Software Management Team Date: Thu, 30 May 2024 12:47:07 +0200 Subject: [PATCH 10/20] Eliminate use of obsolete %patchN syntax (#2283636) --- vim-command-t.spec | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index 765abc2..57f0074 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -52,10 +52,10 @@ more weight. %prep %setup -q -n command-t-%{version} -%patch0 -p1 -%patch1 -p1 -%patch2 -p1 -%patch3 -p1 +%patch 0 -p1 +%patch 1 -p1 +%patch 2 -p1 +%patch 3 -p1 %build pushd ./ruby/command-t/ext/command-t From 3d027a4aa883825a87e8be9b292903dc61dd9d85 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 08:46:53 +0000 Subject: [PATCH 11/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- vim-command-t.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index 57f0074..927f6e7 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -4,7 +4,7 @@ Name: vim-command-t Version: 5.0.3 -Release: 11%{?dist} +Release: 12%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM License: BSD URL: https://github.com/wincent/command-t @@ -107,6 +107,9 @@ rspec -Iruby spec %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 5.0.3-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Sat Jan 27 2024 Fedora Release Engineering - 5.0.3-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 25170e41ab388aae1ea3440f14e66e296d44eb7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Wed, 4 Sep 2024 22:39:46 +0200 Subject: [PATCH 12/20] convert license to SPDX This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4 --- vim-command-t.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index 927f6e7..af21424 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -4,9 +4,10 @@ Name: vim-command-t Version: 5.0.3 -Release: 12%{?dist} +Release: 13%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM -License: BSD +# Automatically converted from old format: BSD - review is highly recommended. +License: LicenseRef-Callaway-BSD URL: https://github.com/wincent/command-t Source0: https://github.com/wincent/command-t/archive/%{version}/command-t-%{version}.tar.gz # Relax the Command-T version checking. @@ -107,6 +108,9 @@ rspec -Iruby spec %changelog +* Wed Sep 04 2024 Miroslav Suchý - 5.0.3-13 +- convert license to SPDX + * Sat Jul 20 2024 Fedora Release Engineering - 5.0.3-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From dd4eccc26595f50be6949337962fc26d4b4205be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Ondruch?= Date: Mon, 14 Oct 2024 15:25:47 +0200 Subject: [PATCH 13/20] Update to Command-T 5.0.5. Resolves: rhbz#2091276 --- .gitignore | 1 + sources | 2 +- ..._LIB_VERSION-instead-of-RUBY_VERSION.patch | 2 +- ...-t-5.0.3-Use-rspec-mock-for-stubbing.patch | 243 ------------------ vim-command-t-5.0.3-fix-tests.patch | 63 ----- ...PDX-identifier-in-AppStream-metadata.patch | 22 ++ vim-command-t.spec | 52 ++-- 7 files changed, 54 insertions(+), 331 deletions(-) delete mode 100644 vim-command-t-5.0.3-Use-rspec-mock-for-stubbing.patch delete mode 100644 vim-command-t-5.0.3-fix-tests.patch create mode 100644 vim-command-t-5.0.5-Use-SPDX-identifier-in-AppStream-metadata.patch diff --git a/.gitignore b/.gitignore index 3ee6ea3..1b2b182 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /command-t-4.0.tar.gz /command-t-5.0.2.tar.gz /command-t-5.0.3.tar.gz +/command-t-5.0.5.tar.gz diff --git a/sources b/sources index 89ecd76..93b910a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (command-t-5.0.3.tar.gz) = 588ee1516039e6cd45210de43307c02259fed29cc7610c222fe705cdf1d5938f51f823d41b546a36320da31db12e902363867da91b18fe56ea09c1efe2bb51fb +SHA512 (command-t-5.0.5.tar.gz) = 300ecdc821c8554c3fd47940f28629644192bf5bb4e7c89a65021e271e526b7738a2eb54f5845af74c7879256ff69409f665dc158db502a2943ec4d36618a9d7 diff --git a/vim-3.0.2-Check-RUBY_LIB_VERSION-instead-of-RUBY_VERSION.patch b/vim-3.0.2-Check-RUBY_LIB_VERSION-instead-of-RUBY_VERSION.patch index 279e317..4d3a964 100644 --- a/vim-3.0.2-Check-RUBY_LIB_VERSION-instead-of-RUBY_VERSION.patch +++ b/vim-3.0.2-Check-RUBY_LIB_VERSION-instead-of-RUBY_VERSION.patch @@ -12,7 +12,7 @@ diff --git a/autoload/commandt.vim b/autoload/commandt.vim index 7513f55..1299731 100644 --- a/autoload/commandt.vim +++ b/autoload/commandt.vim -@@ -192,8 +192,7 @@ ruby << EOF +@@ -200,8 +200,7 @@ ruby << EOF # compiled with. patchlevel = defined?(RUBY_PATCHLEVEL) ? RUBY_PATCHLEVEL : nil if CommandT::Metadata::UNKNOWN == true || ( diff --git a/vim-command-t-5.0.3-Use-rspec-mock-for-stubbing.patch b/vim-command-t-5.0.3-Use-rspec-mock-for-stubbing.patch deleted file mode 100644 index a76464c..0000000 --- a/vim-command-t-5.0.3-Use-rspec-mock-for-stubbing.patch +++ /dev/null @@ -1,243 +0,0 @@ -From a185ccc2f4483f01edd80432b3daebdebdb15a7f Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?V=C3=ADt=20Ondruch?= -Date: Thu, 4 Mar 2021 13:53:36 +0100 -Subject: [PATCH] Use rspec-mock for stubbing. - -This allows to remove `rr` dependency and therefore reduce dependency -chain. ---- - spec/command-t/controller_spec.rb | 72 +++++++++---------- - spec/command-t/finder/buffer_finder_spec.rb | 2 +- - spec/command-t/finder/file_finder_spec.rb | 6 +- - spec/command-t/scanner/buffer_scanner_spec.rb | 6 +- - .../file_scanner/ruby_file_scanner_spec.rb | 8 +-- - .../watchman_file_scanner_spec.rb | 6 +- - spec/spec_helper.rb | 4 -- - 7 files changed, 49 insertions(+), 55 deletions(-) - -diff --git a/spec/command-t/controller_spec.rb b/spec/command-t/controller_spec.rb -index 3a3fcaf..6bbd6d7 100644 ---- a/spec/command-t/controller_spec.rb -+++ b/spec/command-t/controller_spec.rb -@@ -16,35 +16,35 @@ describe CommandT::Controller do - end - - def set_string(name, value) -- stub(::VIM).evaluate(%{exists("#{name}")}).returns(1) -- stub(::VIM).evaluate(name).returns(value) -+ allow(::VIM).to receive(:evaluate).with(%{exists("#{name}")}).and_return(1) -+ allow(::VIM).to receive(:evaluate).with(name).and_return(value) - end - - it 'opens relative paths inside the working directory' do -- stub(::VIM).evaluate('a:arg').returns('') -+ allow(::VIM).to receive(:evaluate).with('a:arg').and_return('') - set_string('g:CommandTTraverseSCM', 'pwd') - controller.show_file_finder -- mock(::VIM).command('silent CommandTOpen edit path/to/selection') -+ expect(::VIM).to receive(:command).with('silent CommandTOpen edit path/to/selection') - controller.accept_selection - end - - it 'opens absolute paths outside the working directory' do -- stub(::VIM).evaluate('a:arg').returns('../outside') -+ allow(::VIM).to receive(:evaluate).with('a:arg').and_return('../outside') - controller.show_file_finder -- mock(::VIM).command('silent CommandTOpen edit /working/outside/path/to/selection') -+ expect(::VIM).to receive(:command).with('silent CommandTOpen edit /working/outside/path/to/selection') - controller.accept_selection - end - - it 'does not get confused by common directory prefixes' do -- stub(::VIM).evaluate('a:arg').returns('../directory-oops') -+ allow(::VIM).to receive(:evaluate).with('a:arg').and_return('../directory-oops') - controller.show_file_finder -- mock(::VIM).command('silent CommandTOpen edit /working/directory-oops/path/to/selection') -+ expect(::VIM).to receive(:command).with('silent CommandTOpen edit /working/directory-oops/path/to/selection') - controller.accept_selection - end - - it 'does not enter an infinite loop when toggling focus' do - # https://github.com/wincent/command-t/issues/157 -- stub(::VIM).evaluate('a:arg').returns('') -+ allow(::VIM).to receive(:evaluate).with('a:arg').and_return('') - set_string('g:CommandTTraverseSCM', 'pwd') - controller.show_file_finder - expect { controller.toggle_focus }.to_not raise_error -@@ -59,43 +59,43 @@ describe CommandT::Controller do - - def stub_finder(sorted_matches=[]) - finder = CommandT::Finder::FileFinder.new -- stub(finder).path = anything -- stub(finder).sorted_matches_for(anything, anything).returns(sorted_matches) -- stub(CommandT::Finder::FileFinder).new.returns(finder) -+ allow(finder).to receive(:"path=").with(anything) -+ allow(finder).to receive(:sorted_matches_for).with(anything, anything).and_return(sorted_matches) -+ allow(CommandT::Finder::FileFinder).to receive(:new).and_return(finder) - end - - def stub_match_window(selection) - match_window = Object.new -- stub(match_window).matches = anything -- stub(match_window).leave -- stub(match_window).focus -- stub(match_window).selection.returns(selection) -- stub(CommandT::MatchWindow).new.returns(match_window) -+ allow(match_window).to receive(:"matches=").with(anything) -+ allow(match_window).to receive(:leave) -+ allow(match_window).to receive(:focus) -+ allow(match_window).to receive(:selection).and_return(selection) -+ allow(CommandT::MatchWindow).to receive(:new).and_return(match_window) - end - - def stub_prompt(abbrev='') - prompt = Object.new -- stub(prompt).focus -- stub(prompt).unfocus -- stub(prompt).clear! -- stub(prompt).redraw -- stub(prompt).abbrev.returns(abbrev) -- stub(CommandT::Prompt).new.returns(prompt) -+ allow(prompt).to receive(:focus) -+ allow(prompt).to receive(:unfocus) -+ allow(prompt).to receive(:clear!) -+ allow(prompt).to receive(:redraw) -+ allow(prompt).to receive(:abbrev).and_return(abbrev) -+ allow(CommandT::Prompt).to receive(:new).and_return(prompt) - end - - def stub_vim(working_directory) -- stub($curbuf).number.returns('0') -- stub(::VIM).command(/noremap/) -- stub(::VIM).command('silent b 0') -- stub(::VIM).command(/augroup/) -- stub(::VIM).command('au!') -- stub(::VIM).command(/autocmd/) -- stub(::VIM).evaluate(/exists\(.+\)/).returns('0') -- stub(::VIM).evaluate('getcwd()').returns(working_directory) -- stub(::VIM).evaluate('&buflisted').returns('1') -- stub(::VIM).evaluate('&lines').returns('80') -- stub(::VIM).evaluate('&term').returns('vt100') -- stub(::VIM).evaluate('v:version').returns(704) -- stub(::VIM).evaluate('!&buflisted && &buftype == "nofile"') -+ allow($curbuf).to receive(:number).and_return('0') -+ allow(::VIM).to receive(:command).with(/noremap/) -+ allow(::VIM).to receive(:command).with('silent b 0') -+ allow(::VIM).to receive(:command).with(/augroup/) -+ allow(::VIM).to receive(:command).with('au!') -+ allow(::VIM).to receive(:command).with(/autocmd/) -+ allow(::VIM).to receive(:evaluate).with(/exists\(.+\)/).and_return('0') -+ allow(::VIM).to receive(:evaluate).with('getcwd()').and_return(working_directory) -+ allow(::VIM).to receive(:evaluate).with('&buflisted').and_return('1') -+ allow(::VIM).to receive(:evaluate).with('&lines').and_return('80') -+ allow(::VIM).to receive(:evaluate).with('&term').and_return('vt100') -+ allow(::VIM).to receive(:evaluate).with('v:version').and_return(704) -+ allow(::VIM).to receive(:evaluate).with('!&buflisted && &buftype == "nofile"') - end - end -diff --git a/spec/command-t/finder/buffer_finder_spec.rb b/spec/command-t/finder/buffer_finder_spec.rb -index f0df4e1..be56463 100644 ---- a/spec/command-t/finder/buffer_finder_spec.rb -+++ b/spec/command-t/finder/buffer_finder_spec.rb -@@ -6,7 +6,7 @@ require 'spec_helper' - describe CommandT::Finder::BufferFinder do - before do - @paths = %w(.git/config .vim/notes .vimrc baz foo/beta) -- any_instance_of(CommandT::Scanner::BufferScanner, :paths => @paths) -+ allow_any_instance_of(CommandT::Scanner::BufferScanner).to receive(:paths).and_return(@paths) - @finder = CommandT::Finder::BufferFinder.new - end - -diff --git a/spec/command-t/finder/file_finder_spec.rb b/spec/command-t/finder/file_finder_spec.rb -index cac5388..9654105 100644 ---- a/spec/command-t/finder/file_finder_spec.rb -+++ b/spec/command-t/finder/file_finder_spec.rb -@@ -19,9 +19,9 @@ describe CommandT::Finder::FileFinder do - end - - before do -- stub(::VIM).evaluate(/expand/) { 0 } -- stub(::VIM).command(/echon/) -- stub(::VIM).command('redraw') -+ allow(::VIM).to receive(:evaluate).with(/expand/) { 0 } -+ allow(::VIM).to receive(:command).with(/echon/) -+ allow(::VIM).to receive(:command).with('redraw') - end - - describe 'sorted_matches_for method' do -diff --git a/spec/command-t/scanner/buffer_scanner_spec.rb b/spec/command-t/scanner/buffer_scanner_spec.rb -index acc3b7e..a4ade60 100644 ---- a/spec/command-t/scanner/buffer_scanner_spec.rb -+++ b/spec/command-t/scanner/buffer_scanner_spec.rb -@@ -14,10 +14,10 @@ describe CommandT::Scanner::BufferScanner do - before do - @paths = %w(bar/abc bar/xyz baz bing foo/alpha/t1 foo/alpha/t2 foo/beta) - @scanner = CommandT::Scanner::BufferScanner.new -- stub(@scanner).relative_path_under_working_directory(is_a(String)) { |arg| arg } -- stub(::VIM::Buffer).count { 7 } -+ allow(@scanner).to receive(:relative_path_under_working_directory).with(kind_of(String)) { |arg| arg } -+ allow(::VIM::Buffer).to receive(:count) { 7 } - (0..6).each do |n| -- stub(::VIM::Buffer)[n].returns(buffer @paths[n]) -+ allow(::VIM::Buffer).to receive(:'[]').with(n).and_return(buffer @paths[n]) - end - end - -diff --git a/spec/command-t/scanner/file_scanner/ruby_file_scanner_spec.rb b/spec/command-t/scanner/file_scanner/ruby_file_scanner_spec.rb -index 10f0e22..3d60c2e 100644 ---- a/spec/command-t/scanner/file_scanner/ruby_file_scanner_spec.rb -+++ b/spec/command-t/scanner/file_scanner/ruby_file_scanner_spec.rb -@@ -11,10 +11,10 @@ describe CommandT::Scanner::FileScanner::RubyFileScanner do - ) - @scanner = CommandT::Scanner::FileScanner::RubyFileScanner.new(@dir) - -- stub(::VIM).evaluate(/exists/) { 1 } -- stub(::VIM).evaluate(/expand\(.+\)/) { '0' } -- stub(::VIM).command(/echon/) -- stub(::VIM).command('redraw') -+ allow(::VIM).to receive(:evaluate).with(/exists/) { 1 } -+ allow(::VIM).to receive(:evaluate).with(/expand\(.+\)/) { '0' } -+ allow(::VIM).to receive(:command).with(/echon/) -+ allow(::VIM).to receive(:command).with('redraw') - end - - describe 'paths method' do -diff --git a/spec/command-t/scanner/file_scanner/watchman_file_scanner_spec.rb b/spec/command-t/scanner/file_scanner/watchman_file_scanner_spec.rb -index f6ec70d..ffad09e 100644 ---- a/spec/command-t/scanner/file_scanner/watchman_file_scanner_spec.rb -+++ b/spec/command-t/scanner/file_scanner/watchman_file_scanner_spec.rb -@@ -8,14 +8,12 @@ describe CommandT::Scanner::FileScanner::WatchmanFileScanner do - it 'falls back to the FindFileScanner' do - # fake an error - scanner = described_class.new -- stub(scanner).get_raw_sockname do -+ allow(scanner).to receive(:get_raw_sockname) do - raise described_class::WatchmanError - end - - # expect call on superclass -- any_instance_of(CommandT::Scanner::FileScanner::FindFileScanner) do |klass| -- mock(klass).paths! -- end -+ expect_any_instance_of(CommandT::Scanner::FileScanner::FindFileScanner).to receive(:paths!) - - scanner.paths! - end -diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb -index 2775956..370d46c 100644 ---- a/spec/spec_helper.rb -+++ b/spec/spec_helper.rb -@@ -16,10 +16,6 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) - require 'command-t' - require 'command-t/ext' - --RSpec.configure do |config| -- config.mock_framework = :rr --end -- - # Fake top-level VIM implementation, for stubbing. - module VIM - class << self --- -2.30.0 - diff --git a/vim-command-t-5.0.3-fix-tests.patch b/vim-command-t-5.0.3-fix-tests.patch deleted file mode 100644 index 229ed12..0000000 --- a/vim-command-t-5.0.3-fix-tests.patch +++ /dev/null @@ -1,63 +0,0 @@ -From 52adb808e2db85035e9a5a214cb147280c2f10e0 Mon Sep 17 00:00:00 2001 -From: Greg Hurrell -Date: Thu, 4 Mar 2021 19:20:43 +0100 -Subject: [PATCH] test: fix tests - -These are all probably very sensitive to environment (Ruby version etc), -and I haven't run them for a while, so just doing a duct-tape and -chicken-wire kind of fix to get everything green on my system. - -Note that I "defanged" the BufferScanner tests which were failing and -were too complicated (too many mocks, so it is hard to be sure that they -verified anything at all) by effectively turning them into a -blinking-light demo that doesn't really do much. - -With these changes: - - Finished in 0.10298 seconds (files took 0.11239 seconds to load) - 121 examples, 0 failures, 1 pending ---- - spec/command-t/controller_spec.rb | 3 +++ - spec/command-t/scanner/buffer_scanner_spec.rb | 12 +----------- - 2 files changed, 4 insertions(+), 11 deletions(-) - -diff --git a/spec/command-t/controller_spec.rb b/spec/command-t/controller_spec.rb -index 6bbd6d78..70751c82 100644 ---- a/spec/command-t/controller_spec.rb -+++ b/spec/command-t/controller_spec.rb -@@ -95,6 +95,9 @@ def stub_vim(working_directory) - allow(::VIM).to receive(:evaluate).with('&buflisted').and_return('1') - allow(::VIM).to receive(:evaluate).with('&lines').and_return('80') - allow(::VIM).to receive(:evaluate).with('&term').and_return('vt100') -+ allow(::VIM).to receive(:evaluate).with("fnameescape('#{working_directory}-oops/path/to/selection')").and_return("#{working_directory}-oops/path/to/selection") -+ allow(::VIM).to receive(:evaluate).with("fnameescape('path/to/selection')").and_return('path/to/selection') -+ allow(::VIM).to receive(:evaluate).with("fnameescape('/working/outside/path/to/selection')").and_return('/working/outside/path/to/selection') - allow(::VIM).to receive(:evaluate).with('v:version').and_return(704) - allow(::VIM).to receive(:evaluate).with('!&buflisted && &buftype == "nofile"') - end -diff --git a/spec/command-t/scanner/buffer_scanner_spec.rb b/spec/command-t/scanner/buffer_scanner_spec.rb -index a4ade60c..d8a014a8 100644 ---- a/spec/command-t/scanner/buffer_scanner_spec.rb -+++ b/spec/command-t/scanner/buffer_scanner_spec.rb -@@ -5,20 +5,10 @@ - require 'ostruct' - - describe CommandT::Scanner::BufferScanner do -- def buffer(name) -- b = OpenStruct.new -- b.name = name -- b -- end -- - before do - @paths = %w(bar/abc bar/xyz baz bing foo/alpha/t1 foo/alpha/t2 foo/beta) - @scanner = CommandT::Scanner::BufferScanner.new -- allow(@scanner).to receive(:relative_path_under_working_directory).with(kind_of(String)) { |arg| arg } -- allow(::VIM::Buffer).to receive(:count) { 7 } -- (0..6).each do |n| -- allow(::VIM::Buffer).to receive(:'[]').with(n).and_return(buffer @paths[n]) -- end -+ allow(@scanner).to receive(:paths!).and_return(@paths) - end - - describe 'paths method' do diff --git a/vim-command-t-5.0.5-Use-SPDX-identifier-in-AppStream-metadata.patch b/vim-command-t-5.0.5-Use-SPDX-identifier-in-AppStream-metadata.patch new file mode 100644 index 0000000..fcbbf75 --- /dev/null +++ b/vim-command-t-5.0.5-Use-SPDX-identifier-in-AppStream-metadata.patch @@ -0,0 +1,22 @@ +From 654b440fdfd5eaf52fac6882035f3b53ab48a39f Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?V=C3=ADt=20Ondruch?= +Date: Mon, 14 Oct 2024 15:20:53 +0200 +Subject: [PATCH] Use SPDX identifier in AppStream metadata + +https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-metadata_license +--- + appstream/vim-command-t.metainfo.xml | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/appstream/vim-command-t.metainfo.xml b/appstream/vim-command-t.metainfo.xml +index 53807879..78d08bdd 100644 +--- a/appstream/vim-command-t.metainfo.xml ++++ b/appstream/vim-command-t.metainfo.xml +@@ -7,6 +7,6 @@ + Provides an extremely fast, intuitive mechanism for opening files with a minimal number of keystrokes + https://github.com/wincent/command-t + CC0-1.0 +-BSD ++BSD-2-Clause + v.ondruch@gmail.com + diff --git a/vim-command-t.spec b/vim-command-t.spec index af21424..7cb7940 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -1,24 +1,18 @@ %global commandt_so_dir %{ruby_vendorarchdir}/command-t -%global appdata_dir %{_datadir}/appdata - Name: vim-command-t -Version: 5.0.3 -Release: 13%{?dist} +Version: 5.0.5 +Release: 1%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM -# Automatically converted from old format: BSD - review is highly recommended. -License: LicenseRef-Callaway-BSD +License: BSD-2-Clause URL: https://github.com/wincent/command-t Source0: https://github.com/wincent/command-t/archive/%{version}/command-t-%{version}.tar.gz # Relax the Command-T version checking. # https://github.com/wincent/command-t/issues/192 Patch0: vim-3.0.2-Check-RUBY_LIB_VERSION-instead-of-RUBY_VERSION.patch -# Use rspec-mock for stubbing to fix the build failures with RR 1.2+. -# https://github.com/wincent/command-t/pull/375 -Patch1: vim-command-t-5.0.3-Use-rspec-mock-for-stubbing.patch -# Fix `CommandT::Scanner::BufferScanner` test. -# https://github.com/wincent/command-t/commit/52adb808e2db85035e9a5a214cb147280c2f10e0 -Patch2: vim-command-t-5.0.3-fix-tests.patch +# Use SPDX identifier in the AppStream data. +# https://github.com/wincent/command-t/pull/427 +Patch1: vim-command-t-5.0.5-Use-SPDX-identifier-in-AppStream-metadata.patch # https://github.com/wincent/command-t/commit/5147a93a4b6cdb60cfa0ed1b792de711f44cd7b4 # Ruby3.2 finally removes Fixnum Patch3: vim-command-t-5.0.3-ruby32-Fixnum-removal.patch @@ -38,6 +32,7 @@ BuildRequires: rubygem(rspec) >= 3 BuildRequires: gcc # Defines %%vimfiles_root BuildRequires: vim-filesystem +BuildRequires: %{_bindir}/appstream-util %description The Command-T plug-in for VIM provides an extremely fast, intuitive mechanism @@ -55,7 +50,6 @@ more weight. %patch 0 -p1 %patch 1 -p1 -%patch 2 -p1 %patch 3 -p1 %build @@ -80,8 +74,14 @@ mv %{buildroot}%{vimfiles_root}/ruby/command-t/ext/command-t/ext.so %{buildroot} find %{buildroot}%{vimfiles_root} -name '.*' -delete # Install AppData. -mkdir -p %{buildroot}%{appdata_dir} -install -m 644 appstream/vim-command-t.metainfo.xml %{buildroot}%{appdata_dir} +mkdir -p %{buildroot}%{_metainfodir} +install -m 644 appstream/vim-command-t.metainfo.xml %{buildroot}%{_metainfodir} + +# GVim ID in Fedora was changed by: +# https://src.fedoraproject.org/rpms/vim/pull-request/25 +# therefore extend also the new ID. +# TODO: Submit this upstream if it proves to work. +sed -i '/<\/extends>/a org.vim.Vim' %{buildroot}%{_metainfodir}/vim-command-t.metainfo.xml %check # Get rid of Bundler @@ -89,6 +89,8 @@ sed -i '/Bundler/,/^end$/ s/^/#/' spec/spec_helper.rb rspec -Iruby spec +appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.metainfo.xml + %files %license LICENSE %doc README.md @@ -96,18 +98,22 @@ rspec -Iruby spec %{vimfiles_root}/autoload/* %{vimfiles_root}/doc/* %{vimfiles_root}/plugin/* -%exclude %{vimfiles_root}/ruby/command-t/ext* -%exclude %{vimfiles_root}/ruby/command-t/*.o -%exclude %{vimfiles_root}/ruby/command-t/*.h -%exclude %{vimfiles_root}/ruby/command-t/*.c -%exclude %{vimfiles_root}/ruby/command-t/Makefile -%exclude %{vimfiles_root}/ruby/command-t/mkmf.log -%exclude %{vimfiles_root}/ruby/command-t/depend +%exclude %{vimfiles_root}/ruby/command-t/ext/command-t/ext* +%exclude %{vimfiles_root}/ruby/command-t/ext/command-t/*.o +%exclude %{vimfiles_root}/ruby/command-t/ext/command-t/*.h +%exclude %{vimfiles_root}/ruby/command-t/ext/command-t/*.c +%exclude %{vimfiles_root}/ruby/command-t/ext/command-t/Makefile +%exclude %{vimfiles_root}/ruby/command-t/ext/command-t/mkmf.log +%exclude %{vimfiles_root}/ruby/command-t/ext/command-t/depend %{vimfiles_root}/ruby -%{appdata_dir}/vim-command-t.metainfo.xml +%{_metainfodir}/vim-command-t.metainfo.xml %changelog +* Tue Oct 01 2024 Vít Ondruch - 5.0.5-1 +- Update to Command-T 5.0.5. + Resolves: rhbz#2091276 + * Wed Sep 04 2024 Miroslav Suchý - 5.0.3-13 - convert license to SPDX From a5894219cddfb6eae8e552182e1ed530b6ebaa7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Ondruch?= Date: Tue, 7 Jan 2025 20:06:33 +0100 Subject: [PATCH 14/20] Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_3.4 --- vim-command-t.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index 7cb7940..b6840a4 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -2,7 +2,7 @@ Name: vim-command-t Version: 5.0.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM License: BSD-2-Clause URL: https://github.com/wincent/command-t @@ -110,6 +110,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.metainfo.xml %changelog +* Tue Jan 07 2025 Vít Ondruch - 5.0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_3.4 + * Tue Oct 01 2024 Vít Ondruch - 5.0.5-1 - Update to Command-T 5.0.5. Resolves: rhbz#2091276 From 2aef5849e9a4705b36031346ff1e052b93e6bc33 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 14:21:02 +0000 Subject: [PATCH 15/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- vim-command-t.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index b6840a4..d45b1e1 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -2,7 +2,7 @@ Name: vim-command-t Version: 5.0.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM License: BSD-2-Clause URL: https://github.com/wincent/command-t @@ -110,6 +110,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.metainfo.xml %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 5.0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Tue Jan 07 2025 Vít Ondruch - 5.0.5-2 - Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_3.4 From ea2ad1a126fe3c3d260fd8fd3efebe0dfe3579dd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:05:29 +0000 Subject: [PATCH 16/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- vim-command-t.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index d45b1e1..4122b95 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -2,7 +2,7 @@ Name: vim-command-t Version: 5.0.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM License: BSD-2-Clause URL: https://github.com/wincent/command-t @@ -110,6 +110,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.metainfo.xml %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 5.0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sun Jan 19 2025 Fedora Release Engineering - 5.0.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 036e2dc251815dd4c9339677f0445da9da406aa5 Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Tue, 18 Nov 2025 09:26:45 +0900 Subject: [PATCH 17/20] Add BR: rubygem(ostruct) for ruby4_0 --- vim-command-t.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index 4122b95..42b8dbb 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -2,7 +2,7 @@ Name: vim-command-t Version: 5.0.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM License: BSD-2-Clause URL: https://github.com/wincent/command-t @@ -28,6 +28,7 @@ BuildRequires: make BuildRequires: ruby(release) BuildRequires: ruby-devel BuildRequires: rubygems +BuildRequires: rubygem(ostruct) BuildRequires: rubygem(rspec) >= 3 BuildRequires: gcc # Defines %%vimfiles_root @@ -110,6 +111,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.metainfo.xml %changelog +* Mon Nov 17 2025 Mamoru TASAKA - 5.0.5-5 +- Add BR: rubygem(ostruct) for ruby4_0 + * Fri Jul 25 2025 Fedora Release Engineering - 5.0.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 189247912441acf61af2fc3aa1dc61e4946000fc Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Thu, 8 Jan 2026 20:14:07 +0900 Subject: [PATCH 18/20] Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_4.0 --- vim-command-t.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index 42b8dbb..3d43f42 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -2,7 +2,7 @@ Name: vim-command-t Version: 5.0.5 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM License: BSD-2-Clause URL: https://github.com/wincent/command-t @@ -111,6 +111,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.metainfo.xml %changelog +* Thu Jan 08 2026 Mamoru TASAKA - 5.0.5-6 +- Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_4.0 + * Mon Nov 17 2025 Mamoru TASAKA - 5.0.5-5 - Add BR: rubygem(ostruct) for ruby4_0 From bc237dfe3eea9fe572766c1e47072b16e667b90a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 19:54:42 +0000 Subject: [PATCH 19/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- vim-command-t.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index 3d43f42..d208aa3 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -2,7 +2,7 @@ Name: vim-command-t Version: 5.0.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM License: BSD-2-Clause URL: https://github.com/wincent/command-t @@ -111,6 +111,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.metainfo.xml %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 5.0.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Thu Jan 08 2026 Mamoru TASAKA - 5.0.5-6 - Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_4.0 From 72705c75807ec4b9ef9e6e9404861b627a999bc0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 08:29:18 +0000 Subject: [PATCH 20/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- vim-command-t.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vim-command-t.spec b/vim-command-t.spec index d208aa3..591b30d 100644 --- a/vim-command-t.spec +++ b/vim-command-t.spec @@ -2,7 +2,7 @@ Name: vim-command-t Version: 5.0.5 -Release: 7%{?dist} +Release: 8%{?dist} Summary: An extremely fast, intuitive mechanism for opening files in VIM License: BSD-2-Clause URL: https://github.com/wincent/command-t @@ -111,6 +111,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.metainfo.xml %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 5.0.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Sat Jan 17 2026 Fedora Release Engineering - 5.0.5-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild