diff options
author | Hans de Graaff <graaff@gentoo.org> | 2016-04-17 10:04:37 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2016-04-17 10:06:24 +0200 |
commit | 3311da08423e3379c2c5c45e8e52077a6258ad54 (patch) | |
tree | aed2cc2ca1c3c54c1016d8f9287585ad03575675 /dev-ruby/i18n | |
parent | dev-ruby/rack-attack: cleanup (diff) | |
download | gentoo-3311da08423e3379c2c5c45e8e52077a6258ad54.tar.gz gentoo-3311da08423e3379c2c5c45e8e52077a6258ad54.tar.bz2 gentoo-3311da08423e3379c2c5c45e8e52077a6258ad54.zip |
dev-ruby/i18n: add ruby23
Drop ppc keyword due to bug 551722
Package-Manager: portage-2.2.26
Diffstat (limited to 'dev-ruby/i18n')
-rw-r--r-- | dev-ruby/i18n/i18n-0.7.0-r2.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/dev-ruby/i18n/i18n-0.7.0-r2.ebuild b/dev-ruby/i18n/i18n-0.7.0-r2.ebuild new file mode 100644 index 000000000000..9bb8c86621f7 --- /dev/null +++ b/dev-ruby/i18n/i18n-0.7.0-r2.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +USE_RUBY="ruby20 ruby21 ruby22 ruby23" + +RUBY_FAKEGEM_RECIPE_TEST="test" +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem versionator + +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="$(get_version_component_range 1-2)" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +RUBY_PATCHES=( ${P}-frozen-classes.patch ) + +ruby_add_bdepend "test? ( + >=dev-ruby/activesupport-3.2 <dev-ruby/activesupport-4.3 + dev-ruby/bundler + >=dev-ruby/mocha-0.13 + dev-ruby/test_declarative )" + +all_ruby_prepare() { + # Remove bundler lock files since we cannot depend on specific + # versions in Gentoo. + rm gemfiles/*.lock || die +} + +each_ruby_test() { + case ${RUBY} in + *ruby22|*ruby23) + versions="4.2" + ;; + *) + versions="3.2 4.0 4.1 4.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 +} |