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 1C6E6158086 for ; Fri, 26 Nov 2021 04:32:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4EC79E07FE; Fri, 26 Nov 2021 04:32:38 +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 376F8E07FE for ; Fri, 26 Nov 2021 04:32:38 +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 3CBC3343111 for ; Fri, 26 Nov 2021 04:32:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D01491C6 for ; Fri, 26 Nov 2021 04:32:35 +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: <1637901141.fe5576b173d07cc7427cc151055ea0ba3a42d10f.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.2.ebuild X-VCS-Directories: sci-libs/indilib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: fe5576b173d07cc7427cc151055ea0ba3a42d10f X-VCS-Branch: master Date: Fri, 26 Nov 2021 04:32:35 +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: 3620c361-6d3c-4234-bec6-45797be30a13 X-Archives-Hash: 4a12b5ce5ab43afb81caa0e0648dc231 commit: fe5576b173d07cc7427cc151055ea0ba3a42d10f Author: Sam James gentoo org> AuthorDate: Fri Nov 26 04:32:21 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Nov 26 04:32:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe5576b1 sci-libs/indilib: backport test skip to 1.9.2 Bug: https://bugs.gentoo.org/763126 Signed-off-by: Sam James gentoo.org> sci-libs/indilib/indilib-1.9.2.ebuild | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/sci-libs/indilib/indilib-1.9.2.ebuild b/sci-libs/indilib/indilib-1.9.2.ebuild index f5901ff88e0f..d1a9b7106bd0 100644 --- a/sci-libs/indilib/indilib-1.9.2.ebuild +++ b/sci-libs/indilib/indilib-1.9.2.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 }