summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-ruby/test-unit')
-rw-r--r--dev-ruby/test-unit/ChangeLog5
-rw-r--r--dev-ruby/test-unit/test-unit-2.0.2.ebuild49
2 files changed, 4 insertions, 50 deletions
diff --git a/dev-ruby/test-unit/ChangeLog b/dev-ruby/test-unit/ChangeLog
index baa61cc60167..a1a3c2606708 100644
--- a/dev-ruby/test-unit/ChangeLog
+++ b/dev-ruby/test-unit/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/test-unit
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/test-unit/ChangeLog,v 1.4 2009/03/12 08:09:32 a3li Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/test-unit/ChangeLog,v 1.5 2009/04/14 17:53:39 graaff Exp $
+
+ 14 Apr 2009; Hans de Graaff <graaff@gentoo.org> -test-unit-2.0.2.ebuild:
+ Remove old version.
12 Mar 2009; Alex Legler <a3li@gentoo.org> metadata.xml:
Remove flameeyes from metadata, as per his request.
diff --git a/dev-ruby/test-unit/test-unit-2.0.2.ebuild b/dev-ruby/test-unit/test-unit-2.0.2.ebuild
deleted file mode 100644
index 88e0d8d23bc1..000000000000
--- a/dev-ruby/test-unit/test-unit-2.0.2.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/test-unit/test-unit-2.0.2.ebuild,v 1.3 2009/03/01 12:43:57 a3li Exp $
-
-inherit ruby
-
-DESCRIPTION="An improved version of the Test::Unit framework from Ruby 1.8"
-HOMEPAGE="http://test-unit.rubyforge.org/"
-SRC_URI="mirror://rubyforge/${PN}/${P}.tgz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-DEPEND="
- doc? ( dev-ruby/rake
- dev-ruby/hoe )"
-# test? ( dev-ruby/rake
-# dev-ruby/hoe
-# dev-ruby/zentest )"
-RDEPEND=""
-
-USE_RUBY="any"
-
-src_compile() {
- if use doc; then
- rake doc || die "rake doc failed"
- fi
-}
-
-src_test() {
- # the rake audit using dev-ruby/zentest currently fails, and we
- # just need to call the testsuite directly.
- # rake audit || die "rake audit failed"
-
- ${RUBY} test/run-test.rb || die "testsuite failed"
-}
-
-src_install() {
- cd "${S}"/lib
- doruby -r * || die "doruby failed"
-
- if use doc; then
- dohtml -r "${S}"/doc/* || die "dohtml failed"
- fi
-
- dodoc "${S}"/{TODO,README.txt,History.txt} || die "dodoc failed"
-}