blob: 04db5ab2e95c9612012ebcf408cf370c0dc595d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby32 ruby33 ruby34"
RUBY_FAKEGEM_BINWRAP=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md TODO"
RUBY_FAKEGEM_GEMSPEC="oauth.gemspec"
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
inherit ruby-fakegem
DESCRIPTION="A RubyGem for implementing both OAuth clients and servers"
HOMEPAGE="https://github.com/ruby-oauth/oauth"
SRC_URI="https://github.com/ruby-oauth/oauth/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="$(ver_cut 1)"
KEYWORDS="~amd64 ~ppc ~riscv ~x86"
IUSE="test"
ruby_add_rdepend "
|| ( dev-ruby/base64:0.3 dev-ruby/base64:0.2 )
>=dev-ruby/oauth-tty-1.0.6:1
dev-ruby/snaky_hash:1
>=dev-ruby/version_gem-1.1.9:1
"
ruby_add_bdepend "test? (
dev-ruby/bundler
dev-ruby/webmock
dev-ruby/rack
dev-ruby/rest-client
|| ( dev-ruby/actionpack:7.2 dev-ruby/actionpack:7.1 )
|| ( dev-ruby/railties:7.2 dev-ruby/railties:7.1 )
)"
all_ruby_prepare() {
sed -e 's:_relative ": "./:' \
-e 's/__dir__/"."/' \
-i ${RUBY_FAKEGEM_GEMSPEC} || die
sed -e '/kettle/I s:^:#:' \
-i spec/spec_helper.rb || die
rm -f spec/oauth/request_proxy/curb_spec.rb || die
}
|