Diff rubygems-3.4.6 with a rubygems-3.4.15

/usr/portage/dev-ruby/rubygems/rubygems-3.4.15.ebuild 2023-10-09 14:52:30.464368375 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
USE_RUBY="ruby27 ruby30 ruby31 ruby32"
6
USE_RUBY="ruby30 ruby31 ruby32"
7 7

  
8 8
inherit ruby-ng prefix
9 9

  
......
42 42

  
43 43
	# Disable broken tests when changing default values:
44 44
	sed -i -e '/test_default_path/,/^  end/ s:^:#:' test/rubygems/test_gem.rb || die
45
	sed -i -e '/test_initialize_\(path_with_defaults\|regexp_path_separator\)/aomit "gentoo"' test/rubygems/test_gem_path_support.rb || die
45
	sed -e '/test_initialize_\(path_with_defaults\|regexp_path_separator\)/aomit "gentoo"' \
46
		-i test/rubygems/test_gem_path_support.rb || die
46 47
	# Avoid test that won't work as json is also installed as plain ruby code
47 48
	sed -i -e '/test_realworld_\(\|upgraded_\)default_gem/aomit "gentoo"' test/rubygems/test_require.rb || die
48 49

  
49 50
	# Avoid test that requires additional utility scripts
50 51
	rm -f test/test_changelog_generator.rb || die
51 52

  
52
	# Avoid tests that require a network connection (for crates.io)
53
	# Avoid tests that require a network connection (for crates.io or other downloads)
53 54
	rm -f test/rubygems/test_gem_ext_cargo_builder.rb || die
55
	sed -e '/test_gem_exec_gem_uninstall/aomit "requires network"' \
56
		-i test/rubygems/test_gem_commands_exec_command.rb || die
54 57

  
55 58
	# Update manifest after changing files to avoid a test failure
56 59
	if use test; then
Thank you!