mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
Drop hppa, ppc, ppc64, x86, prefix keywords due to new dev-ruby/rspectacular test dependency, bug 574738 Package-Manager: portage-2.2.26
43 lines
819 B
Bash
43 lines
819 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
USE_RUBY="ruby20 ruby21 ruby22"
|
|
|
|
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
|
|
RUBY_FAKEGEM_TASK_DOC=""
|
|
|
|
RUBY_FAKEGEM_EXTRADOC="README.md"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="A Text Progress Bar Library for Ruby"
|
|
HOMEPAGE="https://github.com/jfelchner/ruby-progressbar"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
IUSE="test"
|
|
|
|
ruby_add_bdepend "test? ( dev-ruby/rspectacular )"
|
|
|
|
all_ruby_prepare() {
|
|
sed -i -e '/warning_filter/ s:^:#:' \
|
|
spec/spec_helper.rb || die
|
|
}
|
|
|
|
each_ruby_test() {
|
|
case ${RUBY} in
|
|
*ruby20)
|
|
# Skip specs since rspectacular doesn't work with ruby 2.0:
|
|
# https://github.com/thekompanee/rspectacular/issues/4
|
|
;;
|
|
*)
|
|
RSPEC_VERSION=3 ruby-ng_rspec spec || die
|
|
;;
|
|
esac
|
|
}
|