diff options
author | Hans de Graaff <graaff@gentoo.org> | 2016-02-14 20:42:42 +0100 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2016-02-14 20:43:10 +0100 |
commit | 9e6bb51191179ede39e174e3007b077818a47ec3 (patch) | |
tree | 46173a386233cfe22383b5b5cc8ead4c0926fb21 /dev-ruby/ruby-progressbar/ruby-progressbar-1.7.5.ebuild | |
parent | www-client/firefox - bump esr and latest testing for security bug (diff) | |
download | gentoo-9e6bb51191179ede39e174e3007b077818a47ec3.tar.gz gentoo-9e6bb51191179ede39e174e3007b077818a47ec3.tar.bz2 gentoo-9e6bb51191179ede39e174e3007b077818a47ec3.zip |
dev-ruby/ruby-progressbar: add 1.7.5
Drop hppa, ppc, ppc64, x86, prefix keywords due to new
dev-ruby/rspectacular test dependency, bug 574738
Package-Manager: portage-2.2.26
Diffstat (limited to 'dev-ruby/ruby-progressbar/ruby-progressbar-1.7.5.ebuild')
-rw-r--r-- | dev-ruby/ruby-progressbar/ruby-progressbar-1.7.5.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/dev-ruby/ruby-progressbar/ruby-progressbar-1.7.5.ebuild b/dev-ruby/ruby-progressbar/ruby-progressbar-1.7.5.ebuild new file mode 100644 index 000000000000..95e83ef060fb --- /dev/null +++ b/dev-ruby/ruby-progressbar/ruby-progressbar-1.7.5.ebuild @@ -0,0 +1,42 @@ +# 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 +} |