summaryrefslogtreecommitdiff
path: root/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-2.1.0.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'dev-ruby/gettext_i18n_rails/gettext_i18n_rails-2.1.0.ebuild')
-rw-r--r--dev-ruby/gettext_i18n_rails/gettext_i18n_rails-2.1.0.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-2.1.0.ebuild b/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-2.1.0.ebuild
deleted file mode 100644
index 1797d0b48361..000000000000
--- a/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-2.1.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# 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_GEMSPEC="gettext_i18n_rails.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="FastGettext / Rails integration"
-HOMEPAGE="https://github.com/grosser/gettext_i18n_rails"
-SRC_URI="https://github.com/grosser/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="$(ver_cut 1)"
-KEYWORDS="~amd64"
-IUSE="test"
-
-ruby_add_bdepend "test? (
- dev-ruby/rails:7.2
- dev-ruby/activerecord:7.2[sqlite]
- dev-ruby/temple
- dev-ruby/ruby-gettext
- dev-ruby/haml
- dev-ruby/slim
-)"
-
-ruby_add_rdepend ">=dev-ruby/fast_gettext-0.9.0:*"
-
-all_ruby_prepare() {
- rm Gemfile Gemfile.lock || die
-
- sed -i -e 's/git ls-files/find/' ${RUBY_FAKEGEM_GEMSPEC} || die
-
- # Remove specs for slim and hamlet, template engines we don't package.
- rm spec/gettext_i18n_rails/slim_parser_spec.rb spec/gettext_i18n_rails/haml_parser_spec.rb || die
-
- # Test against specific Rails version
- sed -e '1igem "rails", "~>7.2.0"' -i spec/spec_helper.rb || die
-}