summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2014-03-28 15:33:36 +0000
committerManuel Rüger <mrueg@gentoo.org>2014-03-28 15:33:36 +0000
commitf0916dd8511b11d2c4224f73803bf84ebf49b512 (patch)
tree56ef781a98674fdbcda03f3d60cbbc24cd7b2369 /dev-ruby/toml
parentCleanup old. (diff)
downloadgentoo-2-f0916dd8511b11d2c4224f73803bf84ebf49b512.tar.gz
gentoo-2-f0916dd8511b11d2c4224f73803bf84ebf49b512.tar.bz2
gentoo-2-f0916dd8511b11d2c4224f73803bf84ebf49b512.zip
Cleanup old.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-ruby/toml')
-rw-r--r--dev-ruby/toml/ChangeLog5
-rw-r--r--dev-ruby/toml/toml-0.1.0.ebuild38
2 files changed, 4 insertions, 39 deletions
diff --git a/dev-ruby/toml/ChangeLog b/dev-ruby/toml/ChangeLog
index fa6fbdaecc50..8fa08937a53c 100644
--- a/dev-ruby/toml/ChangeLog
+++ b/dev-ruby/toml/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/toml
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/toml/ChangeLog,v 1.2 2014/02/20 22:31:09 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/toml/ChangeLog,v 1.3 2014/03/28 15:33:36 mrueg Exp $
+
+ 28 Mar 2014; Manuel Rüger <mrueg@gentoo.org> -toml-0.1.0.ebuild:
+ Cleanup old.
*toml-0.1.1 (20 Feb 2014)
diff --git a/dev-ruby/toml/toml-0.1.0.ebuild b/dev-ruby/toml/toml-0.1.0.ebuild
deleted file mode 100644
index bdffc27a703c..000000000000
--- a/dev-ruby/toml/toml-0.1.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/toml/toml-0.1.0.ebuild,v 1.1 2013/12/13 03:31:29 mrueg Exp $
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20"
-
-RUBY_FAKEGEM_EXTRADOC="README.md"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A sane configuration format"
-HOMEPAGE="https://github.com/jm/toml"
-
-IUSE="test"
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-ruby_add_bdepend "test? ( dev-ruby/minitest
- dev-ruby/multi_json )"
-
-ruby_add_rdepend "dev-ruby/parslet"
-
-all_ruby_prepare() {
- sed -i -e "s/, '~> 1.7.8'//" Gemfile || die
- sed -i -e "/simplecov/d" -e "/[Bb]undle/d" Rakefile Gemfile || die
- sed -i -e "/bundler/d" test/test_*.rb || die
-}
-
-each_ruby_test() {
- for i in test/test_*
- do
- ${RUBY} -Ilib:test ${i} || die
- done
-}