diff options
author | Hans de Graaff <graaff@gentoo.org> | 2020-01-11 07:57:54 +0100 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2020-01-11 07:57:54 +0100 |
commit | 01bfcbdb9171e36cbc973179c3e90034b2f350cb (patch) | |
tree | 68724941016ed4f0ce4133e751135ebe437137ca /dev-ruby/i18n/i18n-1.8.1.ebuild | |
parent | dev-ruby/gettext-setup: add 0.34 (diff) | |
download | gentoo-01bfcbdb9171e36cbc973179c3e90034b2f350cb.tar.gz gentoo-01bfcbdb9171e36cbc973179c3e90034b2f350cb.tar.bz2 gentoo-01bfcbdb9171e36cbc973179c3e90034b2f350cb.zip |
dev-ruby/i18n: add 1.8.1
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/i18n/i18n-1.8.1.ebuild')
-rw-r--r-- | dev-ruby/i18n/i18n-1.8.1.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/dev-ruby/i18n/i18n-1.8.1.ebuild b/dev-ruby/i18n/i18n-1.8.1.ebuild new file mode 100644 index 000000000000..2b0bdc5573d6 --- /dev/null +++ b/dev-ruby/i18n/i18n-1.8.1.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +USE_RUBY="ruby24 ruby25 ruby26" + +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 ~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-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 + *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 +} |