commit: ad657a076b7e3f4d313d8469ddd1498a9b9aa614
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 20 12:29:03 2025 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Thu Nov 20 12:29:18 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad657a07
dev-ruby/roadie-rails: add 3.4.0
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/roadie-rails/Manifest | 1 +
dev-ruby/roadie-rails/roadie-rails-3.4.0.ebuild | 63 +++++++++++++++++++++++++
2 files changed, 64 insertions(+)
diff --git a/dev-ruby/roadie-rails/Manifest b/dev-ruby/roadie-rails/Manifest
index 4319f375ca2c..1b466ec16b95 100644
--- a/dev-ruby/roadie-rails/Manifest
+++ b/dev-ruby/roadie-rails/Manifest
@@ -1 +1,2 @@
DIST roadie-rails-3.3.0.tar.gz 104945 BLAKE2B
b25da1f2b3210432735388831e4ac78ea01fc599c3ee6676421c4c4d355081f2d390c1d46a46dd7849ee90a42e1ba8bfbe4207136494ac511dba128f59bb4614
SHA512
96ece383f2ded5ea46e008da744222820658ec796d5ea193b046d8f8fc81155c34097b9d4a50e0d7cd14ef3f60209260bb2341773f9c2424e8bbe547e6b5ab93
+DIST roadie-rails-3.4.0.tar.gz 118487 BLAKE2B
a8c55b66dcd7c0a4a21eefc88b653028493563e46f0fc7fcfeeae09fe482b4a1a2e5b7de73b7ad890206855451616fe7c5c7ddf9b7d7010aaa97c6e922d50633
SHA512
7bd14cf2599b239ae91988fccde7290c66949739e70982f4e60c971f61582c77cc166547d1876a0f82cdbc85caa41b164a67746a75fe7706f765d90ce1f9e481
diff --git a/dev-ruby/roadie-rails/roadie-rails-3.4.0.ebuild
b/dev-ruby/roadie-rails/roadie-rails-3.4.0.ebuild
new file mode 100644
index 000000000000..9cf4f6815114
--- /dev/null
+++ b/dev-ruby/roadie-rails/roadie-rails-3.4.0.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby32 ruby33 ruby34"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="yard"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Hooks Roadie into your Rails application to help with email
generation"
+HOMEPAGE="https://github.com/Mange/roadie-rails"
+SRC_URI="https://github.com/Mange/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64"
+
+ruby_add_rdepend "dev-ruby/roadie:5
+ || ( dev-ruby/railties:8.1 dev-ruby/railties:8.0 dev-ruby/railties:7.2
dev-ruby/railties:7.1 )"
+ruby_add_bdepend "
+ test? (
+ dev-ruby/bundler
+ dev-ruby/rails:8.1 dev-ruby/rails:8.0 dev-ruby/rails:7.2
dev-ruby/rails:7.1
+ dev-ruby/rspec-rails
+ dev-ruby/rspec-collection_matchers
+ dev-ruby/sass-rails )"
+
+all_ruby_prepare() {
+ sed -i -e '/\(simplecov\|standard\)/ s:^:#:' Gemfile || die
+ sed -i -e 's/git ls-files/find * -print/' -e '/standard/ s:^:#:'
${RUBY_FAKEGEM_GEMSPEC} || die
+
+ # Avoid already removed rails versions and version incompatible with
+ # our sass-rails version or not having ruby33 targets.
+ sed -e '/rails_\(51\|52\|60\|70\)/ s:^:#:' \
+ -e '/Rails 7.1 with sprockets/ s:^:#:' \
+ -i spec/integration_spec.rb || die
+
+ # Avoid dependency on optional bootsnap
+ sed -i -e '/bootsnap/ s:^:#:' spec/railsapps/rails_*/Gemfile
spec/railsapps/rails_*/config/boot.rb || die
+
+ # Fix versioned sass-rails dependency
+ sed -i -e '/sass-rails/ s/>= 6/>=5/' spec/railsapps/*/Gemfile || die
+
+ # Revert
https://github.com/Mange/roadie-rails/commit/03acd8fddf651d43919e92db35d541ec4281c5fc
for now
+ # Fragile test which is affected by dependency versions (unclear which)
+ sed -e
's/cd95a25e70dfe61add5a96e11d3fee0f29e9ba2b05099723d57bba7dfa725c8a/322506f9917889126e81df2833a6eecdf2e394658d53dad347e9882dd4dbf28e/'
\
+ -i spec/integration_spec.rb || die
+
+}
+
+each_ruby_prepare() {
+ sed -i -e '/run_in_app_context/ s:bin/rails:'${RUBY}' -S bin/rails:'
spec/support/rails_app.rb || die
+}
+
+each_ruby_test() {
+ ${RUBY} -S bundle exec rspec-3 spec || die
+}