From a15345d23ec6bc9e4df4acd0080c4b4343c91daa Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Fri, 25 Oct 2024 19:12:01 +0300 Subject: [PATCH] import rubygem-rspec-core-3.13.0-2.el10 --- .gitignore | 2 + .rubygem-rspec-core.metadata | 2 + SOURCES/rspec-related-create-full-tarball.sh | 27 + ...0.1-Filter-content-of-usr-share-ruby.patch | 28 + SPECS/rubygem-rspec-core.spec | 557 ++++++++++++++++++ 5 files changed, 616 insertions(+) create mode 100644 .gitignore create mode 100644 .rubygem-rspec-core.metadata create mode 100644 SOURCES/rspec-related-create-full-tarball.sh create mode 100644 SOURCES/rubygem-rspec-core-3.10.1-Filter-content-of-usr-share-ruby.patch create mode 100644 SPECS/rubygem-rspec-core.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2cd0029 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +SOURCES/rspec-core-3.13.0.gem +SOURCES/rubygem-rspec-core-3.13.0-full.tar.gz diff --git a/.rubygem-rspec-core.metadata b/.rubygem-rspec-core.metadata new file mode 100644 index 0000000..08df537 --- /dev/null +++ b/.rubygem-rspec-core.metadata @@ -0,0 +1,2 @@ +e311033c48a1e47184d4ce3615450ba08ad7a1b3 SOURCES/rspec-core-3.13.0.gem +abee8c7fb6997e95e16957ffdbabbf97ec7f4933 SOURCES/rubygem-rspec-core-3.13.0-full.tar.gz diff --git a/SOURCES/rspec-related-create-full-tarball.sh b/SOURCES/rspec-related-create-full-tarball.sh new file mode 100644 index 0000000..a847c6c --- /dev/null +++ b/SOURCES/rspec-related-create-full-tarball.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +if [ $# -lt 2 ] +then + echo "$0 " + exit 1 +fi + +set -x +set -e + +CURRDIR=$(pwd) + +TMPDIRPATH=$(mktemp -d /var/tmp/rspec-tar-XXXXXX) +pushd $TMPDIRPATH + +git clone https://github.com/rspec/$1.git +pushd $1 +git reset --hard v$2 +popd + +ln -sf $1 $1-$2 +tar czf ${CURRDIR}/rubygem-$1-$2-full.tar.gz $1-$2/./ + +popd + +rm -rf $TMPDIRPATH diff --git a/SOURCES/rubygem-rspec-core-3.10.1-Filter-content-of-usr-share-ruby.patch b/SOURCES/rubygem-rspec-core-3.10.1-Filter-content-of-usr-share-ruby.patch new file mode 100644 index 0000000..fa7e8ac --- /dev/null +++ b/SOURCES/rubygem-rspec-core-3.10.1-Filter-content-of-usr-share-ruby.patch @@ -0,0 +1,28 @@ +From 7550f7b024323c15ed21d13e930f59a64455e5d1 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?V=C3=ADt=20Ondruch?= +Date: Thu, 18 Mar 2021 15:45:48 +0100 +Subject: [PATCH] Filter content of /usr/share/ruby + +Some Linux distributions, such as Fedora, are using this location to +store Ruby StdLib. Therefore, it would be nice to filter this location +similarly to /lib\d*/ruby/ +--- + lib/rspec/core/backtrace_formatter.rb | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/lib/rspec/core/backtrace_formatter.rb b/lib/rspec/core/backtrace_formatter.rb +index e0bee52a..27008e2c 100644 +--- a/lib/rspec/core/backtrace_formatter.rb ++++ b/lib/rspec/core/backtrace_formatter.rb +@@ -8,7 +8,7 @@ module RSpec + def initialize + @full_backtrace = false + +- patterns = %w[ /lib\d*/ruby/ bin/ exe/rspec /lib/bundler/ /exe/bundle: ] ++ patterns = %w[ /lib\d*/ruby/ /share/ruby/ bin/ exe/rspec /lib/bundler/ /exe/bundle: ] + patterns << "org/jruby/" if RUBY_PLATFORM == 'java' + patterns.map! { |s| Regexp.new(s.gsub("/", File::SEPARATOR)) } + +-- +2.30.0 + diff --git a/SPECS/rubygem-rspec-core.spec b/SPECS/rubygem-rspec-core.spec new file mode 100644 index 0000000..3b7b562 --- /dev/null +++ b/SPECS/rubygem-rspec-core.spec @@ -0,0 +1,557 @@ +%global majorver 3.13.0 +#%%global preminorver .rc6 +%global rpmminorver .%(echo %preminorver | sed -e 's|^\\.\\.*||') +%global fullver %{majorver}%{?preminorver} + +%global baserelease 2 + +%global gem_name rspec-core + +# %%check section needs rspec-core, however rspec-core depends on rspec-mocks +# runtime part of rspec-mocks does not depend on rspec-core +# Disable test for now due to cucumber v.s. gherkin dependency issue +# pulled by aruba +%bcond_with bootstrap + +# Disable Aruba support in RHEL due to excesive dependency chain. This also +# disables Cucumber integration test suite, which depends on Aruba as well. +%if ! 0%{?rhel} +%bcond_without aruba +%endif + +%undefine __brp_mangle_shebangs + +Summary: RSpec runner and formatters +Name: rubygem-%{gem_name} +Version: %{majorver} +Release: %{?preminorver:0.}%{baserelease}%{?preminorver:%{rpmminorver}}%{?dist} + +# SPDX confirmed +License: MIT +URL: http://github.com/rspec/rspec-core +Source0: http://rubygems.org/gems/%{gem_name}-%{fullver}.gem +# %%{SOURCE2} %%{name} %%{version} +Source1: rubygem-%{gem_name}-%{version}-full.tar.gz +Source2: rspec-related-create-full-tarball.sh +# Adjust backtrace filter for Fedora placement of StdLib. +# https://github.com/rspec/rspec-core/pull/2881 +Patch0: rubygem-rspec-core-3.10.1-Filter-content-of-usr-share-ruby.patch + +#BuildRequires: ruby(release) +BuildRequires: rubygems-devel +%if %{without bootstrap} +BuildRequires: rubygem(minitest) +BuildRequires: rubygem(rake) +BuildRequires: rubygem(rspec) +BuildRequires: rubygem(test-unit) +BuildRequires: rubygem(coderay) +BuildRequires: rubygem(thread_order) +BuildRequires: git + +%if %{with aruba} +BuildRequires: rubygem(aruba) +BuildRequires: rubygem(flexmock) +BuildRequires: rubygem(mocha) +BuildRequires: rubygem(rr) +BuildRequires: rubygem(cucumber) +%endif + +%if 0%{?fedora} || 0%{?rhel} > 7 +BuildRequires: glibc-langpack-en +%endif + +%endif +# Make the following dependency optionally installed +# lib/rspec/core/rake_task +%if 0%{?fedora} >= 36 +Recommends: rubygem(rake) +%else +Requires: rubygem(rake) +%endif +# Optional +#Requires: rubygem(ZenTest) +#Requires: rubygem(flexmock) +#Requires: rubygem(mocha) +#Requires: rubygem(rr) +BuildArch: noarch + +%description +Behaviour Driven Development for Ruby. RSpec runner and example groups. + +%package doc +Summary: Documentation for %{name} +Requires: %{name} = %{version}-%{release} + +%description doc +This package contains documentation for %{name}. + + +%prep +%setup -q -T -n %{gem_name}-%{version} -b 1 +%patch -P0 -p1 +gem specification %{SOURCE0} -l --ruby > %{gem_name}.gemspec + +%build +gem build %{gem_name}.gemspec +%gem_install + +%install +mkdir -p %{buildroot}%{_prefix} +cp -a .%{_prefix}/* %{buildroot}%{_prefix}/ + +# cleanups +rm -f %{buildroot}%{gem_instdir}/{.document,.yardopts} + +%check +%if %{with bootstrap} +# Not do actual check, exiting. +exit 0 +%endif + +LANG=C.UTF-8 + +%if %{without aruba} +# Avoid dependency on Aruba. The files needs to be present, since they are +# listed by `git ls-files` from 'library wide checks' shared example. +truncate -s 0 spec/support/aruba_support.rb +find spec/integration -exec truncate -s 0 {} \; +%endif + +# Adjust the backtrace filters to our directory layout. +sed -i '/backtrace_exclusion_patterns/ s/rspec-core/rspec-core-%{version}/' \ + spec/integration/{suite_hooks_errors,spec_file_load_errors}_spec.rb + +# ruby3.1: output format change, disabling for now +sed -i spec/integration/spec_file_load_errors_spec.rb \ + -e '\@nicely handles load-time errors in user spec files@s| it | xit |' + +# ruby3.2 + compile with YJIT + LTO seems to make rspec-core GC test fail. +# disabling this, per ruby upsteram advice: +# https://bugs.ruby-lang.org/issues/19254 +sed -i spec/rspec/core/example_spec.rb \ + -e '\@defined.*RUBY_ENGINE.*truffleruby@s|^\(.*\)$|\1 \&\& false|' + +# RSpec uses only one thread local variable: disable for now +sed -i spec/rspec/core_spec.rb \ + -e '\@only one thread local variable@s| it | xit |' + +# FIXME seed 33413 sees test failure +ruby -Ilib -S exe/rspec --seed 1 #33413 + +%if %{without aruba} +# The following lines are for cucumber tests, so exiting. +exit 0 +%endif + +# Mark failing test as broken +sed -i features/command_line/init.feature \ + -e 's|^\([ \t]*\)\(Scenario: Accept and use the recommended settings\)|\1@broken\n\1\2|' + +%if 0%{?fedora} >= 34 || 0%{?rhel} >= 9 +for f in \ + `# disabling tests failing with rr 1.2.1` \ + `# https://github.com/rspec/rspec-core/issues/2882` \ + features/mock_framework_integration/use_rr.feature \ + %{nil} +do + mv $f ${f}.drop +done +%endif + +# cucumber 7.0.0 does not support ~@ +sed -i cucumber.yml -e 's|~@wip|"not @wip"|' +sed -i features/support/require_expect_syntax_in_aruba_specs.rb -e 's|~@|not @|g' +# Perhaps with cucumber 7.0.0 change? (along with diff-lcs updated to 1.5) +sed -i features/support/diff_lcs_versions.rb -e 's|scenario.title|scenario.name|' + +# Setup just right amount of paths to make the tests suite run. +export RUBYOPT="-I$(pwd)/lib:$(ruby -e 'puts %w[rspec/support minitest test/unit].map {|r| Gem::Specification.find_by_path(r).full_require_paths}.join(?:)')" +export CUCUMBER_PUBLISH_QUIET=true +cucumber -v -f progress features/ || \ + cucumber -v -f progress features/ \ + --tag "not @broken" \ + `# Explicitly skip 'skip-when-diff-lcs-1.3' and '@ruby-2-7' test cases. While` \ + `# the conditions are correctly detected, the 'warning' called instead their` \ + `# execution is troublesome, possibly due to upstream using old Cucumber?` \ + --tag "not @skip-when-diff-lcs-1.3" \ +%if 0%{?fedora} >= 36 + `# Cucumber 7 upgrades diff-lcs to 1.5` \ + --tag "not @skip-when-diff-lcs-1.4" \ +%endif + --tag "not @ruby-2-7" \ + %{nil} + +%if 0%{?fedora} >= 34 || 0%{?rhel} >= 9 +for f in \ + features/mock_framework_integration/use_rr.feature \ + %{nil} +do + mv ${f}.drop ${f} +done +%endif + +%files +%dir %{gem_instdir} + +%license %{gem_instdir}/LICENSE.md +%doc %{gem_instdir}/Changelog.md +%doc %{gem_instdir}/README.md + +%{_bindir}/rspec +%{gem_instdir}/exe/ +%{gem_instdir}/lib/ + +%exclude %{gem_cache} +%{gem_spec} + +%files doc +%{gem_docdir} + +%changelog +* Mon Jun 24 2024 Troy Dawson - 3.13.0-2 +- Bump release for June 2024 mass rebuild + +* Fri Feb 09 2024 Mamoru TASAKA - 3.13.0-1 +- 3.13.0 + +* Fri Jan 26 2024 Fedora Release Engineering - 3.12.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sat Jul 22 2023 Mamoru TASAKA - 3.12.2-3 +- Fix one failing test related to thread local variable + +* Fri Jul 21 2023 Fedora Release Engineering - 3.12.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Wed Apr 19 2023 Mamoru TASAKA - 3.12.2-1 +- 3.12.2 + +* Fri Mar 03 2023 Yaakov Selkowitz - 3.12.1-2 +- Disable unwanted dependencies in RHEL builds + +* Fri Feb 10 2023 Mamoru TASAKA - 3.12.1-1 +- 3.12.1 + +* Thu Jan 19 2023 Mamoru TASAKA - 3.12.0-2 +- Disable GC related test, with the advice from ruby upstream + +* Thu Oct 27 2022 Mamoru TASAKA - 3.12.0-1 +- 3.12.0 + +* Thu Sep 29 2022 Mamoru TASAKA - 3.11.0-3 +- Backport upstream fix to eliminate Fixnum usage removed on Ruby 3.2 + +* Sat Jul 23 2022 Fedora Release Engineering - 3.11.0-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Mon Jun 6 2022 Mamoru TASAKA - 3.11.0-2 +- Specify seed for rspec to avoid random failure for now + +* Thu Feb 10 2022 Mamoru TASAKA - 3.11.0-1 +- 3.11.0 + +* Fri Jan 28 2022 Mamoru TASAKA - 3.10.2-2 +- Disable test failing on ruby31 for now + +* Fri Jan 28 2022 Mamoru TASAKA - 3.10.2-1 +- 3.10.2 + +* Fri Jan 28 2022 Vít Ondruch +- Use weak dependency for Rake. + +* Fri Jan 21 2022 Fedora Release Engineering - 3.10.1-6.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Jan 14 2022 Mamoru TASAKA - 3.10.1-6 +- Add some workaround for aruba 2 / cucumber 7 / diff-lcs 1.5 + +* Fri Jul 23 2021 Fedora Release Engineering - 3.10.1-5.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Thu Mar 18 2021 Vít Ondruch - 3.10.1-5 +- Make test suite green. + +* Sun Feb 28 2021 Mamoru TASAKA - 3.10.1-4 +- Add conditional for eln + +* Wed Feb 17 2021 Mamoru TASAKA - 3.10.1-3 +- rr 1.2.1: Disable failing cucumber suite for now + +* Tue Jan 26 2021 Mamoru TASAKA - 3.10.1-2 +- Ruby 3.0: Disable failing cucumber suite for now + +* Tue Dec 29 2020 Mamoru TASAKA - 3.10.1-1 +- 3.10.1 + +* Fri Dec 11 2020 Mamoru TASAKA - 3.10.0-1 +- Enable tests again + +* Fri Dec 11 2020 Mamoru TASAKA - 3.10.0-0.1 +- 3.10.0 +- Once disable test for bootstrap + +* Wed Oct 14 2020 Mamoru TASAKA - 3.9.3-1 +- 3.9.3 + +* Wed Jul 29 2020 Fedora Release Engineering - 3.9.2-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sun May 3 2020 Mamoru TASAKA - 3.9.2-2 +- Enable cucumber test + +* Sun May 3 2020 Mamoru TASAKA - 3.9.2-1 +- 3.9.2 + +* Thu Jan 30 2020 Fedora Release Engineering - 3.9.1-1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Mon Dec 30 2019 Mamoru TASAKA - 3.9.1-1 +- 3.9.1 + +* Tue Dec 10 2019 Mamoru TASAKA - 3.9.0-2 +- Enable tests again + +* Tue Dec 10 2019 Mamoru TASAKA - 3.9.0-0.1 +- 3.9.0 +- Once disable test for bootstrap + +* Fri Jul 26 2019 Fedora Release Engineering - 3.8.2-1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Wed Jul 10 2019 Mamoru TASAKA - 3.8.2-1 +- 3.8.2 + +* Fri Jun 21 2019 Mamoru TASAKA - 3.8.1-1 +- 3.8.1 + +* Sat Feb 02 2019 Fedora Release Engineering - 3.8.0-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Tue Jan 1 2019 Mamoru TASAKA - 3.8.0-2 +- A Happy New Year +- Suppress some test errors related to missing HOME env and real tty + +* Thu Dec 13 2018 Mamoru TASAKA - 3.8.0-1 +- Enable tests again + +* Wed Dec 12 2018 Mamoru TASAKA - 3.8.0-0.1 +- 3.8.0 +- Once disable test for bootstrap + +* Sun Nov 18 2018 Zbigniew Jędrzejewski-Szmek - 3.7.1-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 - 3.7.1-3.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Fri Feb 23 2018 Troy Dawson - 3.7.1-3 +- Update conditionals + +* Tue Feb 13 2018 Mamoru TASAKA - 3.7.1-2 +- ruby 2.5 drops -rubygems usage + +* Fri Feb 09 2018 Fedora Release Engineering - 3.7.1-1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Jan 3 2018 Mamoru TASAKA - 3.7.1-1 +- 3.7.1 + +* Mon Nov 13 2017 Mamoru TASAKA - 3.7.0-1 +- Enable tests again + +* Mon Nov 13 2017 Mamoru TASAKA - 3.7.0-0.1 +- 3.7.0 +- Once disable tests + +* Thu Jul 27 2017 Fedora Release Engineering - 3.6.0-1.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat May 6 2017 Mamoru TASAKA - 3.6.0-1 +- Enable tests again + +* Sat May 6 2017 Mamoru TASAKA - 3.6.0-0.1 +- 3.6.0 +- Once disable tests + +* Tue Feb 21 2017 Mamoru TASAKA - 3.5.0-3 +- Always use full tar.gz for installed files and + keep using gem file for gem spec (ref: bug 1425220) + +* Sat Feb 11 2017 Fedora Release Engineering - 3.5.4-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Tue Jan 31 2017 Vít Ondruch - 3.5.4-2 +- Fix Ruby 2.4 and Aruba 0.14.0 compatibility. + +* Mon Oct 10 2016 Mamoru TASAKA - 3.5.4-1 +- 3.5.4 + +* Sun Sep 4 2016 Mamoru TASAKA - 3.5.3-1 +- 3.5.3 + +* Mon Aug 1 2016 Mamoru TASAKA - 3.5.2-1 +- 3.5.2 + +* Sun Jul 24 2016 Mamoru TASAKA - 3.5.1-1 +- Enable tests again + +* Sat Jul 23 2016 Mamoru TASAKA - 3.5.1-0.1 +- 3.5.1 +- Once disable tests + +* Mon Mar 14 2016 Mamoru TASAKA - 3.4.4-1 +- 3.4.4 + +* Sun Feb 28 2016 Mamoru TASAKA - 3.4.3-1 +- 3.4.3 + +* Thu Feb 04 2016 Fedora Release Engineering - 3.4.2-1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Thu Jan 28 2016 Mamoru TASAKA - 3.4.2-1 +- 3.4.2 + +* Tue Dec 8 2015 Mamoru TASAKA - 3.4.1-2 +- Enable tests again + +* Tue Dec 8 2015 Mamoru TASAKA - 3.4.1-1 +- 3.4.1 +- Once disable tests + +* Wed Aug 12 2015 Mamoru TASAKA - 3.3.2-3 +- Enable thread_order dependent tests + +* Sun Aug 2 2015 Mamoru TASAKA - 3.3.2-2 +- Enable tests again + +* Sun Aug 2 2015 Mamoru TASAKA - 3.3.2-1 +- 3.3.2 +- Once disable tests + +* Thu Jun 18 2015 Fedora Release Engineering - 3.2.3-1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Wed Apr 8 2015 Mamoru TASAKA - 3.2.3-1 +- 3.2.3 + +* Thu Mar 12 2015 Mamoru TASAKA - 3.2.2-1 +- 3.2.2 + +* Wed Feb 25 2015 Mamoru TASAKA - 3.2.1-1 +- 3.2.1 + +* Mon Feb 9 2015 Mamoru TASAKA - 3.2.0-2 +- Enable tests again + +* Mon Feb 9 2015 Mamoru TASAKA - 3.2.0-1 +- 3.2.0 +- Once disable tests + +* Mon Nov 10 2014 Mamoru TASAKA - 3.1.7-2 +- Enable tests + +* Mon Nov 10 2014 Mamoru TASAKA - 3.1.7-1 +- 3.1.7 +- Once disable tests + +* Fri Aug 15 2014 Mamoru TASAKA - 3.0.4-1 +- 3.0.4 + +* Fri Aug 15 2014 Mamoru TASAKA - 3.0.3-1 +- 3.0.3 + +* Sun Jun 08 2014 Fedora Release Engineering - 2.14.8-1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Thu Mar 6 2014 Mamoru TASAKA - 2.14.8-1 +- 2.14.8 + +* Mon Nov 11 2013 Mamoru TASAKA - 2.14.7-1 +- 2.14.7 + +* Thu Oct 24 2013 Mamoru TASAKA - 2.14.6-1 +- 2.14.6 + +* Fri Aug 16 2013 Mamoru TASAKA - 2.14.5-2 +- Enable test suite again + +* Fri Aug 16 2013 Mamoru TASAKA - 2.14.5-1 +- 2.14.5 + +* Tue Aug 6 2013 Mamoru TASAKA +- Again enable test suite + +* Tue Aug 6 2013 Mamoru TASAKA - 2.13.1-3 +- Bootstrap for rubygem-gherkin <- rubygem-cucumber + +* Sun Aug 04 2013 Fedora Release Engineering - 2.13.1-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Thu Mar 28 2013 Mamoru TASAKA - 2.13.1-2 +- Enable test suite again + +* Thu Mar 28 2013 Mamoru TASAKA - 2.13.1-1 +- 2.13.1 + +* Tue Feb 19 2013 Vít Ondruch - 2.12.2-3 +- Rebuild for https://fedoraproject.org/wiki/Features/Ruby_2.0.0 + +* Thu Feb 14 2013 Fedora Release Engineering - 2.12.2-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Jan 2 2013 Mamoru TASAKA - 2.12.2-2 +- Use aruba, which is already in Fedora, drop no-longer-needed + patch + +* Wed Jan 2 2013 Mamoru TASAKA - 2.12.2-1 +- 2.12.2 + +* Thu Oct 11 2012 Mamoru Tasaka - 2.11.1-1 +- 2.11.1 +- Drop dependency for mocks and expectations + +* Sat Jul 21 2012 Fedora Release Engineering - 2.8.0-1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sun Jan 22 2012 Mamoru Tasaka - 2.8.0-1 +- 2.8.0 + +* Sat Jan 14 2012 Fedora Release Engineering - 2.6.4-1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Jun 7 2011 Mamoru Tasaka - 2.6.4-1 +- 2.6.4 + +* Wed May 25 2011 Mamoru Tasaka - 2.6.3-1 +- 2.6.3 + +* Tue May 24 2011 Mamoru Tasaka - 2.6.2-2 +- Workaround for invalid date format in gemspec file (bug 706914) + +* Mon May 23 2011 Mamoru Tasaka - 2.6.2-1 +- 2.6.2 + +* Mon May 16 2011 Mamoru Tasaka - 2.6.0-1 +- 2.6.0 + +* Tue May 10 2011 Mamoru Tasaka - 2.6.0-0.2.rc6 +- 2.6.0 rc6 + +* Tue May 3 2011 Mamoru Tasaka - 2.6.0-0.1.rc4 +- 2.6.0 rc4 + +* Sat Feb 26 2011 Mamoru Tasaka +- And enable check on rawhide + +* Sat Feb 26 2011 Mamoru Tasaka - 2.5.1-3 +- More cleanups + +* Tue Feb 22 2011 Mamoru Tasaka - 2.5.1-2 +- Some misc fixes + +* Thu Feb 17 2011 Mamoru Tasaka - 2.5.1-1 +- 2.5.1 + +* Fri Nov 05 2010 Mamoru Tasaka - 2.0.1-1 +- Initial package