diff options
author | 2021-04-03 07:53:07 +0200 | |
---|---|---|
committer | 2021-04-04 08:53:50 +0200 | |
commit | 7610639e847e2ca663af496ce8fe775f5d016b83 (patch) | |
tree | 7977c5b6759203dd5d14415f670d4066feacf4e1 /dev-ruby/i18n/i18n-1.8.6.ebuild | |
parent | dev-ruby/i18n: amd64 stable (diff) | |
download | gentoo-7610639e847e2ca663af496ce8fe775f5d016b83.tar.gz gentoo-7610639e847e2ca663af496ce8fe775f5d016b83.tar.bz2 gentoo-7610639e847e2ca663af496ce8fe775f5d016b83.zip |
dev-ruby/i18n: cleanup
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/i18n/i18n-1.8.6.ebuild')
-rw-r--r-- | dev-ruby/i18n/i18n-1.8.6.ebuild | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/dev-ruby/i18n/i18n-1.8.6.ebuild b/dev-ruby/i18n/i18n-1.8.6.ebuild deleted file mode 100644 index b4f94ae7c42..00000000000 --- a/dev-ruby/i18n/i18n-1.8.6.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -USE_RUBY="ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_TEST="test" -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/svenfuchs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="$(ver_cut 1)" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -ruby_add_rdepend "dev-ruby/concurrent-ruby:1" - -ruby_add_bdepend "test? ( - >=dev-ruby/activesupport-5.1 - dev-ruby/bundler - >=dev-ruby/mocha-1.7.0 - 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 's/1.7.0/1.7/' gemfiles/* || die -} - -each_ruby_test() { - case ${RUBY} in - *ruby27) - versions="6.0" - ;; - *ruby26) - versions="5.2 6.0" - ;; - *ruby25) - versions="5.2 6.0" - ;; - *ruby24) - versions="5.2" - ;; - 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 -} |