You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-ruby/airbrussh/airbrussh-1.3.0.ebuild

35 lines
901 B

# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
USE_RUBY="ruby23 ruby24 ruby25"
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
RUBY_FAKEGEM_BINWRAP=""
inherit ruby-fakegem
DESCRIPTION="A replacement log formatter for SSHKit"
HOMEPAGE="https://github.com/mattbrictson/airbrussh"
SRC_URI="https://github.com/mattbrictson/airbrussh/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="1"
KEYWORDS="~amd64"
IUSE=""
# Tests appear to be incompatible with recent minitest and mocha leading to errors on the use of stubs.
RESTRICT="test"
ruby_add_rdepend ">dev-ruby/sshkit-1.7.0"
ruby_add_bdepend "test? ( dev-ruby/mocha )"
all_ruby_prepare() {
rm -f test/support/minitest_reporters.rb || die
# Avoid a test poluting the environment
sed -i -e '/test_color_is_can_be_forced_via_env/,/^ end/ s:^:#:' test/airbrussh/console_test.rb || die
}