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/rest-client/
Date: Wed, 28 Jun 2017 06:09:23
Message-Id: 1498629512.f8a8bcdb10e706a6f3ce4c555daf6ee637be1a69.graaff@gentoo
1 commit: f8a8bcdb10e706a6f3ce4c555daf6ee637be1a69
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 28 05:58:32 2017 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 28 05:58:32 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8a8bcdb
7
8 dev-ruby/rest-client: cleanup
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 dev-ruby/rest-client/rest-client-1.8.0-r1.ebuild | 34 ------------------------
13 1 file changed, 34 deletions(-)
14
15 diff --git a/dev-ruby/rest-client/rest-client-1.8.0-r1.ebuild b/dev-ruby/rest-client/rest-client-1.8.0-r1.ebuild
16 deleted file mode 100644
17 index c1d56087798..00000000000
18 --- a/dev-ruby/rest-client/rest-client-1.8.0-r1.ebuild
19 +++ /dev/null
20 @@ -1,34 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -USE_RUBY="ruby20 ruby21"
26 -
27 -RUBY_FAKEGEM_RECIPE_TEST="rspec"
28 -
29 -RUBY_FAKEGEM_EXTRADOC="history.md README.rdoc"
30 -
31 -inherit ruby-fakegem
32 -
33 -DESCRIPTION="Simple Simple HTTP and REST client for Ruby"
34 -HOMEPAGE="https://github.com/archiloque/rest-client"
35 -
36 -LICENSE="MIT"
37 -SLOT="0"
38 -KEYWORDS="amd64 ~x86"
39 -IUSE=""
40 -
41 -ruby_add_bdepend "test? ( dev-ruby/webmock )"
42 -
43 -ruby_add_rdepend "
44 - >=dev-ruby/http-cookie-1.0.2:0
45 - >=dev-ruby/mime-types-1.16
46 - >=dev-ruby/netrc-0.7:0"
47 -
48 -all_ruby_prepare() {
49 - sed -e '/bundler/I s:^:#:' \
50 - -e '/namespace :windows/,/^end/ s:^:#:' -i Rakefile || die
51 -
52 - # Remove spec that requires network access.
53 - rm spec/integration/request_spec.rb || die
54 -}