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 500B6158089 for ; Sun, 10 Sep 2023 07:00:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 915222BC015; Sun, 10 Sep 2023 07:00:27 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 70C322BC015 for ; Sun, 10 Sep 2023 07:00:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 620A9335CE9 for ; Sun, 10 Sep 2023 07:00:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A782310DC for ; Sun, 10 Sep 2023 07:00:24 +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: <1694329220.6cda8e004e674b3aa44ba446b368e36ef04fcdb7.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/sys-filesystem/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/sys-filesystem/sys-filesystem-1.4.3.ebuild X-VCS-Directories: dev-ruby/sys-filesystem/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 6cda8e004e674b3aa44ba446b368e36ef04fcdb7 X-VCS-Branch: master Date: Sun, 10 Sep 2023 07:00:24 +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: 4f6d762e-7240-465d-842d-95c152b45c2d X-Archives-Hash: 337fe7921139cefdb7f771f6f153dacc commit: 6cda8e004e674b3aa44ba446b368e36ef04fcdb7 Author: Hans de Graaff gentoo org> AuthorDate: Sun Sep 10 06:59:31 2023 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Sep 10 07:00:20 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cda8e00 dev-ruby/sys-filesystem: fix tests Add mising test dependency and avoid test that fails on large file systems. Closes: https://bugs.gentoo.org/913915 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/sys-filesystem/sys-filesystem-1.4.3.ebuild | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/dev-ruby/sys-filesystem/sys-filesystem-1.4.3.ebuild b/dev-ruby/sys-filesystem/sys-filesystem-1.4.3.ebuild index ba0b8f230bc1..47e9e9296164 100644 --- a/dev-ruby/sys-filesystem/sys-filesystem-1.4.3.ebuild +++ b/dev-ruby/sys-filesystem/sys-filesystem-1.4.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -USE_RUBY="ruby27 ruby30 ruby31 ruby32" +USE_RUBY="ruby30 ruby31 ruby32" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md" @@ -22,11 +22,9 @@ IUSE="" ruby_add_rdepend ">=dev-ruby/ffi-1.15.0" -#ruby_add_bdepend "test? ( dev-ruby/mkmf-lite )" +ruby_add_bdepend "test? ( dev-ruby/mkmf-lite )" all_ruby_prepare() { - : - #sed -e 's/__dir__/"."/' \ - # -e 's/__FILE__/"'${RUBY_FAKEGEM_GEMSPEC}'"/' \ - # -i "${RUBY_FAKEGEM_GEMSPEC}" || die + sed -e '/stat fragment_size is a plausible value/askip "Fails with e.g. ZFS"' \ + -i spec/sys_filesystem_unix_spec.rb || die }