34 lines
1 KiB
Bash
34 lines
1 KiB
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/crack/crack-0.4.2.ebuild,v 1.1 2014/02/20 06:52:01 graaff Exp $
|
|
|
|
EAPI=5
|
|
|
|
USE_RUBY="ruby18 ruby19 ruby20 jruby"
|
|
|
|
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 ~amd64-linux ~x64-macos ~x64-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
|
|
}
|