2014-04-08 13:20:57 +04:00
|
|
|
# Copyright 1999-2014 Gentoo Foundation
|
2013-11-26 12:24:17 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-11 00:17:55 +03:00
|
|
|
# $Id$
|
2013-11-26 12:24:17 +04:00
|
|
|
|
|
|
|
EAPI=5
|
2014-10-13 00:22:27 +04:00
|
|
|
USE_RUBY="ruby19 ruby20 ruby21"
|
2013-11-26 12:24:17 +04:00
|
|
|
|
|
|
|
RUBY_FAKEGEM_DOCDIR="doc"
|
|
|
|
RUBY_FAKEGEM_EXTRADOC="CHANGES.txt README.rdoc"
|
|
|
|
|
|
|
|
RUBY_FAKEGEM_TASK_TEST="none"
|
|
|
|
|
|
|
|
inherit ruby-fakegem
|
|
|
|
|
2014-08-06 17:12:35 +04:00
|
|
|
DESCRIPTION="A library for controlling multiple Net::SSH connections via a single interface"
|
2013-11-26 12:24:17 +04:00
|
|
|
HOMEPAGE="http://net-ssh.rubyforge.org/multi"
|
|
|
|
SRC_URI="https://github.com/net-ssh/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="2"
|
2013-12-23 11:58:18 +04:00
|
|
|
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
|
2013-11-26 12:24:17 +04:00
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
ruby_add_rdepend ">=dev-ruby/net-ssh-2.6.5
|
|
|
|
>=dev-ruby/net-ssh-gateway-1.2.0"
|
|
|
|
|
2014-10-13 00:22:27 +04:00
|
|
|
ruby_add_bdepend "test? ( <dev-ruby/mocha-1 )"
|
|
|
|
|
|
|
|
all_ruby_prepare() {
|
|
|
|
sed -i -e "1igem 'mocha', '~>0.10'" test/common.rb || die
|
|
|
|
}
|
|
|
|
|
2013-11-26 12:24:17 +04:00
|
|
|
each_ruby_test() {
|
|
|
|
${RUBY} -Ilib:test test/test_all.rb || die
|
|
|
|
}
|