Diff minitar-0.9-r1 with a minitar-0.12.1

/usr/portage/dev-ruby/minitar/minitar-0.12.1.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 ruby33"
5
USE_RUBY="ruby31 ruby32 ruby33 ruby34"
6 6

  
7 7
RUBY_FAKEGEM_TASK_TEST=""
8 8
RUBY_FAKEGEM_RECIPE_DOC="none"
......
21 21
LICENSE="|| ( BSD-2 Ruby-BSD )"
22 22
SLOT="0"
23 23
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
24
IUSE=""
24
IUSE="test"
25 25

  
26 26
ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.3:5 )"
27 27

  
28
all_ruby_prepare() {
29
	sed -e '/focus/ s:^:#:' \
30
		-i test/minitest_helper.rb || die
31

  
32
	# Fix spec broken not casting write input to strings
33
	sed -e '/def write/adat = dat.to_s' \
34
		-i test/test_tar_writer.rb || die
35
}
36

  
28 37
each_ruby_test() {
29 38
	${RUBY} -Ilib:test:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || die
30 39
}
Thank you!