Fix Bundler --local option

Resolves: rhbz#2311898
This commit is contained in:
Vít Ondruch 2024-09-13 16:26:26 +02:00
commit 8daf7ccb72
2 changed files with 382 additions and 1 deletions

View file

@ -171,7 +171,7 @@
Summary: An interpreter of object-oriented scripting language
Name: ruby
Version: %{ruby_version}%{?development_release}
Release: 14%{?dist}
Release: 15%{?dist}
# Licenses, which are likely not included in binary RPMs:
# Apache-2.0:
# benchmark/gc/redblack.rb
@ -289,6 +289,10 @@ Patch12: ruby-3.4.0-Extract-hardening-CFLAGS-to-a-special-hardenflags-variable.p
Patch13: rubygems-3.5.17-Avoid-another-race-condition-of-open-mode.patch
# https://github.com/rubygems/rubygems/pull/7939
Patch14: rubygems-3.5.17-Remove-the-lock-file-for-binstubs.patch
# Fix Bundler reaching to the interned with `--local` option.
# https://github.com/rubygems/rubygems/issues/8025
# https://github.com/rubygems/rubygems/pull/8027
Patch15: bundler-2.5.19-Fix--local-hitting-the-network-when-default-gems-are.patch
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
%{?with_rubypick:Suggests: rubypick}
@ -768,6 +772,7 @@ analysis result in RBS format, a standard type description format for Ruby
%patch 12 -p1
%patch 13 -p1
%patch 14 -p1
%patch 15 -p2
# Provide an example of usage of the tapset:
cp -a %{SOURCE3} .
@ -1744,6 +1749,10 @@ make -C %{_vpath_builddir} runruby TESTRUN_SCRIPT=" \
%changelog
* Fri Sep 13 2024 Vít Ondruch <vondruch@redhat.com> - 3.3.5-15
- Fix Bundler `--local` option
Resolves: rhbz#2311898
* Tue Sep 03 2024 Vít Ondruch <vondruch@redhat.com> - 3.3.5-14
- Upgrade to Ruby 3.3.5.
Resolves: rhbz#2309364