X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx12.valuehost.ru (mx12.valuehost.ru [217.112.42.215]) by lists.alpinelinux.org (Postfix) with ESMTP id 328315C667D for ; Mon, 3 Dec 2018 10:54:13 +0000 (GMT) Received: from mx7.valuehost.ru (unknown [127.0.0.255]) by mx12.valuehost.ru (Postfix) with ESMTP id 69A314C4AA for ; Mon, 3 Dec 2018 13:54:12 +0300 (MSK) From: alpine-mips-patches Date: Mon, 3 Dec 2018 10:26:31 +0000 Subject: [alpine-aports] [PATCH] community/biber: disable long year test on mips{el} To: alpine-aports@lists.alpinelinux.org Message-Id: <20181203105412.69A314C4AA@mx12.valuehost.ru> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Re-organize CARCH check for brevity (so match armel as well) and use mipsel* not mipsel to cover out-of-tree mipseln8hf. --- community/biber/APKBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/community/biber/APKBUILD b/community/biber/APKBUILD index 7f86e89a4d..8b83a6eac7 100644 --- a/community/biber/APKBUILD +++ b/community/biber/APKBUILD @@ -28,9 +28,10 @@ builddir="$srcdir/$pkgname-$pkgver" prepare() { cd "$builddir" # Disable long year tests on 32 bit - if [ $CARCH = "x86" ] || [ $CARCH = "armhf" ] || [ $CARCH = "armv7" ]; then + case "$CARCH" in arm*|mips|mipsel*|x86) sed -i '/17000002/ s+.*+eq_or_diff("dummy", "dummy", "skip 32 bit");+' t/dateformats.t - fi + ;; + esac perl Build.PL installdirs=vendor } -- 2.19.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---