summaryrefslogtreecommitdiff
path: root/dev-ruby/gettext_i18n_rails
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-ruby/gettext_i18n_rails
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-ruby/gettext_i18n_rails')
-rw-r--r--dev-ruby/gettext_i18n_rails/Manifest2
-rw-r--r--dev-ruby/gettext_i18n_rails/files/gettext_i18n_rails-1.13.0-rails71.patch25
-rw-r--r--dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.13.0.ebuild48
-rw-r--r--dev-ruby/gettext_i18n_rails/gettext_i18n_rails-2.1.0.ebuild46
-rw-r--r--dev-ruby/gettext_i18n_rails/metadata.xml11
5 files changed, 0 insertions, 132 deletions
diff --git a/dev-ruby/gettext_i18n_rails/Manifest b/dev-ruby/gettext_i18n_rails/Manifest
deleted file mode 100644
index 16874f5b25f6..000000000000
--- a/dev-ruby/gettext_i18n_rails/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST gettext_i18n_rails-1.13.0.tar.gz 21147 BLAKE2B 43ba0e408a274283280634a775bddef0bdc4b203e683db3f926c02fed24b413b052dddf08876f81b0b7976b934b1f8845c5278f9c9d10da8013f9062da68ac2f SHA512 58ae4b12ee75e7892d451fedd89375393341e258cf3a859534998dc2582eb6ed6eaeb579e001325e775e639caddc52f9e71ed7f5b7023dce4cdbbfa8f653f3eb
-DIST gettext_i18n_rails-2.1.0.tar.gz 21808 BLAKE2B 09727ee9ed4532c82cf725546b00085de75f9c17c2a34f0b2c215ebc06ee04b5d888eb51e3f88b3451120dcb7ab1ce302b89dbdc88580ee553042497878ed24f SHA512 eb3c586b1cef9d75c076a6ef26c8361092475f361e4d182203bea2c4e160206dd5f2f02949eef1219aac690ec9fcf281e686022cf831f09933c81f36de86ec11
diff --git a/dev-ruby/gettext_i18n_rails/files/gettext_i18n_rails-1.13.0-rails71.patch b/dev-ruby/gettext_i18n_rails/files/gettext_i18n_rails-1.13.0-rails71.patch
deleted file mode 100644
index b420547cfb09..000000000000
--- a/dev-ruby/gettext_i18n_rails/files/gettext_i18n_rails-1.13.0-rails71.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From f88bd5b0e8869ec5b7992846e5562c414b36f380 Mon Sep 17 00:00:00 2001
-From: Hannes Hornwall <hannes@hornwall.me>
-Date: Tue, 30 Jul 2024 14:46:48 +0200
-Subject: [PATCH] Update test case with classes that are no longer included in
- rails 7.1
-
----
- spec/gettext_i18n_rails/model_attributes_finder_spec.rb | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/spec/gettext_i18n_rails/model_attributes_finder_spec.rb b/spec/gettext_i18n_rails/model_attributes_finder_spec.rb
-index dec15865..9bdaf92a 100644
---- a/spec/gettext_i18n_rails/model_attributes_finder_spec.rb
-+++ b/spec/gettext_i18n_rails/model_attributes_finder_spec.rb
-@@ -24,8 +24,8 @@ class Application < Rails::Application
- keys = finder.find({}).keys
- expected = [CarSeat, Part, StiParent]
- expected.concat [AbstractParentClass, NotConventional] if Rails::VERSION::MAJOR >= 3
-- expected.concat [ActiveRecord::SchemaMigration] if Rails::VERSION::MAJOR >= 4
-- expected.concat [ActiveRecord::InternalMetadata] if Rails::VERSION::MAJOR >= 5
-+ expected.concat [ActiveRecord::SchemaMigration] if Rails::VERSION::MAJOR >= 4 && !(Rails::VERSION::MAJOR == 7 && Rails::VERSION::MINOR > 0)
-+ expected.concat [ActiveRecord::InternalMetadata] if Rails::VERSION::MAJOR >= 5 && !(Rails::VERSION::MAJOR == 7 && Rails::VERSION::MINOR > 0)
- keys.should =~ expected
- end
-
diff --git a/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.13.0.ebuild b/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.13.0.ebuild
deleted file mode 100644
index cb72136b6f9d..000000000000
--- a/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.13.0.ebuild
+++ /dev/null
@@ -1,48 +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="public-domain"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-PATCHES=( "${FILESDIR}/${P}-rails71.patch" )
-
-ruby_add_bdepend "test? (
- dev-ruby/rails:7.1
- dev-ruby/activerecord:7.1[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.1.0"' -i spec/spec_helper.rb || die
-}
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
-}
diff --git a/dev-ruby/gettext_i18n_rails/metadata.xml b/dev-ruby/gettext_i18n_rails/metadata.xml
deleted file mode 100644
index 7ac1ef833d29..000000000000
--- a/dev-ruby/gettext_i18n_rails/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>ruby@gentoo.org</email>
- <name>Gentoo Ruby Project</name>
- </maintainer>
- <upstream>
- <remote-id type="github">grosser/gettext_i18n_rails</remote-id>
- </upstream>
-</pkgmetadata>