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 93940158086 for ; Thu, 25 Nov 2021 04:26:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C17322BC018; Thu, 25 Nov 2021 04:26:22 +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 733A62BC018 for ; Thu, 25 Nov 2021 04:26:22 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 738AE34335D for ; Thu, 25 Nov 2021 04:26:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D4C31164 for ; Thu, 25 Nov 2021 04:26:19 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1637814327.d429e4f81bf613d0989abcda888ff59c838caffb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/indilib/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/indilib/indilib-1.9.3.ebuild X-VCS-Directories: sci-libs/indilib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d429e4f81bf613d0989abcda888ff59c838caffb X-VCS-Branch: master Date: Thu, 25 Nov 2021 04:26:19 +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: 3cb9c049-1d5f-4b01-8a9a-87308a742780 X-Archives-Hash: 3f36003d123d05bc4e1de522c0070587 commit: d429e4f81bf613d0989abcda888ff59c838caffb Author: Sam James gentoo org> AuthorDate: Thu Nov 25 04:25:27 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Nov 25 04:25:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d429e4f8 sci-libs/indilib: skip long-suffering base64 test on ppc*, sparc No point in holding back stabilisations for months until we finally get fed up and stable it anyway. We know this test fails, it's been reported upstream, and it's not a regression, so let's skip it so we have an accurate idea of what the baseline is on these arches. Bug: https://bugs.gentoo.org/763126 Signed-off-by: Sam James gentoo.org> sci-libs/indilib/indilib-1.9.3.ebuild | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/sci-libs/indilib/indilib-1.9.3.ebuild b/sci-libs/indilib/indilib-1.9.3.ebuild index 571c90b05d63..5291dd21585f 100644 --- a/sci-libs/indilib/indilib-1.9.3.ebuild +++ b/sci-libs/indilib/indilib-1.9.3.ebuild @@ -53,5 +53,17 @@ src_configure() { } src_test() { + local myctestargs=() + + if use ppc || use ppc64 || use sparc ; then + # Broken on big endian for quite some time. + # Reported upstream: file needs to be replaced w/ a normal library + # for b64. + # bug #763126 + myctestargs+=( + -E "(test_base64)" + ) + fi + BUILD_DIR="${BUILD_DIR}"/test cmake_src_test }