commit: 6eefe14bf23df36c42234413eabaac35f1815ada Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Thu Jul 28 07:44:32 2022 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Thu Jul 28 08:28:02 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eefe14b
dev-ruby/http_parser_rb: enable ruby30, ruby31 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r2.ebuild | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r2.ebuild b/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r2.ebuild index 26c7f9681990..c8083353aa1e 100644 --- a/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r2.ebuild +++ b/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r2.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27" +USE_RUBY="ruby26 ruby27 ruby30 ruby31" -RUBY_FAKEGEM_RECIPE_TEST="rspec" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" RUBY_FAKEGEM_RECIPE_DOC="rdoc" RUBY_FAKEGEM_EXTRADOC="README.md" @@ -22,3 +22,8 @@ LICENSE="MIT" SLOT="0" KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86" IUSE="" + +all_ruby_prepare() { + # rspec 3 compatibility + sed -i -e 's/be_true/be true/; s/be_false/be false/' spec/parser_spec.rb || die +}