X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-pd0-f175.google.com (mail-pd0-f175.google.com [209.85.192.175]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 37368DC01FE for ; Tue, 9 Sep 2014 06:48:15 +0000 (UTC) Received: by mail-pd0-f175.google.com with SMTP id z10so8317088pdj.6 for ; Mon, 08 Sep 2014 23:48:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=In69DfxuR7/E3nG0ktAUtGxPZZYkQAXuWD+0rSkwWtE=; b=EY1+n+GS+LJunhzKO4hOHegIgQNkEJRiG2HHB6Na6JrsTzOvws6XKhc2jJzv4T3i5y gSnWxLXTtpR/auaaXbW5rozvHcMSRHxBMZuT9e4YV8j803mRYUMGKR22aCw3W7+LL02k XCRbpPNHZq+RrReKzoZUq4pxPFZhdSA/D6EFh2/iTeOuhPYIC21f/o9tc2FLI1IAErHv REbXy2kjVJLeV1qRA3ym1d1zn6pOm/qfHz3JY5pG7iyLwVt/1pIVBKHqso10hfqtxKvD k8O/bc24NHXym9DY8Ijq9RrW8paEko2DWYJOavs5DCk5dYI9IhWWPWVENPkeKks7VrtS pkLA== X-Received: by 10.66.157.231 with SMTP id wp7mr7780695pab.151.1410245293893; Mon, 08 Sep 2014 23:48:13 -0700 (PDT) Received: from localhost.localdomain ([50.0.225.234]) by mx.google.com with ESMTPSA id nm6sm10727758pdb.60.2014.09.08.23.48.12 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 08 Sep 2014 23:48:13 -0700 (PDT) From: Isaac Dunham To: alpine-devel@lists.alpinelinux.org Cc: Isaac Dunham Subject: [alpine-devel] [PATCH] testing/openblas: add missing makedepend on perl Date: Mon, 8 Sep 2014 23:48:05 -0700 Message-Id: <1410245285-10242-1-git-send-email-ibid.ag@gmail.com> X-Mailer: git-send-email 2.1.0 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/openblas/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/openblas/APKBUILD b/testing/openblas/APKBUILD index ce6f2fc..2718866 100644 --- a/testing/openblas/APKBUILD +++ b/testing/openblas/APKBUILD @@ -2,14 +2,14 @@ # Maintainer: Isaac Dunham pkgname=openblas pkgver=0.2.11 -pkgrel=0 +pkgrel=1 pkgdesc="A fast BSD-licensed BLAS based on gotoBLAS2, with LAPACK" url="http://www.openblas.net" arch="all" license="BSD" depends="" depends_dev="gfortran" -makedepends="$depends_dev" +makedepends="$depends_dev perl" install="" subpackages="$pkgname-dev $pkgname-doc" source="$pkgname-$pkgver.tar.gz::http://github.com/xianyi/OpenBLAS/archive/v$pkgver.tar.gz -- 2.1.0 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---