diff options
author | 2024-12-24 09:04:33 +0100 | |
---|---|---|
committer | 2024-12-24 09:04:33 +0100 | |
commit | 951ef815d2ca14241e2c39bb1920c6c770ed4a38 (patch) | |
tree | e68896ebb41b0e5cd395019da5f924c82b9eebb9 /dev-ruby | |
parent | dev-ruby/appraisal: destabilize 2.5.0 for ~x86 (diff) | |
download | gentoo-951ef815d2ca14241e2c39bb1920c6c770ed4a38.tar.gz gentoo-951ef815d2ca14241e2c39bb1920c6c770ed4a38.tar.bz2 gentoo-951ef815d2ca14241e2c39bb1920c6c770ed4a38.zip |
dev-ruby/i18n: drop 1.14.1
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/i18n/Manifest | 1 | ||||
-rw-r--r-- | dev-ruby/i18n/i18n-1.14.1.ebuild | 67 |
2 files changed, 0 insertions, 68 deletions
diff --git a/dev-ruby/i18n/Manifest b/dev-ruby/i18n/Manifest index 61acc5bdc31b..9cb0ece5a9d4 100644 --- a/dev-ruby/i18n/Manifest +++ b/dev-ruby/i18n/Manifest @@ -1,3 +1,2 @@ -DIST i18n-1.14.1.tar.gz 74855 BLAKE2B b01b5fefd5033352455110e4fda3d567a5033c6bb732dd11519a3859a3cc4d57bd4229ea3346f2e680575f6ac4d7038d4bcbfd0ea314d2e8b08f26858ffd22f6 SHA512 89a293c00c7e62e802823d8011142a0786268b4c8341a9e389182988f1372655b4c5410ee10d6632af2fee645fbbf2feda2ccc4669d59d44640d3fa2c34b9e86 DIST i18n-1.14.5.tar.gz 75739 BLAKE2B 10af6c88e5ab4d50dee156b944795525f4d79035f3c2369b379f70d7fa48b84cc26fe0855017b378b7c94f8b4ecdc37dd122f536d2b54c595d70c5c731ba5c64 SHA512 b6c6e333fff38228136ce55a75f466b4885542973e96eea0cbfb5c2ea1dd4780847e59b10090f8ecbc4aeb0de67258dcdbfc1812369b8d9f1d7597468f756677 DIST i18n-1.14.6.tar.gz 75978 BLAKE2B e2c56a8600b94b91a32481c4f24bd8b47aee118aee87da0012ddd95e9d01a6c0db489fa0528ca0a9a37ec49124d41f4322eb09f0828f0a53c268d02da1c3b7d5 SHA512 5713e6e2576c16698333058bae3f1758ab71bc040c7feab2d3b51dfc6faa7a76539c6916dd3807e429e53b1a3bf22064cea7eb7b9dd731ddb9a04f06615803a6 diff --git a/dev-ruby/i18n/i18n-1.14.1.ebuild b/dev-ruby/i18n/i18n-1.14.1.ebuild deleted file mode 100644 index 5a6083d32802..000000000000 --- a/dev-ruby/i18n/i18n-1.14.1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -USE_RUBY="ruby31 ruby32 ruby33" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Add Internationalization support to your Ruby application" -HOMEPAGE="http://rails-i18n.org/" -SRC_URI="https://github.com/ruby-i18n/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="$(ver_cut 1)" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" - -ruby_add_rdepend "dev-ruby/concurrent-ruby:1" - -ruby_add_bdepend " - test? ( - >=dev-ruby/activesupport-5.1 - dev-ruby/bundler - >=dev-ruby/minitest-5.14:5 - dev-ruby/mocha:2 - dev-ruby/test_declarative - ) -" - -all_ruby_prepare() { - rm -f gemfiles/*.lock || die - - # Remove optional unpackaged oj gem - sed -i -e '/oj/ s:^:#:' gemfiles/* || die - - # Update old test dependencies - sed -i -e '/rake/ s/~>/>=/' -e '/mocha/ s/1.7.0/2.0/' -e '3igem "json"' -e '4igem "racc"' gemfiles/* || die - - # Use mocha 2 to avoid minitest deprecation issues. - sed -i -e 's:mocha/setup:mocha/minitest:' test/test_helper.rb || die -} - -each_ruby_test() { - case ${RUBY} in - *ruby33) - versions="7.0" - ;; - *ruby32) - versions="6.1 7.0" - ;; - *ruby31) - versions="6.1 7.0" - ;; - *ruby30) - versions="6.0 6.1 7.0" - ;; - esac - - for version in ${versions} ; do - if has_version "dev-ruby/activesupport:${version}" ; then - einfo "Running tests with activesupport ${version}" - BUNDLE_GEMFILE="${S}/gemfiles/Gemfile.rails-${version}.x" ${RUBY} -S bundle exec ${RUBY} -S rake test || die - fi - done -} |