diff options
author | Hans de Graaff <graaff@gentoo.org> | 2010-02-28 09:17:24 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2010-02-28 09:17:24 +0000 |
commit | 8d84f5a3dc8224ae44daad90691b57e0e2b17269 (patch) | |
tree | 26957bf59bb753ea23aa719aeaa2d650e565b30e /dev-ruby | |
parent | x86 stable wrt bug #305181 (diff) | |
download | gentoo-2-8d84f5a3dc8224ae44daad90691b57e0e2b17269.tar.gz gentoo-2-8d84f5a3dc8224ae44daad90691b57e0e2b17269.tar.bz2 gentoo-2-8d84f5a3dc8224ae44daad90691b57e0e2b17269.zip |
Remove old version.
(Portage version: 2.1.7.16/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/sparklines/ChangeLog | 6 | ||||
-rw-r--r-- | dev-ruby/sparklines/sparklines-0.5.2-r1.ebuild | 55 |
2 files changed, 5 insertions, 56 deletions
diff --git a/dev-ruby/sparklines/ChangeLog b/dev-ruby/sparklines/ChangeLog index c4641a6bc739..52a91e62cc03 100644 --- a/dev-ruby/sparklines/ChangeLog +++ b/dev-ruby/sparklines/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-ruby/sparklines # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sparklines/ChangeLog,v 1.6 2010/01/12 19:06:11 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sparklines/ChangeLog,v 1.7 2010/02/28 09:17:24 graaff Exp $ + + 28 Feb 2010; Hans de Graaff <graaff@gentoo.org> + -sparklines-0.5.2-r1.ebuild: + Remove old version. *sparklines-0.5.2-r2 (12 Jan 2010) diff --git a/dev-ruby/sparklines/sparklines-0.5.2-r1.ebuild b/dev-ruby/sparklines/sparklines-0.5.2-r1.ebuild deleted file mode 100644 index 35541b8f18b6..000000000000 --- a/dev-ruby/sparklines/sparklines-0.5.2-r1.ebuild +++ /dev/null @@ -1,55 +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/sparklines/sparklines-0.5.2-r1.ebuild,v 1.1 2009/06/21 19:59:35 graaff Exp $ - -inherit ruby - -DESCRIPTION="Create sparklines, small graphs to be used inline in texts." -HOMEPAGE="http://sparklines.rubyforge.org/" -SRC_URI="mirror://rubyforge/${PN}/${P}.tgz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc test" - -RDEPEND="dev-ruby/rmagick" -DEPEND="doc? ( dev-ruby/rake - dev-ruby/hoe ) - test? ( dev-ruby/rake - dev-ruby/hoe - dev-ruby/tidy_table - dev-ruby/dust )" - -USE_RUBY="ruby18" - -src_compile() { - if use doc; then - rake rerocs || die "rake rerdoc failed" - fi -} - -src_test() { - for ruby in $USE_RUBY; do - [[ -n `type -p $ruby` ]] || continue - $ruby $(type -p rake) test || die "testsuite failed" - done -} - -src_install() { - pushd lib - doruby -r * || die "doruby failed" - popd - - if use doc; then - dohtml -r doc/* || die "dohtml failed" - fi - - dodoc History.txt README.txt || die "dodoc failed" - - # Note: this only works with 1.8 so if you need to make it work - # with 1.9 you better wait for ruby-fakegem.eclass. - insinto $(${RUBY} -r rbconfig -e 'print Config::CONFIG["sitedir"]')/../gems/1.8/specifications - sed -e "s:@VERSION@:${PV}:" "${FILESDIR}"/${PN}.gemspec > "${T}"/${P}.gemspec - doins "${T}"/${P}.gemspec || die "Unable to install fake gemspec" -} |