Diff excon-0.93.1 with a excon-0.102.0

/usr/portage/dev-ruby/excon/excon-0.102.0.ebuild 2023-10-09 14:52:30.432368374 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
USE_RUBY="ruby27 ruby30 ruby31"
6
USE_RUBY="ruby31 ruby32"
7 7

  
8 8
RUBY_FAKEGEM_EXTRADOC="changelog.txt README.md"
9 9
RUBY_FAKEGEM_GEMSPEC="excon.gemspec"
......
17 17

  
18 18
LICENSE="MIT"
19 19
SLOT="0"
20
KEYWORDS="amd64 ~arm64"
20
KEYWORDS="~amd64 ~arm64"
21 21
IUSE="test"
22 22
RESTRICT="!test? ( test )"
23 23

  
......
27 27
		dev-ruby/activesupport
28 28
		>=dev-ruby/json-1.8.5
29 29
		dev-ruby/open4
30
		>=dev-ruby/rack-2.2.7-r1:2.2
30 31
		dev-ruby/rdoc
31 32
		dev-ruby/sinatra
33
		dev-ruby/webrick
32 34
	)
33 35
"
34 36
all_ruby_prepare() {
......
42 44
		tests/{batch-requests,complete_responses}.rb \
43 45
		tests/middlewares/{decompress,mock}_tests.rb  || die
44 46
	rm -f spec/requests/eof_requests_spec.rb spec/excon/error_spec.rb || die
47

  
48
	# Use a rackup version compatible with sinatra
49
	sed -i -e '/launch_process/ s/"rackup"/"rackup-2"/' tests/test_helper.rb || die
50
	sed -i -e '/open_process/ s/rackup/rackup-2/' lib/excon/test/plugin/server/webrick.rb || die
45 51
}
Thank you!