diff options
author | Hans de Graaff <graaff@gentoo.org> | 2013-03-10 08:45:59 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2013-03-10 08:45:59 +0000 |
commit | 4695123b0879c4cbb5c97125e671406006e4f58e (patch) | |
tree | e185f2d62715674d2f80119544c468030a46c7fb /dev-ruby/i18n | |
parent | Version bump (diff) | |
download | gentoo-2-4695123b0879c4cbb5c97125e671406006e4f58e.tar.gz gentoo-2-4695123b0879c4cbb5c97125e671406006e4f58e.tar.bz2 gentoo-2-4695123b0879c4cbb5c97125e671406006e4f58e.zip |
Version bump.
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'dev-ruby/i18n')
-rw-r--r-- | dev-ruby/i18n/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/i18n/i18n-0.6.4.ebuild | 32 |
2 files changed, 38 insertions, 1 deletions
diff --git a/dev-ruby/i18n/ChangeLog b/dev-ruby/i18n/ChangeLog index ffdc1f52a47e..ec2e6af35dd3 100644 --- a/dev-ruby/i18n/ChangeLog +++ b/dev-ruby/i18n/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/i18n # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.51 2013/01/16 01:08:23 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.52 2013/03/10 08:45:59 graaff Exp $ + +*i18n-0.6.4 (10 Mar 2013) + + 10 Mar 2013; Hans de Graaff <graaff@gentoo.org> +i18n-0.6.4.ebuild: + Version bump. 16 Jan 2013; Rick Farina <zerochaos@gentoo.org> i18n-0.4.2.ebuild, i18n-0.5.0-r1.ebuild, i18n-0.6.0-r1.ebuild, i18n-0.6.1.ebuild: diff --git a/dev-ruby/i18n/i18n-0.6.4.ebuild b/dev-ruby/i18n/i18n-0.6.4.ebuild new file mode 100644 index 000000000000..5ac16972b4cc --- /dev/null +++ b/dev-ruby/i18n/i18n-0.6.4.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.6.4.ebuild,v 1.1 2013/03/10 08:45:59 graaff Exp $ + +EAPI=4 + +USE_RUBY="ruby18 jruby ree18 ruby19" + +RUBY_FAKEGEM_RECIPE_TEST="test" +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.textile README.textile" + +inherit ruby-fakegem + +DESCRIPTION="Add Internationalization support to your Ruby application." +HOMEPAGE="http://rails-i18n.org/" + +LICENSE="MIT" +SLOT="0.6" +KEYWORDS="~amd64 ~arm ~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_bdepend "test? ( dev-ruby/activesupport dev-ruby/mocha dev-ruby/test_declarative )" + +each_ruby_test() { + ${RUBY} -w -Ilib -Itest test/all.rb +} + +all_ruby_prepare() { + #Bundler isn't really necessary here, and it doesn't work with jruby + sed -i -e "15s/require 'bundler\/setup'//" test/test_helper.rb || die +} |