From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1302061-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AA0EA13933E for <garchives@archives.gentoo.org>; Tue, 13 Jul 2021 09:20:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF842E0E7B; Tue, 13 Jul 2021 09:20:55 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 99309E0E7B for <gentoo-commits@lists.gentoo.org>; Tue, 13 Jul 2021 09:20:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9E425340924 for <gentoo-commits@lists.gentoo.org>; Tue, 13 Jul 2021 09:20:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 06FF37D2 for <gentoo-commits@lists.gentoo.org>; Tue, 13 Jul 2021 09:20:53 +0000 (UTC) From: "Hans de Graaff" <graaff@gentoo.org> 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" <graaff@gentoo.org> Message-ID: <1626168046.c02c69b1fe9ec0f1c148bd6a3715e3049c785c93.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-bonus-assertions/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/minitest-bonus-assertions/minitest-bonus-assertions-3.0-r1.ebuild X-VCS-Directories: dev-ruby/minitest-bonus-assertions/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: c02c69b1fe9ec0f1c148bd6a3715e3049c785c93 X-VCS-Branch: master Date: Tue, 13 Jul 2021 09:20:53 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 30b42345-3dca-4eca-80c1-66553ce754a3 X-Archives-Hash: ce075af786911834c5e80432ad50bf5c commit: c02c69b1fe9ec0f1c148bd6a3715e3049c785c93 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Tue Jul 13 07:02:09 2021 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Tue Jul 13 09:20:46 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c02c69b1 dev-ruby/minitest-bonus-assertions: add ruby30; EAPI7; fix tests Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> .../minitest-bonus-assertions-3.0-r1.ebuild | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-ruby/minitest-bonus-assertions/minitest-bonus-assertions-3.0-r1.ebuild b/dev-ruby/minitest-bonus-assertions/minitest-bonus-assertions-3.0-r1.ebuild new file mode 100644 index 00000000000..21e882e7047 --- /dev/null +++ b/dev-ruby/minitest-bonus-assertions/minitest-bonus-assertions-3.0-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +USE_RUBY="ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc" + +inherit ruby-fakegem + +DESCRIPTION="Bonus assertions for minitest" +HOMEPAGE="https://github.com/halostatue/minitest-bonus-assertions" + +LICENSE="MIT" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/minitest dev-ruby/minitest-pretty_diff )" + +all_ruby_prepare() { + sed -i -e '/\(bisect\|focus\|moar\)/ s:^:#:' test/minitest_config.rb || die + + # assert the right value (as specified in the text of the test) + # this probably needs more investigation, but this package is only used + # by another package from the same author so we'll go with it + sed -i -e '140 s/true/false/' -e '216 s/false/true/' test/test_minitest-bonus-assertions.rb || die +} + +each_ruby_test() { + ${RUBY} -Ilib:.:test -e 'Dir["test/test_*.rb"].each{|f| require f}' || die +}