Diff rake-13.0.6-r2 with a rake-13.2.1

/usr/portage/dev-ruby/rake/rake-13.2.1.ebuild 2025-07-29 16:22:13.712452771 +0300
1
# Copyright 1999-2024 Gentoo Authors
1
# Copyright 1999-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

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

  
7 7
RUBY_FAKEGEM_RECIPE_DOC="none"
8 8
RUBY_FAKEGEM_EXTRADOC="CHANGES README.rdoc TODO"
......
26 26

  
27 27
BDEPEND+=" app-alternatives/gzip"
28 28

  
29
ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.8 )
29
ruby_add_bdepend "test? ( dev-ruby/test-unit )
30 30
	doc? ( dev-ruby/rdoc )"
31 31

  
32 32
all_ruby_prepare() {
33 33
	sed -e 's/git ls-files -z/find * -type f -print0/' \
34
		-e "s:_relative ': './:" \
34
		-e 's:_relative ": "./:' \
35 35
		-i ${RUBY_FAKEGEM_GEMSPEC} || die
36 36
}
37 37

  
......
43 43
}
44 44

  
45 45
each_ruby_test() {
46
	${RUBY} -Ilib:test:. -e 'gem "minitest", "~>5.8"; require "minitest/autorun"; Dir["test/test_*.rb"].each{|f| require f}' || die
46
	MT_NO_PLUGINS=true RUBYLIB="$(pwd)/lib" ${RUBY} -Ilib:test:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || die
47 47
}
48 48

  
49 49
all_ruby_install() {
Thank you!