summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2014-10-30 14:28:59 +0000
committerManuel Rüger <mrueg@gentoo.org>2014-10-30 14:28:59 +0000
commit1415e54aad37a3270383381293d6cd92df49819c (patch)
treefd0ff9e63e3adf2839edc70b805305ccbda51e26 /dev-ruby
parentStable for ppc64, wrt bug #508996 (diff)
downloadgentoo-2-1415e54aad37a3270383381293d6cd92df49819c.tar.gz
gentoo-2-1415e54aad37a3270383381293d6cd92df49819c.tar.bz2
gentoo-2-1415e54aad37a3270383381293d6cd92df49819c.zip
Cleanup old.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-ruby')
-rw-r--r--dev-ruby/minitest/ChangeLog5
-rw-r--r--dev-ruby/minitest/minitest-4.7.4.ebuild56
2 files changed, 4 insertions, 57 deletions
diff --git a/dev-ruby/minitest/ChangeLog b/dev-ruby/minitest/ChangeLog
index 6d6f265c40c9..5b767e72c4c1 100644
--- a/dev-ruby/minitest/ChangeLog
+++ b/dev-ruby/minitest/ChangeLog
@@ -1,6 +1,9 @@
# 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.167 2014/10/30 14:22:49 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v 1.168 2014/10/30 14:28:59 mrueg Exp $
+
+ 30 Oct 2014; Manuel Rüger <mrueg@gentoo.org> -minitest-4.7.4.ebuild:
+ Cleanup old.
30 Oct 2014; Agostino Sarubbo <ago@gentoo.org> minitest-4.7.5.ebuild:
Stable for ppc64, wrt bug #508996
diff --git a/dev-ruby/minitest/minitest-4.7.4.ebuild b/dev-ruby/minitest/minitest-4.7.4.ebuild
deleted file mode 100644
index 06771fc6333e..000000000000
--- a/dev-ruby/minitest/minitest-4.7.4.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# 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-4.7.4.ebuild,v 1.15 2014/08/05 16:00:39 mrueg Exp $
-
-EAPI=5
-USE_RUBY="ruby19 jruby"
-
-RUBY_FAKEGEM_TASK_DOC="docs"
-
-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="0"
-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"
-
-ruby_add_bdepend "
- doc? ( dev-ruby/hoe dev-ruby/rdoc )"
-
-each_ruby_prepare() {
- case ${RUBY} in
- *jruby)
- # Remove failing tests. Upstream claims that these are all
- # bugs in jruby. By removing the failing tests we can at
- # least run the remainder. See bug 321055 for details.
- rm -f test/minitest/test_minitest_unit.rb || die
- # Also add minitest_mock since there are jruby-specific failures.
- rm -f test/minitest/test_minitest_mock.rb || die
-
- # Our jruby throws a slightly different error
- sed -i -e 's/not :xxx/not \\"xxx\\"/' test/minitest/test_minitest_spec.rb || die
- ;;
- *)
- ;;
- esac
-}
-
-each_ruby_test() {
- case ${RUBY} in
- *jruby)
- # JRuby 1.6.x has threading bugs that are triggered by
- # minitests 4's new parallel test support. Should be fixed
- # in JRuby 1.7.
- N=1 ${RUBY} -Ilib:bin:test:. -S testrb test || die
- ;;
- *)
- ${RUBY} -Ilib:bin:test:. -S testrb test || die
- ;;
- esac
-}