diff options
author | 2018-10-15 07:17:59 +0200 | |
---|---|---|
committer | 2018-10-15 07:25:27 +0200 | |
commit | 63a18a1cd5b4ff8aacddf0e06b7a46d157ce4fe6 (patch) | |
tree | c2da3671c3157031878840f4f92ec0a9c844c2cb /dev-ruby/i18n/i18n-1.1.1.ebuild | |
parent | dev-ruby/mail: add 2.7.1 (diff) | |
download | gentoo-63a18a1cd5b4ff8aacddf0e06b7a46d157ce4fe6.tar.gz gentoo-63a18a1cd5b4ff8aacddf0e06b7a46d157ce4fe6.tar.bz2 gentoo-63a18a1cd5b4ff8aacddf0e06b7a46d157ce4fe6.zip |
dev-ruby/i18n: add 1.1.1
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11
Diffstat (limited to 'dev-ruby/i18n/i18n-1.1.1.ebuild')
-rw-r--r-- | dev-ruby/i18n/i18n-1.1.1.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/dev-ruby/i18n/i18n-1.1.1.ebuild b/dev-ruby/i18n/i18n-1.1.1.ebuild new file mode 100644 index 000000000000..0601ded3a6c8 --- /dev/null +++ b/dev-ruby/i18n/i18n-1.1.1.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby23 ruby24 ruby25" + +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 eapi7-ver + +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 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-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-4.2 + dev-ruby/bundler + >=dev-ruby/mocha-0.13 + dev-ruby/test_declarative )" + +all_ruby_prepare() { + rm -f gemfiles/*.lock || die + + # Remove optional unpackaged oj gem + sed -i -e '/oj/ s:^:#:' gemfiles/* || die +} + +each_ruby_test() { + case ${RUBY} in + *ruby25) + versions="5.1" + ;; + *ruby23|*ruby24) + versions="4.2 5.0 5.1" + ;; + 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 +} |