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/httparty/
Date: Thu, 15 Nov 2018 07:24:11
Message-Id: 1542266637.10265cbb65eac3f3d2889931af946ef2970b8d26.graaff@gentoo
1 commit: 10265cbb65eac3f3d2889931af946ef2970b8d26
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 15 06:14:17 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 15 07:23:57 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10265cbb
7
8 dev-ruby/httparty: cleanup
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/httparty/Manifest | 1 -
14 dev-ruby/httparty/httparty-0.16.0.ebuild | 49 --------------------------------
15 2 files changed, 50 deletions(-)
16
17 diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
18 index 57372b1397b..c11e7ed56b2 100644
19 --- a/dev-ruby/httparty/Manifest
20 +++ b/dev-ruby/httparty/Manifest
21 @@ -1,2 +1 @@
22 -DIST httparty-0.16.0.gem 89088 BLAKE2B 27715c6760a9adeec289a005f89de219b32e6ad5c3f937478ad4187df895096f9375b0d20a4b33c1c62b96de6313017a713a036247756a96fe9366e7c1e77247 SHA512 c523ab3555d0a86e2df53e800be57b88f40bb680e7df31e754ddc3e76728eb2228e6ddbe9a3e580c4c604a126ebcd33be79dfde3758faf99aadbba4d30d9508d
23 DIST httparty-0.16.2.gem 89600 BLAKE2B 581b5fcadf59bb50864b2fa6d1aae220ff9881bba53363601c6e70c3291dc2cee351a8f42b1946ad516cdcab5a85b832e4260f04394e54255e0cd76bc6860d5e SHA512 13efbacb9ee0325fbb185279ca9f7ffcc0131189ccf98d9889c6a1b6bcfa04fd7cbc6d1393bffe69a5a813a2f54f70b5926e176305fa70480dd0902968c894d0
24
25 diff --git a/dev-ruby/httparty/httparty-0.16.0.ebuild b/dev-ruby/httparty/httparty-0.16.0.ebuild
26 deleted file mode 100644
27 index 472d30ad10f..00000000000
28 --- a/dev-ruby/httparty/httparty-0.16.0.ebuild
29 +++ /dev/null
30 @@ -1,49 +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="ruby22 ruby23 ruby24"
37 -
38 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
39 -
40 -RUBY_FAKEGEM_TASK_DOC=""
41 -RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
42 -
43 -inherit ruby-fakegem
44 -
45 -DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead easy"
46 -HOMEPAGE="https://jnunemaker.github.com/httparty"
47 -
48 -LICENSE="MIT"
49 -SLOT="0"
50 -KEYWORDS="amd64 ~x86"
51 -IUSE=""
52 -
53 -ruby_add_rdepend '>=dev-ruby/multi_xml-0.5.2'
54 -
55 -ruby_add_bdepend 'test? ( dev-ruby/webmock )'
56 -
57 -all_ruby_prepare() {
58 - # Remove bundler
59 - rm Gemfile || die
60 - sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
61 -
62 - # Avoid test dependency on cucumber. We can't run the features since
63 - # they depend on mongrel which is no longer packaged.
64 - sed -i -e '/cucumber/I s:^:#:' Rakefile || die
65 -
66 - # Avoid test dependency on simplecov
67 - sed -i -e '/simplecov/I s:^:#:' \
68 - -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb || die
69 -
70 - # Avoid test that works standalone but fails in the suite
71 - sed -i -e '/calls block given to perform with each redirect/,/^ end/ s:^:#:' spec/httparty/request_spec.rb
72 -}
73 -
74 -all_ruby_install() {
75 - all_fakegem_install
76 -
77 - docinto examples
78 - dodoc examples/*
79 -}