Сравнение rake-compiler-1.2.3 с rake-compiler-1.2.5
/usr/portage/dev-ruby/rake-compiler/rake-compiler-1.2.5.ebuild 2023-10-09 14:52:30.452368374 +0300 | ||
---|---|---|
14 | 14 |
inherit ruby-fakegem |
15 | 15 | |
16 | 16 |
DESCRIPTION="Provide a standard and simplified way to build and package Ruby extensions" |
17 |
HOMEPAGE="https://github.com/luislavena/rake-compiler" |
|
17 |
HOMEPAGE="https://github.com/rake-compiler/rake-compiler" |
|
18 | 18 |
LICENSE="MIT" |
19 | 19 | |
20 |
SRC_URI="https://github.com/luislavena/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" |
|
20 |
SRC_URI="https://github.com/rake-compiler/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" |
|
21 | 21 | |
22 |
KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" |
|
22 |
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" |
|
23 | 23 |
SLOT="0" |
24 | 24 |
IUSE="" |
25 | 25 | |
... | ... | |
27 | 27 | |
28 | 28 |
ruby_add_bdepend "test? ( dev-ruby/rspec:3 )" |
29 | 29 | |
30 |
USE_RUBY="ruby27 ruby30 ruby31" ruby_add_bdepend "test? ( dev-util/cucumber )" |
|
30 |
USE_RUBY="ruby30 ruby31 ruby32" ruby_add_bdepend "test? ( dev-util/cucumber )" |
|
31 | 31 | |
32 | 32 |
all_ruby_prepare() { |
33 | 33 |
# Avoid failing features for native gems, this also fails with rubygems |
... | ... | |
44 | 44 |
each_ruby_test() { |
45 | 45 |
# Skip cucumber for new ruby versions (not ready yet due to rspec 2 usage) |
46 | 46 |
case ${RUBY} in |
47 |
*ruby27|*ruby30|*ruby31) |
|
47 |
*ruby30|*ruby31|*ruby32) |
|
48 | 48 |
RSPEC_VERSION=3 ruby-ng_rspec |
49 | 49 |
ruby-ng_cucumber |
50 | 50 |
;; |