Gentoo Archives: gentoo-commits

From: "Robin H. Johnson" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/typhoeus/
Date: Sat, 16 Feb 2019 23:52:12
Message-Id: 1550361091.71f3f922a9829c223471d70168163df37fd802e8.robbat2@gentoo
1 commit: 71f3f922a9829c223471d70168163df37fd802e8
2 Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 16 23:36:51 2019 +0000
4 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 16 23:51:31 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71f3f922
7
8 dev-ruby/typhoeus: add ruby25 to slot 0
9
10 Package-Manager: Portage-2.3.59, Repoman-2.3.12
11 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
12
13 dev-ruby/typhoeus/typhoeus-0.6.9-r1.ebuild | 30 ++++++++++++++++++++++++++++++
14 1 file changed, 30 insertions(+)
15
16 diff --git a/dev-ruby/typhoeus/typhoeus-0.6.9-r1.ebuild b/dev-ruby/typhoeus/typhoeus-0.6.9-r1.ebuild
17 new file mode 100644
18 index 00000000000..5e09b760aef
19 --- /dev/null
20 +++ b/dev-ruby/typhoeus/typhoeus-0.6.9-r1.ebuild
21 @@ -0,0 +1,30 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=5
26 +
27 +USE_RUBY="ruby23 ruby24 ruby25"
28 +
29 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md UPGRADE.md"
30 +RUBY_FAKEGEM_TASK_DOC=""
31 +
32 +RUBY_FAKEGEM_RECIPE_TEST="rspec"
33 +
34 +inherit ruby-fakegem
35 +
36 +DESCRIPTION="Runs HTTP requests in parallel while cleanly encapsulating handling logic"
37 +HOMEPAGE="https://rubygems.org/gems/typhoeus/
38 + https://github.com/typhoeus/typhoeus"
39 +
40 +LICENSE="Ruby"
41 +SLOT="0"
42 +KEYWORDS="~amd64"
43 +IUSE=""
44 +
45 +ruby_add_rdepend ">=dev-ruby/ethon-0.7.1"
46 +
47 +ruby_add_bdepend "test? ( dev-ruby/json >=dev-ruby/faraday-0.9 >=dev-ruby/sinatra-1.3 )"
48 +
49 +all_ruby_prepare() {
50 + sed -e '/bundler/I s:^:#:' -i Rakefile spec/spec_helper.rb || die
51 +}