X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-qk0-f176.google.com (mail-qk0-f176.google.com [209.85.220.176]) by lists.alpinelinux.org (Postfix) with ESMTP id 782F95C5325 for ; Wed, 12 Apr 2017 01:00:34 +0000 (GMT) Received: by mail-qk0-f176.google.com with SMTP id f133so11821244qke.2 for ; Tue, 11 Apr 2017 18:00:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=flatglobe.org; s=google; h=from:to:subject:date:message-id:in-reply-to:references; bh=l1qJZJ614flbzRkKNLDxJf9WrEHk+r8fJ0KzaLIsG9Y=; b=ZLEAHtiTWSvFC8v2JFXTCSZRKW7DsN5wCgaJnxYO745ETvEq21A0ejAV8Z3ld6tcuv Pg7+5e92IVhfxNIfjL6nOCM50Wfn6TKMCYzORxU24wMSQ4HyN0l5KL4dUHcdMquxeN3V d0CxvCzXIMFT9yGmOYMkX0GQYtVRsy1sUK0q0= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=l1qJZJ614flbzRkKNLDxJf9WrEHk+r8fJ0KzaLIsG9Y=; b=SgbLrfI7Q1O/KdYoD4SYq8O2fiIlfCOQuNhUtBBGoVo0iGxZpLr8D/XkvJFdD7g6tM kJBYoO2aKTfbyhXAfbfCp4o7IE0AQREYeR6wTfbYxeoePTIPTc/sIy32ckwXv8/ZBwaQ 0ppg+etIg8/j7oWwzAX2rIbt1ISn2nb7eWTQzxaNvqB+TYO2/AHnu4JMG5mYryHuxZ3M M/4tfFeU7oJRbBLplY8In4LzqL3vT2KHxcYu628VuIuqFWey/GOPGlGAAHLGtcwho1hL 3FRDM/I4mPA/w1bci6N2LX8JtM0U52vqsY+bp34bGvJ7RbxeebfCPyZHqocokwViyWt6 oUIg== X-Gm-Message-State: AFeK/H3/NxZ6vpjxcVHzULmUwG9dz6kHHBMXt5f4rM99cXnfGO1RVVp5Dvy0DSLPPY0gnw== X-Received: by 10.55.201.202 with SMTP id m71mr49208032qkl.31.1491958833738; Tue, 11 Apr 2017 18:00:33 -0700 (PDT) Received: from localhost.localdomain (cpe-204-210-151-44.hvc.res.rr.com. [204.210.151.44]) by smtp.gmail.com with ESMTPSA id 1sm12296600qtb.40.2017.04.11.18.00.32 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 11 Apr 2017 18:00:32 -0700 (PDT) From: "Tuan M. Hoang" To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 4/6] community/[various]: no s390x support for openblas yet Date: Tue, 11 Apr 2017 21:00:11 -0400 Message-Id: <1491958811-24506-1-git-send-email-tmhoang@flatglobe.org> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1491958776-24388-1-git-send-email-tmhoang@flatglobe.org> References: <1491958776-24388-1-git-send-email-tmhoang@flatglobe.org> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- community/arpack/APKBUILD | 2 +- community/openblas/APKBUILD | 2 +- community/py-numpy/APKBUILD | 2 +- community/suitesparse/APKBUILD | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/community/arpack/APKBUILD b/community/arpack/APKBUILD index 3ffe1301ed..7e760ac47d 100644 --- a/community/arpack/APKBUILD +++ b/community/arpack/APKBUILD @@ -6,7 +6,7 @@ pkgver=3.4.0 pkgrel=2 pkgdesc="Collection of Fortran77 subroutines designed to solve large scale eigenvalue problems" url="https://github.com/opencollab/arpack-ng" -arch="all !ppc64le" #openblas not avail on excluded platform +arch="all !ppc64le !s390x" #openblas not avail on excluded platform license="BSD" depends="" depends_dev="openblas-dev" diff --git a/community/openblas/APKBUILD b/community/openblas/APKBUILD index fd7e59af10..8c1cd2b091 100644 --- a/community/openblas/APKBUILD +++ b/community/openblas/APKBUILD @@ -8,7 +8,7 @@ pkgrel=2 pkgdesc="A fast BSD-licensed BLAS based on gotoBLAS2, with LAPACK" url="http://www.openblas.net" # does not build yet on ppc64le -arch="all" +arch="all !s390x" license="BSD" depends="" depends_dev="gfortran" diff --git a/community/py-numpy/APKBUILD b/community/py-numpy/APKBUILD index 6c7cfb9ae1..329244db46 100644 --- a/community/py-numpy/APKBUILD +++ b/community/py-numpy/APKBUILD @@ -7,7 +7,7 @@ pkgver=1.12.1 pkgrel=1 pkgdesc="Scientific tools for Python" url="http://numpy.scipy.org/" -arch="all " +arch="all !s390x" license="BSD" options="!check" makedepends="python2-dev py-setuptools python3-dev diff --git a/community/suitesparse/APKBUILD b/community/suitesparse/APKBUILD index 34433c5189..fd80579144 100644 --- a/community/suitesparse/APKBUILD +++ b/community/suitesparse/APKBUILD @@ -6,7 +6,7 @@ pkgver=4.5.3 pkgrel=0 pkgdesc="A collection of sparse matrix libraries" url="http://faculty.cse.tamu.edu/davis/suitesparse.html" -arch="all" +arch="all !s390x" license="GPL" depends_dev="openblas-dev" makedepends="$depends_dev" -- 2.12.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---