commit
d85792d1c8
@ -0,0 +1 @@
|
||||
SOURCES/concurrent-ruby-1.1.9-specs.tar.gz
|
@ -0,0 +1 @@
|
||||
2ad05b762b6b61e3dd69ced9a9bbb929d7809b77 SOURCES/concurrent-ruby-1.1.9-specs.tar.gz
|
Binary file not shown.
@ -0,0 +1,159 @@
|
||||
# Generated from concurrent-ruby-1.0.0.gem by gem2rpm -*- rpm-spec -*-
|
||||
%global gem_name concurrent-ruby
|
||||
|
||||
Name: rubygem-%{gem_name}
|
||||
Version: 1.1.9
|
||||
Release: 3%{?dist}
|
||||
Summary: Modern concurrency tools for Ruby
|
||||
License: MIT
|
||||
URL: http://www.concurrent-ruby.com
|
||||
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
|
||||
# git clone https://github.com/ruby-concurrency/concurrent-ruby.git && cd concurrent-ruby
|
||||
# git archive -v -o concurrent-ruby-1.1.9-specs.tar.gz v1.1.9 spec/
|
||||
Source1: %{gem_name}-%{version}-specs.tar.gz
|
||||
BuildRequires: ruby(release)
|
||||
BuildRequires: rubygems-devel
|
||||
BuildRequires: ruby >= 1.9.3
|
||||
BuildRequires: rubygem(rspec)
|
||||
BuildRequires: rubygem(timecop)
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
Modern concurrency tools including agents, futures, promises, thread pools,
|
||||
actors, supervisors, and more.
|
||||
|
||||
Inspired by Erlang, Clojure, Go, JavaScript, actors, and classic concurrency
|
||||
patterns.
|
||||
|
||||
|
||||
%package doc
|
||||
Summary: Documentation for %{name}
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
BuildArch: noarch
|
||||
|
||||
%description doc
|
||||
Documentation for %{name}.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{gem_name}-%{version} -b 1
|
||||
|
||||
%build
|
||||
# Create the gem as gem install only works on a gem file
|
||||
gem build ../%{gem_name}-%{version}.gemspec
|
||||
|
||||
# %%gem_install compiles any C extensions and installs the gem into ./%%gem_dir
|
||||
# by default, so that we can move it into the buildroot in %%install
|
||||
%gem_install
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}%{gem_dir}
|
||||
cp -a .%{gem_dir}/* \
|
||||
%{buildroot}%{gem_dir}/
|
||||
|
||||
|
||||
%check
|
||||
pushd .%{gem_instdir}
|
||||
ln -s %{_builddir}/spec spec
|
||||
|
||||
# -edge is not part of this gem.
|
||||
sed -i '/require.*concurrent-edge/ s/^/#/' spec/spec_helper.rb
|
||||
|
||||
# We don't have the C extension. It would need to come from concurrent-ruby-ext
|
||||
# and that would lead to cicrular dependency.
|
||||
sed -i '/allow_c_extensions?/,/^ end/ s/^/#/' spec/concurrent/atomic/atomic_reference_spec.rb
|
||||
|
||||
# Exclude the -edge test cases.
|
||||
#
|
||||
# Also exclude `scheduled_task_spec` and `timer_task_spec`,
|
||||
# because these are pretty unstable:
|
||||
# https://github.com/ruby-concurrency/concurrent-ruby/issues/824
|
||||
#
|
||||
# Require path must be exported due to
|
||||
# spec/concurrent/executor/executor_service_shared.rb spawning new Ruby instance
|
||||
RUBYOPT=-Ilib/concurrent-ruby rspec -rspec_helper \
|
||||
-fd \
|
||||
--exclude-pattern 'spec/concurrent/{actor_spec.rb,channel_spec.rb,lazy_register_spec.rb,channel/**/*,edge/**/*,promises_spec.rb,throttle_spec.rb,cancellation_spec.rb,scheduled_task_spec.rb,timer_task_spec.rb,executor/wrapping_executor_spec.rb}' \
|
||||
spec
|
||||
|
||||
popd
|
||||
|
||||
%files
|
||||
%dir %{gem_instdir}
|
||||
%license %{gem_instdir}/LICENSE.txt
|
||||
# Containst just some Java sources. Very likely included by mistake.
|
||||
%exclude %{gem_instdir}/ext
|
||||
%{gem_libdir}
|
||||
%exclude %{gem_cache}
|
||||
%{gem_spec}
|
||||
|
||||
%files doc
|
||||
%doc %{gem_docdir}
|
||||
%doc %{gem_instdir}/CHANGELOG.md
|
||||
%{gem_instdir}/Gemfile
|
||||
%doc %{gem_instdir}/README.md
|
||||
%{gem_instdir}/Rakefile
|
||||
|
||||
%changelog
|
||||
* Thu Sep 21 2023 Arkady L. Shane <tigro@msvsphere-os.ru> - 1.1.9-3
|
||||
- Rebuilt for MSVSphere 9.2
|
||||
|
||||
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.9-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.9-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Mon Feb 28 2022 Vít Ondruch <vondruch@redhat.com> - 1.1.9-1
|
||||
- Update to Concurrent Ruby 1.1.9.
|
||||
Resolves: rhbz#1801443
|
||||
|
||||
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Mon Sep 16 2019 Vít Ondruch <vondruch@redhat.com> - 1.1.5-1
|
||||
- Update to Concurrent Ruby 1.1.5.
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Tue May 09 2017 Vít Ondruch <vondruch@redhat.com> - 1.0.5-1
|
||||
- Update to Concurrent Ruby 1.0.5.
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Tue Jan 03 2017 Vít Ondruch <vondruch@redhat.com> - 1.0.4-1
|
||||
- Update to Concurrent Ruby 1.0.4.
|
||||
|
||||
* Mon Jul 04 2016 Vít Ondruch <vondruch@redhat.com> - 1.0.2-1
|
||||
- Update to Concurrent Ruby 1.0.2.
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Wed Dec 23 2015 Vít Ondruch <vondruch@redhat.com> - 1.0.0-1
|
||||
- Initial package
|
Loading…
Reference in new issue