diff options
author | 2012-04-02 06:24:47 +0000 | |
---|---|---|
committer | 2012-04-02 06:24:47 +0000 | |
commit | 118131f0bc9cc363cd6a18b5cfbd829ec38c292e (patch) | |
tree | b9854d1ed43ab1c1baa55a91c681076f3d6fd312 /dev-ruby | |
parent | Drop unneeded odt2txt dependency. (diff) | |
download | gentoo-2-118131f0bc9cc363cd6a18b5cfbd829ec38c292e.tar.gz gentoo-2-118131f0bc9cc363cd6a18b5cfbd829ec38c292e.tar.bz2 gentoo-2-118131f0bc9cc363cd6a18b5cfbd829ec38c292e.zip |
Version bump. Add ruby19 and drop x86 due to that, bug 409399.
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/gettext_i18n_rails/ChangeLog | 8 | ||||
-rw-r--r-- | dev-ruby/gettext_i18n_rails/gettext_i18n_rails-0.4.5.ebuild | 40 |
2 files changed, 47 insertions, 1 deletions
diff --git a/dev-ruby/gettext_i18n_rails/ChangeLog b/dev-ruby/gettext_i18n_rails/ChangeLog index 77941faa5e47..ac854ba211d5 100644 --- a/dev-ruby/gettext_i18n_rails/ChangeLog +++ b/dev-ruby/gettext_i18n_rails/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-ruby/gettext_i18n_rails # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gettext_i18n_rails/ChangeLog,v 1.9 2012/01/15 10:35:16 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gettext_i18n_rails/ChangeLog,v 1.10 2012/04/02 06:24:47 graaff Exp $ + +*gettext_i18n_rails-0.4.5 (02 Apr 2012) + + 02 Apr 2012; Hans de Graaff <graaff@gentoo.org> + +gettext_i18n_rails-0.4.5.ebuild: + Version bump. Add ruby19 and drop x86 due to that, bug 409399. *gettext_i18n_rails-0.4.3 (15 Jan 2012) diff --git a/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-0.4.5.ebuild b/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-0.4.5.ebuild new file mode 100644 index 000000000000..9c804c2a2645 --- /dev/null +++ b/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-0.4.5.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-0.4.5.ebuild,v 1.1 2012/04/02 06:24:47 graaff Exp $ + +EAPI="4" + +# jruby support requires sqlite3 support for jruby. +USE_RUBY="ruby18 ruby19 ree18" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="Readme.md" + +RUBY_FAKEGEM_TASK_TEST="spec" + +RUBY_FAKEGEM_EXTRAINSTALL="init.rb VERSION" + +inherit ruby-fakegem + +DESCRIPTION="FastGettext / Rails integration." +HOMEPAGE="https://github.com/grosser/gettext_i18n_rails" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/rspec:2 dev-ruby/activerecord )" +ruby_add_rdepend "dev-ruby/fast_gettext" + +all_ruby_prepare() { + rm Gemfile Gemfile.lock || die + + # Remove specs for slim and hamlet, template engines we don't package. + rm spec/gettext_i18n_rails/slim_parser_spec.rb spec/gettext_i18n_rails/hamlet_parser_spec.rb || die +} + +each_ruby_test() { + # Call specs directly because the Rakefile will use the wrong interpreter + ${RUBY} -S rspec spec || die +} |