diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2013-09-22 17:17:27 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2013-09-22 17:17:27 +0000 |
commit | 43a6dd8a74819f271ce97584e93d17e1c1000367 (patch) | |
tree | 53f1d1ef9fefabb819e6d36defd4a6cc8a40c47a | |
parent | Version bump. (diff) | |
download | gentoo-2-43a6dd8a74819f271ce97584e93d17e1c1000367.tar.gz gentoo-2-43a6dd8a74819f271ce97584e93d17e1c1000367.tar.bz2 gentoo-2-43a6dd8a74819f271ce97584e93d17e1c1000367.zip |
Version bump.
(Portage version: 2.2.6/cvs/Linux x86_64, signed Manifest commit with key )
-rw-r--r-- | dev-ruby/locale/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/locale/locale-2.0.9.ebuild | 51 |
2 files changed, 57 insertions, 1 deletions
diff --git a/dev-ruby/locale/ChangeLog b/dev-ruby/locale/ChangeLog index 9a2cc0f9d18b..3c2e823a22c4 100644 --- a/dev-ruby/locale/ChangeLog +++ b/dev-ruby/locale/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/locale # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/locale/ChangeLog,v 1.49 2013/04/23 17:07:42 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/locale/ChangeLog,v 1.50 2013/09/22 17:17:27 mrueg Exp $ + +*locale-2.0.9 (22 Sep 2013) + + 22 Sep 2013; Manuel Rüger <mrueg@gentoo.org> +locale-2.0.9.ebuild: + Version bump. 23 Apr 2013; Hans de Graaff <graaff@gentoo.org> locale-2.0.8.ebuild: Fix yard dependency issue by only building documentation when USE=doc, bug diff --git a/dev-ruby/locale/locale-2.0.9.ebuild b/dev-ruby/locale/locale-2.0.9.ebuild new file mode 100644 index 000000000000..fe58aade4123 --- /dev/null +++ b/dev-ruby/locale/locale-2.0.9.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/locale/locale-2.0.9.ebuild,v 1.1 2013/09/22 17:17:27 mrueg Exp $ + +EAPI=5 + +USE_RUBY="ruby18 ruby19 jruby" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_DOCDIR="doc/reference" +RUBY_FAKEGEM_EXTRADOC="ChangeLog README.rdoc doc/text/news.md" + +RUBY_FAKEGEM_TASK_TEST="test" + +inherit ruby-fakegem + +DESCRIPTION="A pure ruby library which provides basic APIs for localization." +HOMEPAGE="https://github.com/ruby-gettext/locale" +LICENSE="|| ( Ruby GPL-2 )" +SRC_URI="https://github.com/ruby-gettext/locale/archive/${PV}.tar.gz -> ${P}-git.tgz" + +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-macos" +SLOT="0" +IUSE="" + +ruby_add_bdepend "doc? ( dev-ruby/yard )" + +ruby_add_bdepend "test? ( dev-ruby/test-unit:2 dev-ruby/test-unit-rr )" + +all_ruby_prepare() { + sed -i -e '/notify/ s:^:#:' test/run-test.rb || die +} + +all_ruby_compile() { + all_fakegem_compile + + if use doc ; then + yard || die + fi +} + +each_ruby_test() { + ${RUBY} test/run-test.rb || die +} + +all_ruby_install() { + all_fakegem_install + + insinto /usr/share/doc/${PF} + doins -r samples || die +} |