Diff ffaker-2.22.0 with a ffaker-2.23.0

/usr/portage/dev-ruby/ffaker/ffaker-2.23.0.ebuild 2025-02-03 17:39:32.898667171 +0300
1
# Copyright 1999-2023 Gentoo Authors
1
# Copyright 1999-2024 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5
USE_RUBY="ruby31 ruby32"
5
USE_RUBY="ruby31 ruby32 ruby33 ruby34"
6 6

  
7 7
RUBY_FAKEGEM_BINWRAP=""
8 8
RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md REFERENCE.md"
......
20 20
ruby_add_bdepend "test? ( dev-ruby/test-unit:2 )"
21 21

  
22 22
all_ruby_prepare() {
23
	sed -i -e '/test_image_file/aomit "network"' test/test_image.rb || die
23
	# Avoid dependency on rubocop
24
	sed -e '/rubocop/I s:^:#:' -i Rakefile || die
25

  
26
	sed -e '/test_\(image_file\|file_output_with_keyword_arguments\|file_output_with_positional_arguments\|file_with_size_as_positional_argument\)/aomit "requires network"' \
27
		-i test/test_image.rb || die
24 28
}
Thank you!