blob: c6f673eacd24ccd87ce772057973c83326ceaf8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
USE_RUBY="ruby25 ruby26 ruby27"
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
RUBY_FAKEGEM_RECIPE_DOC="none"
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
inherit ruby-fakegem
DESCRIPTION="A distributed application deployment system"
HOMEPAGE="https://capistranorb.com/"
LICENSE="MIT"
SLOT="3"
KEYWORDS="amd64"
IUSE=""
ruby_add_rdepend "
>=dev-ruby/airbrussh-1.0.0
>=dev-ruby/sshkit-1.9:0
>=dev-ruby/rake-10.0.0
dev-ruby/i18n:*"
ruby_add_bdepend "
test? ( dev-ruby/mocha )"
all_ruby_prepare() {
# Avoid specs that depend on capistrano already being installed
rm -f spec/lib/capistrano/doctor/gems_doctor_spec.rb || die
# Avoid specs that require a TTY
sed -i -e '/asking for a variable/,/^ end/ s:^:#:' spec/integration/dsl_spec.rb || die
rm -f spec/lib/capistrano/configuration/question_spec.rb || die
}
|