From 580bff76c129170dd6484e3eb893d285fc5c8a24 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 22 Nov 2017 21:46:34 +0000 Subject: [PATCH] community/lua-http: disable check for ppc64le the check hangs so disable for now. https://github.com/daurnimator/lua-http/issues/87 --- community/lua-http/APKBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/community/lua-http/APKBUILD b/community/lua-http/APKBUILD index cce8564fd54..b46effe6c56 100644 --- a/community/lua-http/APKBUILD +++ b/community/lua-http/APKBUILD @@ -17,8 +17,9 @@ builddir="$srcdir/$pkgname-$pkgver" case "$CARCH" in # luajit is not available for s390x s390x) _luajit="";; - # XXX: Some tests fail with "Address not available". - aarch64 | armhf) options="!check";; + # FIXME: Some tests fail with "Address not available". + # and ppc64le hangs + aarch64 | armhf | ppc64le) options="!check";; *) checkdepends="$checkdepends luajit" _luajit="jit";; esac