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/ethon/
Date: Fri, 11 Jan 2019 07:33:48
Message-Id: 1547191738.542a0f268b2d45cf79578905e0b2221d85a8e95f.graaff@gentoo
1 commit: 542a0f268b2d45cf79578905e0b2221d85a8e95f
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 11 07:28:58 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 11 07:28:58 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=542a0f26
7
8 dev-ruby/ethon: add 0.12.0
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 dev-ruby/ethon/Manifest | 1 +
14 dev-ruby/ethon/ethon-0.12.0.ebuild | 33 +++++++++++++++++++++++++++++++++
15 2 files changed, 34 insertions(+)
16
17 diff --git a/dev-ruby/ethon/Manifest b/dev-ruby/ethon/Manifest
18 index e4ebdd2c169..9b256819f6e 100644
19 --- a/dev-ruby/ethon/Manifest
20 +++ b/dev-ruby/ethon/Manifest
21 @@ -1 +1,2 @@
22 DIST ethon-0.11.0.gem 56832 BLAKE2B 64f184e3dbedf6fc05cb97d7e642366b45b9493ccd79ba1dd9f4ddafea695bc8d5e72bc5a305e192ad6f78d55704319316a13ced61c14aef7d3e41936ec69a78 SHA512 271ff2ce5578352722bab318ad40f06d9c76fdbdead573a015fed0a38f3fd6341bcf70acedaa9470fe97f47069977b09ac9f71d8dacb21b67aad917c2a078c72
23 +DIST ethon-0.12.0.gem 56832 BLAKE2B 04765dcb9599e7435c3f71b1e8c35b815123ec460dbb761360146b24acaff1aeb52a75efe5dbbacdbd11e7247743988629ce965604cdfd15cdd75ef03301d9da SHA512 5fea666efdd5e2d568d0e074f205525656e202ecea3bb5ff8a8ab838a596cab349b869baffb7926227d6cfdae5b9c1cb86bb201b4c9585056c6671ab4feee596
24
25 diff --git a/dev-ruby/ethon/ethon-0.12.0.ebuild b/dev-ruby/ethon/ethon-0.12.0.ebuild
26 new file mode 100644
27 index 00000000000..db60b0e0dec
28 --- /dev/null
29 +++ b/dev-ruby/ethon/ethon-0.12.0.ebuild
30 @@ -0,0 +1,33 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +USE_RUBY="ruby23 ruby24 ruby25"
37 +
38 +RUBY_FAKEGEM_TASK_DOC=""
39 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
40 +
41 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
42 +
43 +inherit ruby-fakegem
44 +
45 +DESCRIPTION="Very lightweight libcurl wrapper"
46 +HOMEPAGE="https://github.com/typhoeus/ethon"
47 +
48 +LICENSE="MIT"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~arm ~x86"
51 +IUSE=""
52 +
53 +RDEPEND+=" net-misc/curl"
54 +
55 +ruby_add_rdepend ">=dev-ruby/ffi-1.3.0"
56 +
57 +ruby_add_bdepend "test? ( dev-ruby/sinatra dev-ruby/mime-types )"
58 +
59 +all_ruby_prepare() {
60 + rm Gemfile || die
61 + sed -e '/bundler/I s:^:#:' \
62 + -e '1igem "sinatra"' -i Rakefile spec/spec_helper.rb || die
63 +}