diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-22 13:06:09 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-22 13:06:44 +0200 |
commit | 83871bf93fc5eca0aedd7d04ae968085387c0fdb (patch) | |
tree | d114f352f03206f83da3b85e97f377b7ef757079 | |
parent | 276fda8e46d3c690947a46fb92ec0940b7b449a4 (diff) | |
download | aports-83871bf93fc5eca0aedd7d04ae968085387c0fdb.tar.bz2 aports-83871bf93fc5eca0aedd7d04ae968085387c0fdb.tar.xz |
community/arpack: try to run check() on ppc64le w/o fakeroot
Tests from arpack are hanging on ppc64le with abuild but tests work when
running manually (make check) and all tests pass. It can be an issue in
fakeroot.
-rw-r--r-- | community/arpack/APKBUILD | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/community/arpack/APKBUILD b/community/arpack/APKBUILD index 0626b9dcbf..89e4a0aaa6 100644 --- a/community/arpack/APKBUILD +++ b/community/arpack/APKBUILD @@ -15,6 +15,12 @@ subpackages="$pkgname-dev $pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/opencollab/$_pkgname/archive/$pkgver.tar.gz" builddir="$srcdir/$_pkgname-$pkgver" +# Tests hang on ppc64le when running via abuild, +# try to run them with fakeroot disabled. +case "$CARCH" in + ppc64le) options="!checkroot";; +esac + _ilp64=no _builddir64="$builddir-64" if [ "$CARCH" = "x86_64" ]; then |