From be7e24816e66bdc20840cb3ceccde3593b9acb87 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: May 26 2020 12:15:51 +0000 Subject: import rh-ruby27-rubygem-mongo-2.11.3-1.el7 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d75f78c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/mongo-2.11.3.gem diff --git a/.rh-ruby27-rubygem-mongo.metadata b/.rh-ruby27-rubygem-mongo.metadata new file mode 100644 index 0000000..40bf980 --- /dev/null +++ b/.rh-ruby27-rubygem-mongo.metadata @@ -0,0 +1 @@ +11cffd230e2c52d9bd8ab006a80ae23ba757890f SOURCES/mongo-2.11.3.gem diff --git a/SPECS/rubygem-mongo.spec b/SPECS/rubygem-mongo.spec new file mode 100644 index 0000000..ef57efa --- /dev/null +++ b/SPECS/rubygem-mongo.spec @@ -0,0 +1,260 @@ +%{?scl:%scl_package rubygem-%{gem_name}} +%{!?scl:%global pkg_name %{name}} + +%global gem_name mongo + +# Enable test. This includes RSpec into sources. +%bcond_with tests + +%if %{with tests} +# Fallback to rh-mongodb36. rh-mongodb36-scldevel is probably not available in +# the buildroot. +%{?scl:%{!?scl_mongodb:%global scl_mongodb rh-mongodb36}} +%{?scl:%{!?scl_prefix_mongodb:%global scl_prefix_mongodb %{scl_mongodb}-}} +%endif + +Name: %{?scl_prefix}rubygem-%{gem_name} +Version: 2.11.3 +Release: 1%{?dist} +Summary: Ruby driver for MongoDB +Group: Development/Languages +License: ASL 2.0 +URL: https://docs.mongodb.com/ruby-driver/ +Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem +# Sources of RSpec for interanl tests. Don't import these. +%if %{with tests} +Source200: https://rubygems.org/gems/diff-lcs-1.3.gem +Source201: https://rubygems.org/gems/rspec-3.7.0.gem +Source202: https://rubygems.org/gems/rspec-core-3.7.0.gem +Source203: https://rubygems.org/gems/rspec-expectations-3.7.0.gem +Source204: https://rubygems.org/gems/rspec-mocks-3.7.0.gem +Source205: https://rubygems.org/gems/rspec-support-3.7.0.gem +%endif +Requires: %{?scl_prefix}ruby(release) +Requires: %{?scl_prefix}ruby(rubygems) +Requires: %{?scl_prefix}rubygem(bson) >= 4.6.0 +BuildRequires: %{?scl_prefix}ruby(release) +BuildRequires: %{?scl_prefix}ruby(rubygems) +BuildRequires: %{?scl_prefix}ruby +BuildRequires: %{?scl_prefix}rubygems-devel +%if %{with tests} +# For running the tests +BuildRequires: %{?scl_prefix_mongodb}mongodb-server +BuildRequires: %{?scl_prefix}rubygem(bson) >= 4.6.0 +%endif +BuildArch: noarch +Provides: %{?scl_prefix}rubygem(%{gem_name}) = %{version} + +%description +A Ruby driver for MongoDB. + +%package doc +Summary: Documentation for %{pkg_name} +Group: Documentation +Requires:%{?scl_prefix}%{pkg_name} = %{version}-%{release} +BuildArch: noarch + +%description doc +Documentation for %{pkg_name}. + +%prep +%{?scl:scl enable %{scl} - << \EOF} +set -ex +gem unpack %{SOURCE0} + +%setup -q -D -T -n %{gem_name}-%{version} + +gem spec %{SOURCE0} -l --ruby > ../%{gem_name}-%{version}.gemspec +%{?scl:EOF} + +%build +%{?scl:scl enable %{scl} - << \EOF} +set -ex +# Create the gem as gem install only works on a gem file +gem build ../%{gem_name}-%{version}.gemspec + +%gem_install +%{?scl:EOF} + +%install +mkdir -p %{buildroot}%{gem_dir} +cp -a .%{gem_dir}/* \ + %{buildroot}%{gem_dir}/ + + +mkdir -p %{buildroot}%{_bindir} +cp -a .%{_bindir}/* \ + %{buildroot}%{_bindir}/ + +find %{buildroot}%{gem_instdir}/bin -type f | xargs chmod a+x + +# Drop the shebang, file is not executable anyway. +sed -i '/#!\// d' %{buildroot}%{gem_instdir}/Rakefile + +%if %{with tests} +%check +%{?scl:scl enable %{scl} %{scl_mongodb} - << \EOF} +set -ex +pushd .%{gem_instdir} + +pushd %{_sourcedir} +gem install rspec*.gem --local --no-document +popd +# Export path with locally installed rspec executable. +export PATH="~/bin:${PATH}" + +# Create data directory and start testing mongo instance. +# See https://github.com/mongodb/mongo-ruby-driver/blob/master/.travis.yml +mkdir data +mongod \ + --dbpath data \ + --logpath data/log \ + --fork \ + --auth + +# timeout-interrupt is not available in Fedora yet. +sed -i "/^if SpecConfig\.instance\.mri?$/i\\ +require 'timeout'\\ +TimeoutInterrupt = Timeout\\ +" spec/spec_helper.rb +sed -i "/^if SpecConfig\.instance\.mri?$/,/^end$/ s/^/#/" spec/spec_helper.rb + +# rspec-retry is not available in Fedora yet. +sed -i "/require 'rspec\/retry'/ s/^/#/" spec/spec_helper.rb + +# I can't figure why this fails. It might be upstream issue, because it seems +# it was not tested against MonogoDB 4.x. +sed -i "/collection.client.use(:admin).command(FAIL_POINT_BASE_COMMAND.merge(/i\ pending" \ + spec/integration/bulk_insert_spec.rb + +CI=1 EXTERNAL_DISABLED=1 rspec spec + +# Shutdown mongo and cleanup the data. +mongod --shutdown --dbpath data +rm -rf data +popd +%{?scl:EOF} +%endif + +%files +%dir %{gem_instdir} +%{_bindir}/mongo_console +%license %{gem_instdir}/LICENSE +%{gem_instdir}/bin +%{gem_libdir} +%exclude %{gem_cache} +%{gem_spec} + +%files doc +%doc %{gem_docdir} +%doc %{gem_instdir}/CONTRIBUTING.md +%doc %{gem_instdir}/README.md +%{gem_instdir}/Rakefile +%{gem_instdir}/mongo.gemspec +%{gem_instdir}/spec + +%changelog +* Thu Mar 12 2020 Jun Aruga - 2.11.3-1 +- Update to mongo 2.11.3. + +* Fri Dec 20 2019 Jun Aruga - 2.11.2-1 +- Update to mongo 2.11.2. + +* Thu Jan 10 2019 Vít Ondruch - 2.6.2-1 +- Update to mongo 2.6.2. + +* Mon Feb 26 2018 Jun Aruga - 2.5.1-1 +- Update to mongo 2.5.1. + +* Fri Feb 16 2018 Jun Aruga - 2.5.0-1 +- Update to mongo 2.5.0. +- Escape macros in %%changelog + +* Thu Feb 15 2018 Jun Aruga - 2.4.3-2 +- Update mongodb SCL used in tests to rh-mongodb36. + +* Mon Dec 18 2017 Jun Aruga - 2.4.3-1 +- Update to mongo 2.4.3. + +* Thu Jan 19 2017 Jun Aruga - 2.4.1-1 +- Update to mongo 2.4.1. + +* Mon Apr 18 2016 Pavel Valena - 2.2.3-5 +- Use rspec tests + +* Tue Apr 12 2016 Pavel Valena - 2.2.3-4 +- Fix Fix missing wrapper for mongo_console executable + - Resolves: rhbz#1315283 + +* Wed Apr 06 2016 Pavel Valena - 2.2.3-3 +- Add rubygem-shoulda to BuildReqires (for tests) + +* Wed Apr 06 2016 Pavel Valena - 2.2.3-2 +- Enable tests + +* Mon Feb 29 2016 Pavel Valena - 2.2.3-1 +- Update to 2.2.3 + +* Tue Feb 16 2016 Troy Dawson - 1.10.2-5 +- Disable tests until mongodb becomes stable in rawhide again. + +* Thu Feb 04 2016 Fedora Release Engineering - 1.10.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Mon Jul 27 2015 Troy Dawson - 1.10.2-2 +- Fix tests + +* Thu Jun 18 2015 Fedora Release Engineering - 1.10.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Thu Jun 26 2014 Vít Ondruch - 1.10.2-1 +- Update to mongo 1.10.2. + +* Sun Jun 08 2014 Fedora Release Engineering - 1.9.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Tue Nov 19 2013 Vít Ondruch - 1.9.2-1 +- Update to mongo 1.9.2. +- Enabled test suite. + +* Sun Aug 04 2013 Fedora Release Engineering - 1.6.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Wed Mar 13 2013 Troy Dawson - 1.6.4-4 +- Fix to make it build/install on F19+ + +* Thu Feb 14 2013 Fedora Release Engineering - 1.6.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Fri Aug 10 2012 Troy Dawson - 1.6.4-2 +- Fixed doc +- removed more BuildRequires that are not required + +* Thu Aug 09 2012 Troy Dawson - 1.6.4-1 +- Updated to latest version +- Removed BuildRequires that are not needed + +* Thu Aug 09 2012 Troy Dawson - 1.4.0-7 +- Fixed checks. + Only run checks that do not require a running mongodb server + +* Tue Aug 07 2012 Troy Dawson - 1.4.0-6 +- Changed .gemspec and Rakefile to not be doc +- Added checks + +* Thu Aug 02 2012 Troy Dawson - 1.4.0-5 +- Fixed rubygem(bson) requires + +* Mon Jul 23 2012 Troy Dawson - 1.4.0-4 +- Updated to meet new fedora rubygem guidelines + +* Thu Nov 17 2011 Troy Dawson - 1.4.0-3 +- Changed group to Development/Languages +- Changed the global variables +- Seperated the doc and test into the doc rpm + +* Thu Nov 17 2011 Troy Dawson - 1.4.0-2 +- Added %%{?dist} to version + +* Tue Nov 15 2011 - 1.4.0-1 +- Initial package