Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/travis/
Date: Fri, 26 Nov 2021 08:17:14
Message-Id: 1637914618.09305f4a82b83137633c10a4cfcbe77c1f90064d.graaff@gentoo
1 commit: 09305f4a82b83137633c10a4cfcbe77c1f90064d
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 26 08:16:27 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 26 08:16:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09305f4a
7
8 dev-ruby/travis: cleanup
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/travis/travis-1.10.0.ebuild | 61 ------------------------------------
14 1 file changed, 61 deletions(-)
15
16 diff --git a/dev-ruby/travis/travis-1.10.0.ebuild b/dev-ruby/travis/travis-1.10.0.ebuild
17 deleted file mode 100644
18 index 754de9bbe9ec..000000000000
19 --- a/dev-ruby/travis/travis-1.10.0.ebuild
20 +++ /dev/null
21 @@ -1,61 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -USE_RUBY="ruby24 ruby25 ruby26"
27 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
28 -
29 -RUBY_FAKEGEM_EXTRAINSTALL="assets"
30 -
31 -inherit bash-completion-r1 ruby-fakegem
32 -
33 -DESCRIPTION="Travis CI Client (CLI and Ruby library)"
34 -HOMEPAGE="https://github.com/travis-ci/travis.rb"
35 -
36 -LICENSE="MIT"
37 -SLOT="0"
38 -KEYWORDS="~amd64"
39 -IUSE=""
40 -#RESTRICT="test"
41 -
42 -DEPEND+="test? ( dev-vcs/git )"
43 -RDEPEND+="dev-vcs/git"
44 -
45 -ruby_add_bdepend "
46 - test? ( >dev-ruby/rack-test-0.6 dev-ruby/rspec-its )
47 - >dev-ruby/sinatra-1.3
48 -"
49 -
50 -ruby_add_rdepend "
51 - dev-ruby/faraday:1
52 - dev-ruby/faraday_middleware:1
53 - >=dev-ruby/gh-0.17
54 - dev-ruby/highline:2
55 - >=dev-ruby/json-2.3:2
56 - >=dev-ruby/launchy-2.1
57 - >dev-ruby/pusher-client-0.4
58 - dev-ruby/typhoeus:0
59 -"
60 -
61 -all_ruby_prepare() {
62 - if use test ; then
63 - git init --quiet . || die
64 - git remote add origin "${HOMEPAGE}" || die
65 - touch .travis.yml || die
66 - fi
67 -
68 - # Remove failing spec where cause is not fully clear.
69 - # May be related to highline compatibility issues.
70 - rm spec/cli/login_spec.rb || die
71 -
72 - # Remove failing specs where $params keys are reset somewhere.
73 - rm -f spec/cli/{cancel,restart}_spec.rb || die
74 -
75 - sed -i -e 's/json_pure/json/' ../metadata || die
76 -}
77 -
78 -all_ruby_install() {
79 - all_fakegem_install
80 -
81 - newbashcomp "assets/travis.sh" "travis"
82 -}