diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2019-02-16 15:48:55 -0800 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2019-02-16 15:51:33 -0800 |
commit | 2ff58ac4f782597c51d4ce07222c030f3dd38db3 (patch) | |
tree | 46b6a3f9627e8aca8ca61f9e5118225a4a11f877 /dev-ruby/travis | |
parent | dev-ruby/typhoeus: add ruby25 to slot 0 (diff) | |
download | gentoo-2ff58ac4f782597c51d4ce07222c030f3dd38db3.tar.gz gentoo-2ff58ac4f782597c51d4ce07222c030f3dd38db3.tar.bz2 gentoo-2ff58ac4f782597c51d4ce07222c030f3dd38db3.zip |
dev-ruby/travis: add ruby25
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'dev-ruby/travis')
-rw-r--r-- | dev-ruby/travis/travis-1.8.9-r1.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/dev-ruby/travis/travis-1.8.9-r1.ebuild b/dev-ruby/travis/travis-1.8.9-r1.ebuild new file mode 100644 index 000000000000..628e3462bf47 --- /dev/null +++ b/dev-ruby/travis/travis-1.8.9-r1.ebuild @@ -0,0 +1,57 @@ +# 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_RECIPE_TEST="rspec" + +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/sinatra-1.3 +" + +ruby_add_rdepend " + dev-ruby/backports + >dev-ruby/faraday-0.9 + >=dev-ruby/faraday_middleware-0.9.1 + >dev-ruby/gh-0.13 + >=dev-ruby/highline-1.6:0 + >dev-ruby/launchy-2.1 + >dev-ruby/pusher-client-0.4 + dev-ruby/typhoeus:0 +" + +all_ruby_prepare() { + if use test ; then + git init --quiet . || die + git remote add origin "${HOMEPAGE}" || die + touch .travis.yml || die + fi + + # Remove failing spec where cause is not fully clear. + # May be related to highline compatibility issues. + rm spec/cli/login_spec.rb || die +} + +all_ruby_install() { + all_fakegem_install + + newbashcomp "assets/travis.sh" "travis" +} |