summaryrefslogtreecommitdiff
blob: 11c5fa18fe0b448bfe7cc0e981cedc246b2752a8 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8
USE_RUBY="ruby26"
RUBY_FAKEGEM_RECIPE_TEST="rspec3"

RUBY_FAKEGEM_EXTRAINSTALL="assets"

inherit bash-completion-r1 ruby-fakegem

DESCRIPTION="Travis CI Client (CLI and Ruby library)"
HOMEPAGE="https://github.com/travis-ci/travis.rb"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
#RESTRICT="test"

DEPEND+="test? ( dev-vcs/git )"
RDEPEND+="dev-vcs/git"

ruby_add_bdepend "
	test? ( >dev-ruby/rack-test-0.6 dev-ruby/rspec-its )
	>dev-ruby/sinatra-1.3
"

ruby_add_rdepend "
	dev-ruby/faraday:1
	dev-ruby/faraday_middleware:1
	>=dev-ruby/gh-0.17
	dev-ruby/highline:2
	>=dev-ruby/json-2.3:2
	>=dev-ruby/launchy-2.1
	>dev-ruby/pusher-client-0.4
"

all_ruby_prepare() {
	if use test ; then
		git init --quiet . || die
		git remote add origin "${HOMEPAGE}" || die
		touch .travis.yml || die
	fi

	# Remove failing specs where $params keys are reset somewhere.
	rm -f spec/cli/{cancel,restart}_spec.rb || die

	sed -i -e 's/json_pure/json/' ../metadata || die
}

all_ruby_install() {
	all_fakegem_install

	newbashcomp "assets/travis.sh" "travis"
}