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: Sat, 16 Nov 2019 09:14:06
Message-Id: 1573895632.361665f810004661a442b683ba81e28bac127359.graaff@gentoo
1 commit: 361665f810004661a442b683ba81e28bac127359
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 16 09:13:27 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 16 09:13:52 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=361665f8
7
8 dev-ruby/ethon: cleanup
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.16
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/ethon/Manifest | 1 -
14 dev-ruby/ethon/ethon-0.11.0.ebuild | 33 ---------------------------------
15 2 files changed, 34 deletions(-)
16
17 diff --git a/dev-ruby/ethon/Manifest b/dev-ruby/ethon/Manifest
18 index 9b256819f6e..d3f6c7cd64e 100644
19 --- a/dev-ruby/ethon/Manifest
20 +++ b/dev-ruby/ethon/Manifest
21 @@ -1,2 +1 @@
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.11.0.ebuild b/dev-ruby/ethon/ethon-0.11.0.ebuild
26 deleted file mode 100644
27 index 47987c78414..00000000000
28 --- a/dev-ruby/ethon/ethon-0.11.0.ebuild
29 +++ /dev/null
30 @@ -1,33 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
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 -}