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: Sat, 13 Apr 2019 06:34:10
Message-Id: 1555137210.d13a20c0e48cff479edaf5ef5d81c2fc705420b8.graaff@gentoo
1 commit: d13a20c0e48cff479edaf5ef5d81c2fc705420b8
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 12 15:02:27 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 13 06:33:30 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d13a20c0
7
8 dev-ruby/travis: cleanup
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 dev-ruby/travis/Manifest | 1 -
14 dev-ruby/travis/travis-1.8.8.ebuild | 57 -------------------------------------
15 dev-ruby/travis/travis-1.8.9.ebuild | 57 -------------------------------------
16 3 files changed, 115 deletions(-)
17
18 diff --git a/dev-ruby/travis/Manifest b/dev-ruby/travis/Manifest
19 index a3e6d10d054..91fa2e01718 100644
20 --- a/dev-ruby/travis/Manifest
21 +++ b/dev-ruby/travis/Manifest
22 @@ -1,2 +1 @@
23 -DIST travis-1.8.8.gem 192512 BLAKE2B 6671b4c8b2e3ea0b374f523e8089fd8f0bb60b0d03e0ba387138c7df926565dfe4bfa7e04926d3dfe0514a9ad6d660ba4c182c947dd605ef30f73275730cddbc SHA512 f4fca2278de7263a0f4889c64dd6f78927355eece73cc600e704d0bebba2efaf86f78b8d608c0859d83c33f04b7fde47f33a4b6307d7799ff312705b40c7d563
24 DIST travis-1.8.9.gem 193536 BLAKE2B b889127e07b2126ef193d64361059d514db4df4e3dc70fd30b55dac3fe67624df20d156aa6d9842d6bb766788626358ab38d7e6a59455c91a80925628e30764b SHA512 fce5dfb8071629de172b8a91fad15b1d6fcc50af1ab1a41eaa1e5eb91042b90fd58e1be24779fb02972077af743ebd65183b2dff42ee47d48818f7ed2755980a
25
26 diff --git a/dev-ruby/travis/travis-1.8.8.ebuild b/dev-ruby/travis/travis-1.8.8.ebuild
27 deleted file mode 100644
28 index 4e300eecdaf..00000000000
29 --- a/dev-ruby/travis/travis-1.8.8.ebuild
30 +++ /dev/null
31 @@ -1,57 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -USE_RUBY="ruby23 ruby24"
37 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
38 -RUBY_FAKEGEM_RECIPE_TEST="rspec"
39 -
40 -RUBY_FAKEGEM_EXTRAINSTALL="assets"
41 -
42 -inherit bash-completion-r1 ruby-fakegem
43 -
44 -DESCRIPTION="Travis CI Client (CLI and Ruby library)"
45 -HOMEPAGE="https://github.com/travis-ci/travis.rb"
46 -
47 -LICENSE="MIT"
48 -SLOT="0"
49 -KEYWORDS="~amd64"
50 -IUSE=""
51 -#RESTRICT="test"
52 -
53 -DEPEND+="test? ( dev-vcs/git )"
54 -RDEPEND+="dev-vcs/git"
55 -
56 -ruby_add_bdepend "
57 - test? ( >dev-ruby/rack-test-0.6 )
58 - >dev-ruby/sinatra-1.3
59 -"
60 -
61 -ruby_add_rdepend "
62 - dev-ruby/backports
63 - >dev-ruby/faraday-0.9
64 - >=dev-ruby/faraday_middleware-0.9.1
65 - >dev-ruby/gh-0.13
66 - >dev-ruby/highline-1.6
67 - >dev-ruby/launchy-2.1
68 - >dev-ruby/pusher-client-0.4
69 - dev-ruby/typhoeus:0
70 -"
71 -
72 -all_ruby_prepare() {
73 - if use test ; then
74 - git init --quiet . || die
75 - git remote add origin "${HOMEPAGE}" || die
76 - touch .travis.yml || die
77 - fi
78 -
79 - # Remove failing spec where cause is not fully clear.
80 - # May be related to highline compatibility issues.
81 - rm spec/cli/login_spec.rb || die
82 -}
83 -
84 -all_ruby_install() {
85 - all_fakegem_install
86 -
87 - newbashcomp "assets/travis.sh" "travis"
88 -}
89
90 diff --git a/dev-ruby/travis/travis-1.8.9.ebuild b/dev-ruby/travis/travis-1.8.9.ebuild
91 deleted file mode 100644
92 index 9e8cc0ce88e..00000000000
93 --- a/dev-ruby/travis/travis-1.8.9.ebuild
94 +++ /dev/null
95 @@ -1,57 +0,0 @@
96 -# Copyright 1999-2018 Gentoo Foundation
97 -# Distributed under the terms of the GNU General Public License v2
98 -
99 -EAPI=6
100 -USE_RUBY="ruby23 ruby24"
101 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
102 -RUBY_FAKEGEM_RECIPE_TEST="rspec"
103 -
104 -RUBY_FAKEGEM_EXTRAINSTALL="assets"
105 -
106 -inherit bash-completion-r1 ruby-fakegem
107 -
108 -DESCRIPTION="Travis CI Client (CLI and Ruby library)"
109 -HOMEPAGE="https://github.com/travis-ci/travis.rb"
110 -
111 -LICENSE="MIT"
112 -SLOT="0"
113 -KEYWORDS="~amd64"
114 -IUSE=""
115 -#RESTRICT="test"
116 -
117 -DEPEND+="test? ( dev-vcs/git )"
118 -RDEPEND+="dev-vcs/git"
119 -
120 -ruby_add_bdepend "
121 - test? ( >dev-ruby/rack-test-0.6 )
122 - >dev-ruby/sinatra-1.3
123 -"
124 -
125 -ruby_add_rdepend "
126 - dev-ruby/backports
127 - >dev-ruby/faraday-0.9
128 - >=dev-ruby/faraday_middleware-0.9.1
129 - >dev-ruby/gh-0.13
130 - >=dev-ruby/highline-1.6:0
131 - >dev-ruby/launchy-2.1
132 - >dev-ruby/pusher-client-0.4
133 - dev-ruby/typhoeus:0
134 -"
135 -
136 -all_ruby_prepare() {
137 - if use test ; then
138 - git init --quiet . || die
139 - git remote add origin "${HOMEPAGE}" || die
140 - touch .travis.yml || die
141 - fi
142 -
143 - # Remove failing spec where cause is not fully clear.
144 - # May be related to highline compatibility issues.
145 - rm spec/cli/login_spec.rb || die
146 -}
147 -
148 -all_ruby_install() {
149 - all_fakegem_install
150 -
151 - newbashcomp "assets/travis.sh" "travis"
152 -}