Сравнение prime-0.1.2-r1 с prime-0.1.3
/usr/portage/dev-ruby/prime/prime-0.1.3.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="ruby31 ruby32 ruby33" |
|
5 |
USE_RUBY="ruby31 ruby32 ruby33 ruby34" |
|
6 | 6 | |
7 | 7 |
RUBY_FAKEGEM_BINWRAP="" |
8 | 8 |
RUBY_FAKEGEM_EXTRADOC="README.md" |
... | ... | |
17 | 17 |
LICENSE="BSD-2" |
18 | 18 |
SLOT="0" |
19 | 19 |
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" |
20 |
IUSE="" |
|
20 |
IUSE="test" |
|
21 | 21 | |
22 | 22 |
ruby_add_rdepend " |
23 | 23 |
dev-ruby/forwardable |
24 | 24 |
dev-ruby/singleton |
25 | 25 |
" |
26 | 26 | |
27 |
ruby_add_bdepend "test? ( dev-ruby/test-unit dev-ruby/test-unit-ruby-core )" |
|
28 | ||
27 | 29 |
all_ruby_prepare() { |
28 | 30 |
sed -e 's:_relative ": "./:' \ |
29 | 31 |
-i ${RUBY_FAKEGEM_GEMSPEC} || die |
30 |
} |
|
31 | 32 | |
32 |
each_ruby_test() { |
|
33 |
${RUBY} -Ilib:.:test:test/lib -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die |
|
33 |
# Avoid RBS tests. It is not clear how these can work because RBS |
|
34 |
# will only find the installed signatures (if any), not the ones in |
|
35 |
# the local directory. |
|
36 |
rm -f test/test_rbs.rb || die |
|
34 | 37 |
} |