Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/faraday/
Date: Sat, 18 Mar 2023 23:10:20
Message-Id: 1679180986.0aa325b66b5292478d6af7975fe5984c370f0e4b.sam@gentoo
1 commit: 0aa325b66b5292478d6af7975fe5984c370f0e4b
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 18 05:02:25 2023 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 18 23:09:46 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0aa325b6
7
8 dev-ruby/faraday: add 2.7.4
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 dev-ruby/faraday/Manifest | 1 +
13 dev-ruby/faraday/faraday-2.7.4.ebuild | 66 +++++++++++++++++++++++++++++++++++
14 2 files changed, 67 insertions(+)
15
16 diff --git a/dev-ruby/faraday/Manifest b/dev-ruby/faraday/Manifest
17 index 64b6775d9278..7aa2a036c05a 100644
18 --- a/dev-ruby/faraday/Manifest
19 +++ b/dev-ruby/faraday/Manifest
20 @@ -4,3 +4,4 @@ DIST faraday-2.4.0.tar.gz 829464 BLAKE2B f06322150a53c2de153d4373d51f440179fed9e
21 DIST faraday-2.5.2.tar.gz 830523 BLAKE2B 2d420b7799e92a1e918d01df20b28633947b3039d30b099d641707d655bb76dc723776f2948dc22768087e693d6715f76907eb3162ea2c7194f00629f17b2774 SHA512 40dd9be959511a3e90ebdc514c924ec4c1243750fbcd6d94e4833f80dfe469aa7a1d1104aedc5292b52325b44f8a8fbeabac14f086b9766c9e8ba38fefac9473
22 DIST faraday-2.6.0.tar.gz 830744 BLAKE2B 4ed5fa0fa4412dafe0c6ed20ef03393f8242f39fc60f269701ce6755b9d6b9fa60cbe477a623146fae2b1b0685fc86619b857c1f5bd6ce5e73df4a88846f55aa SHA512 cc80d7dfc6778ea184abc85476aba65fd2046dada4a88c6764a82841b561e84e4f44367191f2ec892d67fd7552e4444b922541cadd38d0ccfc609e90222fac90
23 DIST faraday-2.7.2.tar.gz 831914 BLAKE2B 424d275519cd24f03b0a678810671de2541e799512789e0a3d80d146aafbc74e2acdbb3c9d3d1cfe7224860e9b716720b234fb25c045226f04b29223c640567d SHA512 41402bdb4594988a88542289c5a5242db04ae07081ba21fbc18b756eeae108bc06298b5ad7b48842a86c586b9da4e4568fc48ec9d26697618bd858649ef86294
24 +DIST faraday-2.7.4.tar.gz 832219 BLAKE2B 8c0af73f6bcb41118eea162bc051d3de99593525ec2a84d21d8842ade076774cbde3deb66af399582235e62713dd563887efbad7f8099f377b1c19f28d92d8be SHA512 97c84fa95ed9f4d26ca12d4e4ef2faee1738f656cb919c9609c84d7c9f275452862bbf5334e5d66ab88c3e9ff5cb060805d9b519319d72c98556eb1c2e5610e1
25
26 diff --git a/dev-ruby/faraday/faraday-2.7.4.ebuild b/dev-ruby/faraday/faraday-2.7.4.ebuild
27 new file mode 100644
28 index 000000000000..3cf8bcc541b4
29 --- /dev/null
30 +++ b/dev-ruby/faraday/faraday-2.7.4.ebuild
31 @@ -0,0 +1,66 @@
32 +# Copyright 1999-2023 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +USE_RUBY="ruby27 ruby30 ruby31 ruby32"
38 +
39 +RUBY_FAKEGEM_BINWRAP=""
40 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
41 +RUBY_FAKEGEM_RECIPE_DOC="none"
42 +
43 +RUBY_FAKEGEM_EXTRADOC="README.md"
44 +RUBY_FAKEGEM_EXTRAINSTALL="spec"
45 +
46 +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
47 +
48 +inherit ruby-fakegem
49 +
50 +DESCRIPTION="HTTP/REST API client library with pluggable components"
51 +HOMEPAGE="https://github.com/lostisland/faraday"
52 +SRC_URI="https://github.com/lostisland/faraday/archive/v${PV}.tar.gz -> ${P}.tar.gz"
53 +
54 +LICENSE="MIT"
55 +SLOT="$(ver_cut 1)"
56 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
57 +IUSE=""
58 +
59 +DEPEND+=" test? ( sys-process/lsof )"
60 +
61 +ruby_add_rdepend "
62 + || ( =dev-ruby/faraday-net_http-3.0* dev-ruby/faraday-net_http:2 )
63 + >=dev-ruby/ruby2_keywords-0.0.4
64 +"
65 +ruby_add_bdepend "test? (
66 + >=dev-ruby/test-unit-2.4
67 + >=dev-ruby/connection_pool-2.2.2
68 + dev-ruby/rack:2.2
69 + dev-ruby/webmock
70 + )"
71 +
72 +all_ruby_prepare() {
73 + # Remove bundler support.
74 + rm Gemfile || die
75 + sed -i -e '/[Bb]undler/d ; 1irequire "yaml"' Rakefile || 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 +
95 +each_ruby_test() {
96 + MT_NO_PLUGINS=true each_fakegem_test
97 +}