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/oauth/
Date: Sun, 01 May 2022 06:34:51
Message-Id: 1651385627.0063c138094d753b9a245b4adaee04fe50ee6b85.graaff@gentoo
1 commit: 0063c138094d753b9a245b4adaee04fe50ee6b85
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 1 06:13:47 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun May 1 06:13:47 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0063c138
7
8 dev-ruby/oauth: enable ruby30
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/oauth/oauth-0.5.8.ebuild | 8 ++++----
13 1 file changed, 4 insertions(+), 4 deletions(-)
14
15 diff --git a/dev-ruby/oauth/oauth-0.5.8.ebuild b/dev-ruby/oauth/oauth-0.5.8.ebuild
16 index a675a968338d..6aacd85e42e9 100644
17 --- a/dev-ruby/oauth/oauth-0.5.8.ebuild
18 +++ b/dev-ruby/oauth/oauth-0.5.8.ebuild
19 @@ -2,7 +2,7 @@
20 # Distributed under the terms of the GNU General Public License v2
21
22 EAPI=8
23 -USE_RUBY="ruby26 ruby27"
24 +USE_RUBY="ruby26 ruby27 ruby30"
25
26 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md TODO"
27
28 @@ -26,13 +26,13 @@ ruby_add_bdepend "test? (
29 dev-ruby/mocha:1.0
30 dev-ruby/webmock
31 dev-ruby/rack
32 - dev-ruby/actionpack:6.0
33 - dev-ruby/railties:6.0
34 + dev-ruby/actionpack:6.1
35 + dev-ruby/railties:6.1
36 )"
37
38 all_ruby_prepare() {
39 # Require a compatible version of mocha
40 - sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.0.0" ; gem "actionpack", "~>6.0.0"' \
41 + sed -i -e '1igem "mocha", "~> 1.0"; gem "railties", "~>6.1.0" ; gem "actionpack", "~>6.1.0"' \
42 -e '2i gem "test-unit"; require "test/unit"' \
43 -e '/mocha/ s/mini_test/minitest/' \
44 -e '/\(byebug\|minitest_helpers\|simplecov\)/I s:^:#:' test/test_helper.rb || die