summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2017-08-27 07:58:30 +0200
committerHans de Graaff <graaff@gentoo.org>2017-08-27 08:17:21 +0200
commitde9f5d7a841f7658ebb7f037571e368446ed62b8 (patch)
tree92b889498e8419cbb76fa377eae6dedcaca79014 /dev-ruby/crack
parentdev-ruby/dep_selector: cleanup (diff)
downloadgentoo-de9f5d7a841f7658ebb7f037571e368446ed62b8.tar.gz
gentoo-de9f5d7a841f7658ebb7f037571e368446ed62b8.tar.bz2
gentoo-de9f5d7a841f7658ebb7f037571e368446ed62b8.zip
dev-ruby/crack: cleanup
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'dev-ruby/crack')
-rw-r--r--dev-ruby/crack/crack-0.4.3.ebuild33
1 files changed, 0 insertions, 33 deletions
diff --git a/dev-ruby/crack/crack-0.4.3.ebuild b/dev-ruby/crack/crack-0.4.3.ebuild
deleted file mode 100644
index 385706a50d25..000000000000
--- a/dev-ruby/crack/crack-0.4.3.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-USE_RUBY="ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md History"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Really simple JSON and XML parsing, ripped from Merb and Rails"
-HOMEPAGE="https://github.com/jnunemaker/crack"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-ruby_add_bdepend "test? ( dev-ruby/minitest )"
-ruby_add_rdepend ">=dev-ruby/safe_yaml-1.0.0"
-
-each_ruby_prepare() {
- # Remove tests which fail when run by portage but pass when run by hand
- sed -i -e '/{"regex": \/foo.*\/}/d' test/json_test.rb || die
- sed -i -e '/{"regex": \/foo.*\/i}/d' test/json_test.rb || die
- sed -i -e '/{"regex": \/foo.*\/mix}/d' test/json_test.rb || die
-}
-
-each_ruby_test() {
- ${RUBY} -Itest -Ilib -e 'Dir["test/*_test.rb"].each { |f| load f }' || die
-}