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/faraday/
Date: Sun, 08 May 2022 06:40:30
Message-Id: 1651992022.396a2318b49cce404ff383825c25c0ee142857ca.graaff@gentoo
1 commit: 396a2318b49cce404ff383825c25c0ee142857ca
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 8 06:36:06 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun May 8 06:40:22 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=396a2318
7
8 dev-ruby/faraday: add 1.3.1
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/faraday/Manifest | 1 +
13 dev-ruby/faraday/faraday-1.3.1.ebuild | 85 +++++++++++++++++++++++++++++++++++
14 2 files changed, 86 insertions(+)
15
16 diff --git a/dev-ruby/faraday/Manifest b/dev-ruby/faraday/Manifest
17 index 464c991ad982..db9ac3f07981 100644
18 --- a/dev-ruby/faraday/Manifest
19 +++ b/dev-ruby/faraday/Manifest
20 @@ -1,2 +1,3 @@
21 DIST faraday-0.17.3.tar.gz 76786 BLAKE2B 0706f4386233861564aa1ba5fb8da9ad374a0b553a3f6ccd4ce6509b690f6da3e9f695f90605e0e15b41b6354841943ecc4f5eb826638565687bf62b36f1f456 SHA512 346e93b5d980626a0c460d9010ca09091faf84a1a8f2717c16d345ddc51585ce45959d7fcf41fbd0ba248d38460939544945fa0e81bcb80ab73dfe080182e325
22 DIST faraday-1.2.0.tar.gz 840216 BLAKE2B a52d2ddc2a57ba87b28e9143123985df12e118d6a8062b5272e77aa7807d7b2fd770408090c7e406631173eb276efcb973f96efdb17ab0f3ea684acda41b8d34 SHA512 7198e8954ec71bdbdfb58df52c6962ebe05599bf871fcb669f32ee2a5fb094b6934492396a92033e0fa858390f454f0d2daa41616f9e212f260080be016e1ea9
23 +DIST faraday-1.3.1.tar.gz 840638 BLAKE2B 284f7f612d3ab791a00ceab823be0246685fa38356bfeb6e01c12e81c7369c500719a6023dd929160ca598b41401b82cda0d8e9e363d0e7bdd91791742f8e68f SHA512 b89839e5d602911904ce009f52d011c124f84811e0676a3a524d22ea7084d99a971b6573dcde6d512bf933909cc461ef01cd82a8eeb9df581c56f17f31966b1b
24
25 diff --git a/dev-ruby/faraday/faraday-1.3.1.ebuild b/dev-ruby/faraday/faraday-1.3.1.ebuild
26 new file mode 100644
27 index 000000000000..7124c6897dbb
28 --- /dev/null
29 +++ b/dev-ruby/faraday/faraday-1.3.1.ebuild
30 @@ -0,0 +1,85 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +USE_RUBY="ruby26 ruby27 ruby30"
37 +
38 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
39 +RUBY_FAKEGEM_RECIPE_DOC="none"
40 +
41 +RUBY_FAKEGEM_EXTRADOC="README.md"
42 +RUBY_FAKEGEM_EXTRAINSTALL="spec"
43 +
44 +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
45 +
46 +inherit ruby-fakegem
47 +
48 +DESCRIPTION="HTTP/REST API client library with pluggable components"
49 +HOMEPAGE="https://github.com/lostisland/faraday"
50 +SRC_URI="https://github.com/lostisland/faraday/archive/v${PV}.tar.gz -> ${P}.tar.gz"
51 +
52 +LICENSE="MIT"
53 +SLOT="$(ver_cut 1)"
54 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
55 +IUSE=""
56 +
57 +DEPEND+=" test? ( sys-process/lsof )"
58 +
59 +ruby_add_rdepend "
60 + dev-ruby/faraday-net_http:1
61 + >=dev-ruby/multipart-post-1.2.0 <dev-ruby/multipart-post-3
62 + dev-ruby/ruby2_keywords
63 +"
64 +ruby_add_bdepend "test? (
65 + >=dev-ruby/test-unit-2.4
66 + >=dev-ruby/connection_pool-2.2.2
67 + dev-ruby/rack
68 + dev-ruby/webmock
69 + )"
70 +
71 +all_ruby_prepare() {
72 + # Remove bundler support.
73 + rm Gemfile || die
74 + sed -i -e '/[Bb]undler/d ; 1irequire "yaml"' Rakefile || die
75 + sed -i -e '/bundler/,/^fi/ s:^:#:' script/test || die
76 + # Avoid loading all lib files since some of them require unpackaged dependencies.
77 + sed -e '/[Cc]overall/ s:^:#:' \
78 + -e '/lib\/\*\*/ s:^:#:' \
79 + -e '/simplecov/ s:^:#:' \
80 + -e '/SimpleCov/,/end/ s:^:#:' \
81 + -e '/pry/ s:^:#:' \
82 + -i spec/spec_helper.rb || die
83 +
84 + sed -e '/git ls-files/ s:^:#:' \
85 + -e "s:_relative ': './:" \
86 + -i ${RUBY_FAKEGEM_GEMSPEC} || die
87 +
88 + # Avoid multipart tests that require an unpackaged dependency
89 + # that appears to be no longer maintained.
90 + rm -f spec/faraday/request/multipart_spec.rb || die
91 + sed -e '/multipart_parser/ s:^:#:' \
92 + -i spec/support/helper_methods.rb || die
93 +
94 + # Remove specs for unpackaged adapters
95 + rm -f spec/faraday/adapter/{em_http,em_synchrony,excon}_spec.rb || die
96 +
97 + # Make this adapter optional since it comes with a long list of
98 + # dependencies.
99 + if ! has_version "dev-ruby/typhoeus:1" ; then
100 + rm -f spec/faraday/adapter/typhoeus_spec.rb || die
101 + fi
102 +}
103 +
104 +each_ruby_prepare() {
105 + # Make sure the test scripts use the right ruby interpreter
106 + sed -i -e 's:ruby:'${RUBY}':' script/* || die
107 +}
108 +
109 +each_ruby_test() {
110 + MT_NO_PLUGINS=true each_fakegem_test
111 +
112 + # Sleep some time to allow the sinatra test server to die
113 + einfo "Waiting for test server to stop"
114 + sleep 10
115 +}