diff options
author | Sam James <sam@gentoo.org> | 2023-04-07 18:16:31 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-04-07 19:09:42 +0100 |
commit | d9fd677c3c0c542ecd0e2173d0137a04feeb39ec (patch) | |
tree | e7cfc28c9347f93eaae0d63a65b3645eafbb8443 /dev-ruby/propshaft | |
parent | www-servers/adsf: enable ruby31, ruby32 (diff) | |
download | gentoo-d9fd677c3c0c542ecd0e2173d0137a04feeb39ec.tar.gz gentoo-d9fd677c3c0c542ecd0e2173d0137a04feeb39ec.tar.bz2 gentoo-d9fd677c3c0c542ecd0e2173d0137a04feeb39ec.zip |
dev-ruby/propshaft: enable ruby32
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-ruby/propshaft')
-rw-r--r-- | dev-ruby/propshaft/propshaft-0.7.0-r1.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-ruby/propshaft/propshaft-0.7.0-r1.ebuild b/dev-ruby/propshaft/propshaft-0.7.0-r1.ebuild new file mode 100644 index 000000000000..4a6f7cf77026 --- /dev/null +++ b/dev-ruby/propshaft/propshaft-0.7.0-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby27 ruby30 ruby31 ruby32" + +RUBY_FAKEGEM_BINWRAP="" +RUBY_FAKEGEM_EXTRADOC="README.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 ~arm ~arm64 ~ppc ~ppc64 ~x86" + +IUSE="" + +ruby_add_rdepend " + >=dev-ruby/actionpack-7.0.0:* + >=dev-ruby/activesupport-7.0.0:* + dev-ruby/rack:* + >=dev-ruby/railties-7.0.0:* +" + +ruby_add_bdepend "test? ( >=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 +} |