X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx1.tetrasec.net (mx1.tetrasec.net [74.117.190.25]) by lists.alpinelinux.org (Postfix) with ESMTP id 0B0BDF831CD for ; Tue, 19 Mar 2019 14:21:37 +0000 (UTC) Received: from mx1.tetrasec.net (mail.local [127.0.0.1]) by mx1.tetrasec.net (Postfix) with ESMTP id 9CEB69E237A; Tue, 19 Mar 2019 14:21:36 +0000 (UTC) Received: from ncopa-desktop.copa.dup.pw (67.63.200.37.customer.cdi.no [37.200.63.67]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: alpine@tanael.org) by mx1.tetrasec.net (Postfix) with ESMTPSA id 9EA8D9E1CD7; Tue, 19 Mar 2019 14:21:35 +0000 (UTC) Date: Tue, 19 Mar 2019 15:21:30 +0100 From: Natanael Copa To: Drew DeVault Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [alpine-aports] [PATCH] main/py-faker: disable check on armhf Message-ID: <20190319152130.221688fe@ncopa-desktop.copa.dup.pw> In-Reply-To: <20190319141457.21708-1-sir@cmpwn.com> References: <20190319141457.21708-1-sir@cmpwn.com> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; x86_64-alpine-linux-musl) X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Tue, 19 Mar 2019 08:14:57 -0600 Drew DeVault wrote: > --- > main/py-faker/APKBUILD | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/main/py-faker/APKBUILD b/main/py-faker/APKBUILD > index 9d58b1ab22..6101dd19e5 100644 > --- a/main/py-faker/APKBUILD > +++ b/main/py-faker/APKBUILD > @@ -17,6 +17,13 @@ checkdepends=" > source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" > builddir=$srcdir/$_pkgname-$pkgver > > +case $arch in > + armhf) > + # check is broken on armhf due to time_t issues > + options="!check" > + ;; > +esac > + > prepare() { > cd "$builddir" > # They erroneously require a specific version of pytest NACK. this was fixed in upstream in newer release. Upstream issue: https://github.com/joke2k/faker/issues/912 Thanks! -nc --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---