summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2010-10-29 15:36:10 +0000
committerHans de Graaff <graaff@gentoo.org>2010-10-29 15:36:10 +0000
commitedd1da082dcbaa686ece77b34016876484fc76a4 (patch)
tree5a300042c2d095a039912092066eb1fe1fa9e3f2 /dev-ruby/thor
parentVersion bump. (diff)
downloadhistorical-edd1da082dcbaa686ece77b34016876484fc76a4.tar.gz
historical-edd1da082dcbaa686ece77b34016876484fc76a4.tar.bz2
historical-edd1da082dcbaa686ece77b34016876484fc76a4.zip
Remove old version.
Package-Manager: portage-2.1.8.3/cvs/Linux x86_64
Diffstat (limited to 'dev-ruby/thor')
-rw-r--r--dev-ruby/thor/ChangeLog5
-rw-r--r--dev-ruby/thor/thor-0.14.0.ebuild46
2 files changed, 4 insertions, 47 deletions
diff --git a/dev-ruby/thor/ChangeLog b/dev-ruby/thor/ChangeLog
index 77645cddb587..aa652895973e 100644
--- a/dev-ruby/thor/ChangeLog
+++ b/dev-ruby/thor/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/thor
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/thor/ChangeLog,v 1.3 2010/10/20 11:06:35 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/thor/ChangeLog,v 1.4 2010/10/29 15:36:10 graaff Exp $
+
+ 29 Oct 2010; Hans de Graaff <graaff@gentoo.org> -thor-0.14.0.ebuild:
+ Remove old version.
20 Oct 2010; Diego E. Pettenò <flameeyes@gentoo.org> thor-0.14.0.ebuild,
thor-0.14.2.ebuild:
diff --git a/dev-ruby/thor/thor-0.14.0.ebuild b/dev-ruby/thor/thor-0.14.0.ebuild
deleted file mode 100644
index 1a3fa7929766..000000000000
--- a/dev-ruby/thor/thor-0.14.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/thor/thor-0.14.0.ebuild,v 1.2 2010/10/20 11:06:35 flameeyes Exp $
-
-EAPI=2
-USE_RUBY="ruby18 ree18 ruby19"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_TASK_TEST=""
-RUBY_FAKEGEM_DOCDIR="rdoc"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc README.md"
-RUBY_FAKEGEM_BINWRAP="thor"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A scripting framework that replaces rake and sake"
-HOMEPAGE="http://github.com/wycats/thor"
-
-SRC_URI="http://github.com/wycats/${PN}/tarball/v${PV} -> ${PN}-git-${PV}.tgz"
-S="${WORKDIR}/wycats-${PN}-4647c98"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-ruby_add_bdepend "
- test? ( dev-ruby/fakeweb )
- doc? ( dev-ruby/rdoc )"
-
-all_ruby_prepare() {
- einfo $(pwd)
- # Having VERSION in the docs makes the rdoc generation fail.
- sed -i -e '/EXTRA_RDOC_FILES/s/"VERSION", //' Thorfile || die
-}
-
-all_ruby_compile() {
- einfo $(pwd)
- if use doc; then
- ruby -Ilib bin/thor rdoc || die "RDoc generation failed"
- fi
-}
-
-each_ruby_test() {
- ${RUBY} -Ilib/ bin/thor spec || die "Tests for ${RUBY} failed"
-}