rubygem-rspec-mocks/rubygem-rspec-mocks.spec

405 lines
12 KiB
RPMSpec
Raw Normal View History

2023-04-01 07:34:03 +00:00
%global majorver 3.12.5
2011-05-15 16:43:43 +00:00
#%%global preminorver .rc6
2011-05-03 05:02:28 +00:00
%global rpmminorver .%(echo %preminorver | sed -e 's|^\\.\\.*||')
%global fullver %{majorver}%{?preminorver}
2023-03-14 07:06:16 +00:00
%global baserelease 1
2011-05-03 05:02:28 +00:00
2013-01-02 05:56:21 +00:00
%global gem_name rspec-mocks
2011-02-25 18:03:25 +00:00
2022-10-27 07:03:34 +00:00
%bcond_with bootstrap
2011-02-25 18:03:25 +00:00
2018-02-13 05:19:21 +00:00
%undefine __brp_mangle_shebangs
2017-01-17 12:22:16 +00:00
Summary: RSpec's 'test double' framework (mocks and stubs)
2013-01-02 05:56:21 +00:00
Name: rubygem-%{gem_name}
2011-05-03 05:02:28 +00:00
Version: %{majorver}
Release: %{?preminorver:0.}%{baserelease}%{?preminorver:%{rpmminorver}}%{?dist}
2011-02-25 18:03:25 +00:00
2023-03-14 07:06:16 +00:00
# SPDX confirmed
2011-02-25 18:03:25 +00:00
License: MIT
URL: http://github.com/rspec/rspec-mocks
2014-11-10 07:37:38 +00:00
Source0: https://rubygems.org/gems/%{gem_name}-%{fullver}.gem
2018-11-18 21:42:44 +00:00
# %%{SOURCE2} %%{name} %%{version}
2014-11-10 07:37:38 +00:00
Source1: rubygem-%{gem_name}-%{version}-full.tar.gz
Source2: rspec-related-create-full-tarball.sh
# https://github.com/rspec/rspec-mocks/commit/e931e818b577172b89fb4583fc336fbcd25df36b
# The above is in 3.12.x branch, not in 3.11.x branch
Patch1: rubygem-rspec-mocks-3.12.0-display_keyword_hashes.patch
# ... and related to the above, and commit 66250dc1819f9435e5f584064067e7f05a9afe72
Patch2: rubygem-rspec-mocks-3.12.0-display_keyword_hashes-additional.patch
# https://github.com/rspec/rspec-mocks/pull/1502
2011-02-25 18:03:25 +00:00
2012-01-21 21:38:18 +00:00
BuildRequires: rubygems-devel
2022-02-10 03:32:53 +00:00
%if %{without bootstrap}
2022-01-20 07:25:38 +00:00
# rspec
2012-10-11 09:12:31 +00:00
BuildRequires: rubygem(rspec)
2015-08-12 06:59:01 +00:00
BuildRequires: rubygem(thread_order)
2022-01-30 03:01:05 +00:00
BuildRequires: rubygem(rake)
%if %{undefined rhel}
2022-01-20 07:25:38 +00:00
# cucumber
BuildRequires: rubygem(aruba)
BuildRequires: rubygem(cucumber)
BuildRequires: rubygem(minitest)
%endif
2015-08-02 12:16:29 +00:00
BuildRequires: git
2011-02-25 18:03:25 +00:00
%endif
BuildArch: noarch
%description
rspec-mocks provides a test-double framework for rspec including support
for method stubs, fakes, and message expectations.
%package doc
Summary: Documentation for %{name}
Requires: %{name} = %{version}-%{release}
%description doc
This package contains documentation for %{name}.
%prep
2013-01-02 05:56:21 +00:00
gem unpack %{SOURCE0}
2017-05-06 13:15:41 +00:00
%setup -q -D -T -n %{gem_name}-%{version} -b 1
%if 0%{?fedora} && 0%{?fedora} <= 37
# Revert "display_keyword_hashes" for now on Fedora 37
%patch1 -p1 -R
%patch2 -p1 -R
%endif
2014-11-10 07:37:38 +00:00
2022-01-20 07:25:38 +00:00
# Cucumber 7 syntax change
2022-01-30 03:17:03 +00:00
sed -i cucumber.yml -e "s|~@wip|not @wip|"
2022-01-20 07:25:38 +00:00
sed -i features/support/disallow_certain_apis.rb -e "s|~@allow-old-syntax|not @allow-old-syntax|"
2014-11-10 07:37:38 +00:00
gem specification %{SOURCE0} -l --ruby > %{gem_name}.gemspec
2013-01-02 05:56:21 +00:00
%build
2014-11-10 07:37:38 +00:00
gem build %{gem_name}.gemspec
%gem_install
2011-02-25 18:03:25 +00:00
%install
2013-01-02 05:56:21 +00:00
mkdir -p %{buildroot}%{gem_dir}
2014-11-10 07:37:38 +00:00
cp -a .%{gem_dir}/* \
%{buildroot}%{gem_dir}/
2011-02-25 18:03:25 +00:00
# cleanups
2014-11-10 07:37:38 +00:00
rm -f %{buildroot}%{gem_instdir}/{.document,.yardopts}
2011-02-25 18:03:25 +00:00
%check
%if %{with bootstrap}
# Don't do actual check
exit 0
%endif
%if %{defined rhel}
# avoid aruba dep on RHEL, but tests fail if files are removed entirely
echo -n > spec/integration/rails_support_spec.rb
echo -n > spec/support/aruba.rb
%else
2023-03-14 07:06:16 +00:00
# Don't call bundler
sed -i spec/integration/rails_support_spec.rb \
-e 's|bundle exec rspec|rspec|'
%endif
2023-03-14 07:06:16 +00:00
2015-08-02 07:17:53 +00:00
# library_wide_checks.rb needs UTF-8
2018-11-18 21:42:44 +00:00
LANG=C.UTF-8
2022-02-10 03:32:53 +00:00
export RUBYLIB=$(pwd)/lib
rspec spec/
%if 0%{?rhel}
# Don't do cucumber test
exit 0
%endif
2022-01-20 07:25:38 +00:00
export CUCUMBER_PUBLISH_QUIET=true
cucumber
2011-02-25 18:03:25 +00:00
%files
2013-01-02 05:56:21 +00:00
%dir %{gem_instdir}
2011-02-25 18:03:25 +00:00
2015-12-08 07:21:51 +00:00
%license %{gem_instdir}/LICENSE.md
%doc %{gem_instdir}/Changelog.md
%doc %{gem_instdir}/README.md
2013-01-02 05:56:21 +00:00
%{gem_instdir}/lib/
2011-02-25 18:03:25 +00:00
2013-01-02 05:56:21 +00:00
%exclude %{gem_cache}
%{gem_spec}
2011-02-25 18:03:25 +00:00
%files doc
2013-01-02 05:56:21 +00:00
%{gem_docdir}
2011-02-25 18:03:25 +00:00
2020-12-11 06:23:03 +00:00
%changelog
2023-04-01 07:34:03 +00:00
* Sat Apr 1 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.12.5-1
- 3.12.5
2023-03-14 07:06:16 +00:00
* Tue Mar 14 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.12.4-1
- 3.12.4
* Thu Mar 09 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 3.12.3-2
- Disable unwanted dependencies in RHEL builds
2023-02-16 09:09:39 +00:00
* Thu Feb 16 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.12.3-1
- 3.12.3
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.0-3.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
* Fri Dec 2 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.12.0-3
- Backport upstream reviewing patch for ruby32 ruby2_keywords treatment change
* Thu Nov 3 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.12.0-2
- On Fedora 37, remove "Display keyword hashes" feature for now
(On Fedora 38, this is effective)
2022-10-27 06:40:18 +00:00
* Thu Oct 27 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.12.0-1
- 3.12.0
2022-10-26 08:06:42 +00:00
* Wed Oct 26 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.11.2-1
- 3.11.2
* Mon Oct 3 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.11.1-2
- Backport upstream patch for ruby32 wrt method reference changes
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.11.1-1.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
2022-04-07 06:26:46 +00:00
* Thu Apr 7 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.11.1-1
2022-04-07 06:25:05 +00:00
- 3.11.1
2022-02-10 03:32:53 +00:00
* Thu Feb 10 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.11.0-1
- 3.11.0
2022-01-30 03:17:03 +00:00
* Sun Jan 30 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.10.3-1
- 3.10.3
2022-01-30 03:01:05 +00:00
* Sun Jan 30 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.10.2-3
- BR: rubygem(rake) for check
2022-01-20 07:25:38 +00:00
* Thu Jan 20 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.10.2-2
- Execute cucumber test
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.10.2-1.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
2021-02-01 06:47:51 +00:00
* Mon Feb 1 2021 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.10.2-1
- 3.10.2
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.10.1-1.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
2020-12-29 05:57:00 +00:00
* Tue Dec 29 2020 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.10.1-1
- 3.10.1
2020-12-11 05:43:51 +00:00
* Fri Dec 11 2020 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.10.0-1
- Enable tests again
* Fri Dec 11 2020 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.10.0-0.1
- 3.10.0
- Once disable test for bootstrap
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.9.1-1.2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.9.1-1.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
2020-01-02 13:11:02 +00:00
* Thu Jan 2 2020 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.9.1-1
- 3.9.1
* Tue Dec 10 2019 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.9.0-2
2019-12-10 06:52:57 +00:00
- Enable tests again
2020-01-02 13:11:02 +00:00
* Tue Dec 10 2019 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.9.0-0.1
2019-12-10 05:59:34 +00:00
- 3.9.0
- Once disable test for bootstrap
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.8.1-1.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2019-06-21 07:07:53 +00:00
* Fri Jun 21 2019 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.8.1-1
- 3.8.1
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.8.0-1.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
2018-12-13 05:52:40 +00:00
* Thu Dec 13 2018 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.8.0-1
- Enable tests again
2018-12-13 05:07:50 +00:00
* Wed Dec 12 2018 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.8.0-0.1
- 3.8.0
- Once disable test for bootstrap
2018-11-18 21:42:44 +00:00
* Sun Nov 18 2018 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.7.0-3.2
- Use C.UTF-8 locale
See https://fedoraproject.org/wiki/Changes/Remove_glibc-langpacks-all_from_buildroot
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.7.0-3.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Wed Feb 14 2018 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.7.1-3
- Backport patch to fix test failure with ruby 2.5
2018-02-13 05:19:21 +00:00
* Tue Feb 13 2018 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.7.1-2
- ruby 2.5 drops -rubygems usage
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.7.0-1.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2017-11-13 06:59:18 +00:00
* Mon Nov 13 2017 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.7.0-1
- Enable tests again
2017-11-13 06:49:08 +00:00
* Mon Nov 13 2017 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.7.0-0.1
- 3.7.0
- Once disable tests
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.0-1.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2017-05-06 14:40:35 +00:00
* Sat May 6 2017 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.6.0-1
- Enable tests again
2017-05-06 13:15:41 +00:00
* Sat May 6 2017 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.6.0-0.1
- 3.6.0
- Once disable tests
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.0-2.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2017-01-17 12:22:16 +00:00
* Tue Jan 17 2017 Vít Ondruch <vondruch@redhat.com> - 3.5.0-2
- Fix Ruby 2.4 compatibility.
2016-07-23 16:13:42 +00:00
* Sun Jul 24 2016 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.5.0-1
- Enable tests again
2016-07-23 15:47:22 +00:00
* Sat Jul 23 2016 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.5.0-0.1
- 3.5.0
- Once disable tests
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-1.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2016-01-14 05:05:41 +00:00
* Thu Jan 14 2016 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.4.1-1
- 3.4.1
2015-12-08 08:24:21 +00:00
* Tue Dec 8 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.4.0-2
- Enable tests again
2015-12-08 07:21:51 +00:00
* Tue Dec 8 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.4.0-1
- 3.4.0
- Once disable tests
2015-08-12 06:59:01 +00:00
* Wed Aug 12 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.3.2-3
- Enable thread_order dependent tests
2015-08-02 11:41:58 +00:00
* Sun Aug 2 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.3.2-2
- Enable tests again
2015-08-02 07:17:53 +00:00
* Sun Aug 2 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.3.2-1
- 3.3.2
- Once disable tests
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-1.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2015-02-25 06:39:17 +00:00
* Wed Feb 25 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.2.1-1
- 3.2.1
2015-02-09 02:21:24 +00:00
* Mon Feb 9 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.2.0-2
- Enable tests again
2015-02-09 00:46:03 +00:00
* Mon Feb 9 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.2.0-1
- 3.2.0
- Once disable tests
2014-11-10 08:43:45 +00:00
* Mon Nov 10 2014 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.1.3-2
- Enable tests
2014-11-10 07:37:38 +00:00
* Mon Nov 10 2014 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.1.3-1
- 3.1.3
- Once disable tests
* Fri Aug 15 2014 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.0.4-1
- 3.0.4
* Thu Aug 14 2014 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.0.3-1
- 3.0.3
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.14.6-1.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2014-02-27 07:00:22 +00:00
* Thu Feb 27 2014 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.14.6-1
- 2.14.6
2014-02-04 04:04:25 +00:00
* Tue Feb 4 2014 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.14.5-1
- 2.14.5
2013-10-24 08:34:23 +00:00
* Thu Oct 24 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.14.4-1
- 2.14.4
* Fri Aug 16 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.14.3-2
2013-08-15 16:03:39 +00:00
- Enable test suite again
2013-10-24 08:34:23 +00:00
* Fri Aug 16 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.14.3-1
2013-08-15 15:44:11 +00:00
- 2.14.3
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.13.1-1.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2013-04-12 07:36:46 +00:00
* Fri Apr 12 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.13.1-1
- 2.13.1
2013-03-28 08:18:10 +00:00
* Thu Mar 28 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.13.0-2
- Enable test suite again
2013-03-28 07:31:01 +00:00
* Thu Mar 28 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.13.0-1
- 2.13.0
* Wed Feb 20 2013 Vít Ondruch <vondruch@redhat.com> - 2.12.2-2
- Rebuild for https://fedoraproject.org/wiki/Features/Ruby_2.0.0
2013-02-04 03:28:09 +00:00
* Mon Feb 4 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.12.2-1
- 2.12.2
2013-01-02 06:26:50 +00:00
* Wed Jan 2 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.12.1-2
- Enable test suite again
2013-01-02 05:56:21 +00:00
* Wed Jan 2 2013 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.12.1-1
- 2.12.1
2012-10-11 09:12:31 +00:00
* Thu Oct 11 2012 Mamoru Tasaka <mtasaka@fedoraproject.org> - 2.11.3-1
- 2.11.3
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-1.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2014-11-10 07:37:38 +00:00
* Sun Jan 22 2012 Mamoru Tasaka <mtasaka@fedoraproject.org> - 2.8.0-1
2012-01-21 21:18:52 +00:00
- 2.8.0
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.0-1.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2011-05-15 16:43:43 +00:00
* Mon May 16 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 2.6.0-1
- 2.6.0
2011-05-10 21:47:09 +00:00
* Tue May 10 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 2.6.0-0.3.rc6
- 2.6.0 rc6
2011-05-03 07:45:41 +00:00
* Tue May 3 2011 Mamoru Tasaka <mtasaka@fedoraproject.org>
- And enable check on rawhide
2011-05-03 05:02:28 +00:00
* Tue May 3 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 2.6.0-0.1.rc4
- 2.6.0 rc4
2011-02-25 18:33:07 +00:00
* Sat Feb 26 2011 Mamoru Tasaka <mtasaka@fedoraproject.org>
- And enable check on rawhide
2011-02-25 18:03:25 +00:00
* Sat Feb 26 2011 Mamoru Tasaka <mtasaka@fedoraproject.org> - 2.5.0-2
- Cleanups
* Thu Feb 17 2011 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 2.5.0-1
- 2.5.0
* Fri Nov 05 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 2.0.1-1
- Initial package