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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8A571158004 for ; Thu, 16 Nov 2023 12:59:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BA54A2BC015; Thu, 16 Nov 2023 12:59:09 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 9DAC22BC015 for ; Thu, 16 Nov 2023 12:59:09 +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 A7EF3335D2B for ; Thu, 16 Nov 2023 12:59:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C21ED9D4 for ; Thu, 16 Nov 2023 12:59:06 +0000 (UTC) From: "Daichi Yamamoto" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Daichi Yamamoto" Message-ID: <1700139515.7a420d1db67aca7f968df339d4f5f19583529866.dev@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-util/rye/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-util/rye/rye-0.15.2-r1.ebuild dev-util/rye/rye-0.15.2.ebuild X-VCS-Directories: dev-util/rye/ X-VCS-Committer: dev X-VCS-Committer-Name: Daichi Yamamoto X-VCS-Revision: 7a420d1db67aca7f968df339d4f5f19583529866 X-VCS-Branch: dev Date: Thu, 16 Nov 2023 12:59:06 +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: 42814831-7739-4e7b-bccc-23deed2bc004 X-Archives-Hash: 4f0baa577f392fbc7f8a607e357f92cb commit: 7a420d1db67aca7f968df339d4f5f19583529866 Author: Daichi Yamamoto dyama net> AuthorDate: Thu Nov 16 12:57:17 2023 +0000 Commit: Daichi Yamamoto dyama net> CommitDate: Thu Nov 16 12:58:35 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7a420d1d dev-util/rye: fix QA_FLAGS_IGNORED & cargo test Closes: https://bugs.gentoo.org/917415 Closes: https://bugs.gentoo.org/917417 Signed-off-by: Daichi Yamamoto dyama.net> dev-util/rye/{rye-0.15.2.ebuild => rye-0.15.2-r1.ebuild} | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dev-util/rye/rye-0.15.2.ebuild b/dev-util/rye/rye-0.15.2-r1.ebuild similarity index 97% rename from dev-util/rye/rye-0.15.2.ebuild rename to dev-util/rye/rye-0.15.2-r1.ebuild index 0fc649d1d7..358d14dce5 100644 --- a/dev-util/rye/rye-0.15.2.ebuild +++ b/dev-util/rye/rye-0.15.2-r1.ebuild @@ -304,6 +304,16 @@ LICENSE+=" 0BSD Apache-2.0 BSD MIT Unicode-DFS-2016" SLOT="0" KEYWORDS="~amd64" +QA_FLAGS_IGNORED=".*" + +src_test() { + local mytestargs=( + --skip utils::test_is_inside_git_work_tree::test_is_inside_git_work_tree_true + ) + + cargo_src_test -- "${mytestargs[@]}" +} + src_install() { cargo_src_install --path rye }