diff options
author | Hans de Graaff <graaff@gentoo.org> | 2014-02-06 06:34:36 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2014-02-06 06:34:36 +0000 |
commit | a15543c891dc4af27c185176a9a4df5098ab317f (patch) | |
tree | 4a54d4901a11613d3105fab09bc6de4ef4951e5d /dev-ruby | |
parent | Remove old. (diff) | |
download | gentoo-2-a15543c891dc4af27c185176a9a4df5098ab317f.tar.gz gentoo-2-a15543c891dc4af27c185176a9a4df5098ab317f.tar.bz2 gentoo-2-a15543c891dc4af27c185176a9a4df5098ab317f.zip |
Version bump. Add ruby21. Drop dependency on dev-ruby/hoe.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/minitest/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/minitest/minitest-5.2.2.ebuild | 54 |
2 files changed, 60 insertions, 1 deletions
diff --git a/dev-ruby/minitest/ChangeLog b/dev-ruby/minitest/ChangeLog index e9c537a37771..358ee0773e48 100644 --- a/dev-ruby/minitest/ChangeLog +++ b/dev-ruby/minitest/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/minitest # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v 1.135 2014/02/06 06:09:46 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v 1.136 2014/02/06 06:34:36 graaff Exp $ + +*minitest-5.2.2 (06 Feb 2014) + + 06 Feb 2014; Hans de Graaff <graaff@gentoo.org> +minitest-5.2.2.ebuild: + Version bump. Add ruby21. Drop dependency on dev-ruby/hoe. 06 Feb 2014; Hans de Graaff <graaff@gentoo.org> -minitest-5.0.6.ebuild, -minitest-5.0.7.ebuild, -minitest-5.0.8.ebuild: diff --git a/dev-ruby/minitest/minitest-5.2.2.ebuild b/dev-ruby/minitest/minitest-5.2.2.ebuild new file mode 100644 index 000000000000..59ad073d95d2 --- /dev/null +++ b/dev-ruby/minitest/minitest-5.2.2.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/minitest-5.2.2.ebuild,v 1.1 2014/02/06 06:34:36 graaff Exp $ + +EAPI=5 +USE_RUBY="ruby18 ruby19 ruby20 ruby21 jruby" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" + +RUBY_FAKEGEM_DOCDIR="doc" +RUBY_FAKEGEM_EXTRADOC="History.txt Manifest.txt README.txt" + +inherit ruby-fakegem + +DESCRIPTION="minitest/unit is a small and fast replacement for ruby's huge and slow test/unit." +HOMEPAGE="https://github.com/seattlerb/minitest" + +LICENSE="MIT" +SLOT="5" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="doc test" + +each_ruby_prepare() { + case ${RUBY} in + *jruby) + # Make sure __jtrap is available in all threads. This should + # be fixed in jruby 1.7.x + sed -i -e '8i trap :INFO do ; end' lib/minitest/parallel.rb || die + + # Avoid failures. Most of these look like low-level jruby + # differences and it looks like these were not run properly + # in previous versions. + for t in test_return_mock_does_not_raise test_mock_args_does_not_raise test_stub_block test_stub_value ; do + local command="/${t}/,/^ end/ s:^:#:" + sed -i -e "${command}" test/minitest/test_minitest_mock.rb || die + done + for t in test_run_failing test_run_skip test_run_error test_run_skip_verbose test_run_error_teardown test_runnable_methods_random test_assert_throws_different test_to_s_error_in_test_and_teardown test_run_filtered_including_suite_name_string test_run_filtered_string_method_only test_run_filtered_including_suite_name ; do + command="/${t}/,/^ end/ s:^:#:" + sed -i -e "${command}" test/minitest/test_minitest_unit.rb || die + done + for t in test_name2 "needs to verify throw" ; do + command="/${t}/,/^ end/ s:^:#:" + sed -i -e "${command}" test/minitest/test_minitest_spec.rb || die + done + sed -i -e '/test_report_error/,/^ end/ s:^:#:' test/minitest/test_minitest_reporter.rb || die + ;; + esac +} + +each_ruby_test() { + for f in test/minitest/test_*.rb; do + ${RUBY} -Ilib:test ${f} || die "${f} tests failed" + done +} |