mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-ruby/propshaft: enable ruby40
Signed-off-by: Alfred Wingate <parona@protonmail.com> Part-of: https://codeberg.org/gentoo/gentoo/pulls/1527 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
committed by
Sam James
parent
4956818237
commit
a6ec3b354a
51
dev-ruby/propshaft/propshaft-1.3.1-r1.ebuild
Normal file
51
dev-ruby/propshaft/propshaft-1.3.1-r1.ebuild
Normal file
@@ -0,0 +1,51 @@
|
||||
# Copyright 1999-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
USE_RUBY="ruby32 ruby33 ruby34 ruby40"
|
||||
|
||||
RUBY_FAKEGEM_BINWRAP=""
|
||||
RUBY_FAKEGEM_EXTRADOC="README.md UPGRADING.md"
|
||||
|
||||
RUBY_FAKEGEM_GEMSPEC="propshaft.gemspec"
|
||||
|
||||
inherit ruby-fakegem
|
||||
|
||||
DESCRIPTION="Deliver assets for Rails"
|
||||
HOMEPAGE="https://github.com/rails/propshaft"
|
||||
SRC_URI="https://github.com/rails/propshaft/archive/v${PV}.tar.gz -> ${P}-git.tgz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="$(ver_cut 1)"
|
||||
KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
|
||||
|
||||
IUSE="test"
|
||||
|
||||
ruby_add_rdepend "
|
||||
>=dev-ruby/actionpack-7.0.0:*
|
||||
>=dev-ruby/activesupport-7.0.0:*
|
||||
dev-ruby/rack:*
|
||||
"
|
||||
|
||||
ruby_add_bdepend "test? (
|
||||
dev-ruby/bundler
|
||||
dev-ruby/minitest:5
|
||||
>=dev-ruby/rails-7.0.0
|
||||
)"
|
||||
|
||||
all_ruby_prepare() {
|
||||
rm -f Gemfile.lock || die
|
||||
sed -i -e '/debug/ s:^:#:' Gemfile || die
|
||||
|
||||
sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die
|
||||
|
||||
cat <<-EOF > "${T}/Gemfile" || die
|
||||
gem "minitest", "~> 5"
|
||||
gem "rails", ">= 7.0.0"
|
||||
EOF
|
||||
}
|
||||
|
||||
each_ruby_test() {
|
||||
BUNDLE_GEMFILE="${T}/Gemfile" ${RUBY} -S bundle exec ${RUBY} -S rake || die
|
||||
}
|
||||
Reference in New Issue
Block a user