# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec/rspec-1.3.2.ebuild,v 1.6 2013/06/10 20:26:35 jer Exp $ EAPI=2 USE_RUBY="ruby18 ree18 ruby19 jruby" RUBY_FAKEGEM_TASK_TEST="spec" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc TODO.txt Ruby1.9.rdoc Upgrade.rdoc" RUBY_FAKEGEM_BINWRAP="spec" RUBY_FAKEGEM_GEMSPEC="rspec.gemspec" inherit ruby-fakegem DESCRIPTION="A Behaviour Driven Development (BDD) framework for Ruby" HOMEPAGE="http://rspec.rubyforge.org/" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" IUSE="" # it's actually optional, but tests fail if it's not installed and # some other package might fail tests, so require it anyway. ruby_add_rdepend ">=dev-ruby/diff-lcs-1.1.2" RDEPEND="!=dev-ruby/hoe-2.0.0 dev-ruby/zentest >=dev-ruby/syntax-1.0 >=dev-ruby/fakefs-0.2.1 )" USE_RUBY="ruby19" ruby_add_bdepend "test? ( =dev-ruby/test-unit-1.2.3 )" # the testsuite skips over heckle for Ruby 1.9 so we only request it for 1.8 USE_RUBY="ruby18 ree18" \ ruby_add_bdepend "test? ( >=dev-ruby/heckle-1.4.3 )" all_ruby_prepare() { # Replace reference to /tmp to our temporary directory to avoid # sandbox-related failure. sed -i \ -e "s:/tmp:${T}:" \ spec/spec/runner/command_line_spec.rb || die # Avoid unneeded dependency on bundler sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die # Support ruby 1.9.3 cp spec/spec/runner/formatter/html_formatted-1.9.2.html spec/spec/runner/formatter/html_formatted-1.9.3.html || die cp spec/spec/runner/formatter/text_mate_formatted-1.9.2.html spec/spec/runner/formatter/text_mate_formatted-1.9.3.html || die } src_test() { chmod 0755 "${HOME}" || die "Failed to fix permissions on home" ruby-ng_src_test } each_ruby_test() { case ${RUBY} in *jruby) ewarn "Tests for JRuby are disabled because dev-ruby/fakefs does not currently support" ewarn "JRuby properly and it's needed to run the tests." ;; *) each_fakegem_test ;; esac }