Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/indilib/
Date: Fri, 26 Nov 2021 04:32:39
Message-Id: 1637901141.fe5576b173d07cc7427cc151055ea0ba3a42d10f.sam@gentoo
1 commit: fe5576b173d07cc7427cc151055ea0ba3a42d10f
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 26 04:32:21 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 26 04:32:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe5576b1
7
8 sci-libs/indilib: backport test skip to 1.9.2
9
10 Bug: https://bugs.gentoo.org/763126
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 sci-libs/indilib/indilib-1.9.2.ebuild | 12 ++++++++++++
14 1 file changed, 12 insertions(+)
15
16 diff --git a/sci-libs/indilib/indilib-1.9.2.ebuild b/sci-libs/indilib/indilib-1.9.2.ebuild
17 index f5901ff88e0f..d1a9b7106bd0 100644
18 --- a/sci-libs/indilib/indilib-1.9.2.ebuild
19 +++ b/sci-libs/indilib/indilib-1.9.2.ebuild
20 @@ -53,5 +53,17 @@ src_configure() {
21 }
22
23 src_test() {
24 + local myctestargs=()
25 +
26 + if use ppc || use ppc64 || use sparc ; then
27 + # Broken on big endian for quite some time.
28 + # Reported upstream: file needs to be replaced w/ a normal library
29 + # for b64.
30 + # bug #763126
31 + myctestargs+=(
32 + -E "(test_base64)"
33 + )
34 + fi
35 +
36 BUILD_DIR="${BUILD_DIR}"/test cmake_src_test
37 }