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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9A191138334 for ; Sun, 13 Oct 2019 09:14:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B58B2E085E; Sun, 13 Oct 2019 09:14:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 80BCBE0831 for ; Sun, 13 Oct 2019 09:14:56 +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 F396934BCBF for ; Sun, 13 Oct 2019 09:14:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 388CE7F5 for ; Sun, 13 Oct 2019 09:14:52 +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: <1570958076.01ddd17cf2fc39e63afb608c6e6838bcb52794d1.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/tzinfo/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/tzinfo/tzinfo-1.2.5.ebuild X-VCS-Directories: dev-ruby/tzinfo/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 01ddd17cf2fc39e63afb608c6e6838bcb52794d1 X-VCS-Branch: master Date: Sun, 13 Oct 2019 09:14:52 +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: 68e7c9ad-1e5e-4ece-9ce0-c519814aa48b X-Archives-Hash: 5dc9a016cc7ba293d2f602d63570bdac commit: 01ddd17cf2fc39e63afb608c6e6838bcb52794d1 Author: Hans de Graaff gentoo org> AuthorDate: Sun Oct 13 09:14:36 2019 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Oct 13 09:14:36 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01ddd17c dev-ruby/tzinfo: skip "safe" tests We cannot guarantee that these tests will pass since they depend on the permissions of the directory hierarchy. Fixes: https://bugs.gentoo.org/693828 Package-Manager: Portage-2.3.76, Repoman-2.3.16 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/tzinfo/tzinfo-1.2.5.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-ruby/tzinfo/tzinfo-1.2.5.ebuild b/dev-ruby/tzinfo/tzinfo-1.2.5.ebuild index 1b36cf383f9..37433640300 100644 --- a/dev-ruby/tzinfo/tzinfo-1.2.5.ebuild +++ b/dev-ruby/tzinfo/tzinfo-1.2.5.ebuild @@ -29,4 +29,7 @@ ruby_add_bdepend "test? ( dev-ruby/minitest:5 )" all_ruby_prepare() { # Set the secure permissions that tests expect. chmod 0755 "${HOME}" || die "Failed to fix permissions on home" + + # Avoid taint tests that throw SecurityErrors on newer ruby versions. + sed -i -e '/_info_tainted/askip"SecurityError"' test/tc_ruby_data_source.rb || die }