diff options
author | Hans de Graaff <graaff@gentoo.org> | 2012-01-23 06:44:00 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2012-01-23 06:44:00 +0000 |
commit | 1cf0382743f7574b6c8a1125e4a6f45893b9bd3b (patch) | |
tree | df93a7ca903b30096b057feb692666ddd0de2193 /dev-ruby | |
parent | Drop ruby19 to create a stable candidate. (diff) | |
download | gentoo-2-1cf0382743f7574b6c8a1125e4a6f45893b9bd3b.tar.gz gentoo-2-1cf0382743f7574b6c8a1125e4a6f45893b9bd3b.tar.bz2 gentoo-2-1cf0382743f7574b6c8a1125e4a6f45893b9bd3b.zip |
Version bump.
(Portage version: 2.1.10.41/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/mocha/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/mocha/mocha-0.10.3.ebuild | 48 |
2 files changed, 54 insertions, 1 deletions
diff --git a/dev-ruby/mocha/ChangeLog b/dev-ruby/mocha/ChangeLog index fe61526b08cf..99153846b8a3 100644 --- a/dev-ruby/mocha/ChangeLog +++ b/dev-ruby/mocha/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/mocha # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mocha/ChangeLog,v 1.43 2012/01/23 06:38:08 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mocha/ChangeLog,v 1.44 2012/01/23 06:44:00 graaff Exp $ + +*mocha-0.10.3 (23 Jan 2012) + + 23 Jan 2012; Hans de Graaff <graaff@gentoo.org> +mocha-0.10.3.ebuild: + Version bump. 23 Jan 2012; Hans de Graaff <graaff@gentoo.org> mocha-0.9.12.ebuild: Drop ruby19 to create a stable candidate. diff --git a/dev-ruby/mocha/mocha-0.10.3.ebuild b/dev-ruby/mocha/mocha-0.10.3.ebuild new file mode 100644 index 000000000000..89ebb3c20a42 --- /dev/null +++ b/dev-ruby/mocha/mocha-0.10.3.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mocha/mocha-0.10.3.ebuild,v 1.1 2012/01/23 06:44:00 graaff Exp $ + +EAPI=2 +USE_RUBY="ruby18 ree18 ruby19 jruby" + +RUBY_FAKEGEM_TASK_TEST="test:units" + +RUBY_FAKEGEM_TASK_DOC="rdoc" +RUBY_FAKEGEM_DOCDIR="doc" +RUBY_FAKEGEM_EXTRADOC="README.rdoc RELEASE.rdoc" + +RUBY_FAKEGEM_EXTRAINSTALL="init.rb" + +inherit ruby-fakegem + +DESCRIPTION="A Ruby library for mocking and stubbing using a syntax like that of JMock, and SchMock" +HOMEPAGE="http://mocha.rubyforge.org/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~hppa" +IUSE="" + +ruby_add_bdepend " + doc? ( dev-ruby/coderay )" + +ruby_add_rdepend "dev-ruby/metaclass" #metaclass ~> 0.0.1 + +all_ruby_prepare() { + sed -i -e '/[Bb]undler/ s:^:#:' -e '1iload "lib/mocha/version.rb"' Rakefile || die +} + +all_ruby_compile() { + all_fakegem_compile + + if use doc; then + rake examples || die + fi +} + +all_ruby_install() { + all_fakegem_install + + docinto examples + dodoc examples/*.rb || die +} |