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: Wed, 19 Feb 2020 19:20:25
Message-Id: 1582140013.ff9abbc8cf49ef8d1b4e682bfa2308c187f9d963.graaff@gentoo
1 commit: ff9abbc8cf49ef8d1b4e682bfa2308c187f9d963
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 19 19:20:00 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 19 19:20:13 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff9abbc8
7
8 dev-ruby/httparty: add 0.18.0
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/httparty/Manifest | 1 +
14 dev-ruby/httparty/httparty-0.18.0.ebuild | 58 ++++++++++++++++++++++++++++++++
15 2 files changed, 59 insertions(+)
16
17 diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest
18 index a7fc96da801..f8c2ce6f645 100644
19 --- a/dev-ruby/httparty/Manifest
20 +++ b/dev-ruby/httparty/Manifest
21 @@ -1,2 +1,3 @@
22 DIST httparty-0.17.1.tar.gz 97249 BLAKE2B 044a074c0a11c02d5fd929585b1dd6853871bdbfcf9be0f16b92999ac5e9ad7b0fb60a403a24d4e3ae3901f8fdb119f51e3decfc61e9ddf61419fa50581c1970 SHA512 2e92573e164575c462afceec26234731e8eb4472f127374503ee1361d8399116c78f900f88485629ca7ddb51a6383c963a5b1e21d9d5b0acbcc8544ce3f37465
23 DIST httparty-0.17.3.tar.gz 97444 BLAKE2B 773e40fc35ca44cd3b14a30e7a7ea5783c0c158cdb8488b34ffa36af5a572d5f6eef697cab147c5be1448906c35071284947ba598409be35af54a20846f4d98c SHA512 c06aa4456c692e2a32f8e44b2316d46f664c4e2c8efb370607796f6801d96e989a54e61bdf125cff679b8c5f5abb1557b87aef48d8f3a392c1942ac4821db84d
24 +DIST httparty-0.18.0.tar.gz 97667 BLAKE2B 8c4086c3186152944a7ae9a57b679bba6ed803067ec849d9fac8323cdef41a45a44f2454ca83a6aecff7fc1e9795793a2fb035f1bf46c5c998703fc5d7425a44 SHA512 a208bfd411de6fc080221410d5730f37db074fca25ff0f71b796e4a73ac3a595ca57dde1f415327f710ed23ebed6bbf0f671d0e5940ce60073e6727ac8963580
25
26 diff --git a/dev-ruby/httparty/httparty-0.18.0.ebuild b/dev-ruby/httparty/httparty-0.18.0.ebuild
27 new file mode 100644
28 index 00000000000..54637324e24
29 --- /dev/null
30 +++ b/dev-ruby/httparty/httparty-0.18.0.ebuild
31 @@ -0,0 +1,58 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +USE_RUBY="ruby24 ruby25 ruby26"
38 +
39 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
40 +
41 +RUBY_FAKEGEM_RECIPE_DOC="none"
42 +RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
43 +
44 +RUBY_FAKEGEM_GEMSPEC="httparty.gemspec"
45 +
46 +inherit ruby-fakegem
47 +
48 +DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead easy"
49 +HOMEPAGE="https://jnunemaker.github.com/httparty"
50 +SRC_URI="https://github.com/jnunemaker/httparty/archive/v${PV}.tar.gz -> ${P}.tar.gz"
51 +
52 +LICENSE="MIT"
53 +SLOT="0"
54 +KEYWORDS="~amd64 ~x86"
55 +IUSE=""
56 +
57 +ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2'
58 +
59 +ruby_add_bdepend 'test? ( dev-ruby/webmock )'
60 +
61 +all_ruby_prepare() {
62 + sed -i -e 's/git ls-files \?-\?-\?/find/' ${RUBY_FAKEGEM_GEMSPEC} || die
63 +
64 + # Remove bundler
65 + rm Gemfile || die
66 + sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
67 +
68 + # Avoid test dependency on cucumber. We can't run the features since
69 + # they depend on mongrel which is no longer packaged.
70 + sed -i -e '/cucumber/I s:^:#:' Rakefile || die
71 +
72 + # Avoid test dependency on simplecov
73 + sed -i -e '/simplecov/I s:^:#:' \
74 + -e '/pry/ s:^:#:' \
75 + -e '1i require "cgi"; require "delegate"' spec/spec_helper.rb || die
76 +
77 + # Avoid test that works standalone but fails in the suite
78 + sed -i -e '/calls block given to perform with each redirect/,/^ end/ s:^:#:' spec/httparty/request_spec.rb
79 +
80 + # Avoid test that is not fully compatible with newer multi_xml
81 + sed -i -e '/should be able parse response type xml automatically/askip "multi_xml"' spec/httparty_spec.rb || die
82 +}
83 +
84 +all_ruby_install() {
85 + all_fakegem_install
86 +
87 + docinto examples
88 + dodoc examples/*
89 +}