From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BE60415808D for ; Sat, 23 Apr 2022 05:15:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6649DE089C; Sat, 23 Apr 2022 05:15:06 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7E8FDE0882 for ; Sat, 23 Apr 2022 05:15:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 02664341A98 for ; Sat, 23 Apr 2022 05:15:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BA983F1 for ; Sat, 23 Apr 2022 05:14:59 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1650690893.af907a6547489be908896f2375839e4d221ad7e6.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rb-readline/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/rb-readline/rb-readline-0.5.5-r1.ebuild X-VCS-Directories: dev-ruby/rb-readline/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: af907a6547489be908896f2375839e4d221ad7e6 X-VCS-Branch: master Date: Sat, 23 Apr 2022 05:14:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: df819f99-c2a9-4a44-a27c-453a2b2dfd3b X-Archives-Hash: 353ed391b218e2663efab21e84c9f7e1 commit: af907a6547489be908896f2375839e4d221ad7e6 Author: Hans de Graaff gentoo org> AuthorDate: Fri Apr 22 08:00:03 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Apr 23 05:14:53 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af907a65 dev-ruby/rb-readline: update EAPI 6 -> 8 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/rb-readline/rb-readline-0.5.5-r1.ebuild | 25 ++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/dev-ruby/rb-readline/rb-readline-0.5.5-r1.ebuild b/dev-ruby/rb-readline/rb-readline-0.5.5-r1.ebuild new file mode 100644 index 000000000000..96b7e3a4e22b --- /dev/null +++ b/dev-ruby/rb-readline/rb-readline-0.5.5-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30 ruby31" + +inherit ruby-fakegem + +DESCRIPTION="Ruby implementation of the GNU readline C library" +HOMEPAGE="https://rubygems.org/gems/rb-readline" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +ruby_add_bdepend "dev-ruby/rake + >=dev-ruby/minitest-5.2" + +all_ruby_prepare() { + sed -i -e '/bundler/ s:^:#:' Rakefile || die + + # Skip a test that fails when run in the ebuild environment. + sed -i -e '/test_readline_with_default_parameters_does_not_error/,/end/ s:^:#:' test/test_readline.rb || die +}