mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-31 14:22:14 +01:00
Attached is a patch to update testing/openblas to 0.2.17. This required replacing one use of sys_siglist[] with strsignal(). Also, due to some convolutions of the build system, setting CFLAGS in the environment rather than passing it to make caused repeated definitions of CNAME/ASMNAME/ASMFNAME/... in the gcc invocation, making for a very noisy build. Thanks, Isaac Dunham >From a629abe4458599ab57041e5158430e4db4736308 Mon Sep 17 00:00:00 2001 From: Isaac Dunham <ibid.ag@gmail.com> Date: Fri, 25 Mar 2016 12:05:29 -0700 Subject: [PATCH] testing/openblas: update to 0.2.17 Use strsignal() instead of sys_siglist[]. While here, pass CFLAGS on the command line rather than in the environment because the latter confuses make. (This fixes all the warnings about CNAME/ASMNAME/... getting defined multiple times.)
63 lines
2.2 KiB
Plaintext
63 lines
2.2 KiB
Plaintext
# Contributor: Isaac Dunham <ibid.ag@gmail.com>
|
|
# Maintainer: Isaac Dunham <ibid.ag@gmail.com>
|
|
pkgname=openblas
|
|
pkgver=0.2.17
|
|
pkgrel=0
|
|
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 perl linux-headers"
|
|
install=""
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::http://github.com/xianyi/OpenBLAS/archive/v$pkgver.tar.gz
|
|
0001-Use-strsignal-instead-of-sys_siglist.patch
|
|
"
|
|
|
|
_builddir="$srcdir"/OpenBLAS-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
# DYNAMIC_ARCH: supported on x86* only, see https://github.com/xianyi/OpenBLAS/issues/709
|
|
case "$CARCH" in
|
|
x86 | x86_64) DYNAMIC_ARCH=1 ;;
|
|
*) DYNAMIC_ARCH=0 ;;
|
|
esac
|
|
|
|
# USE_OPENMP=0: see GCC bug 60035
|
|
# NO_AFFINITY: don't expect to work on musl, also breaks R
|
|
# NUM_THREADS=32: match CONFIG_NR_CPUS
|
|
FLAGS="USE_OPENMP=0 NO_LAPACK=0 NUM_THREADS=32 MAJOR_VERSION=3 \
|
|
NO_AFFINITY=1 DYNAMIC_ARCH=$DYNAMIC_ARCH"
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
#
|
|
CFLAGS= make CFLAGS="$CFLAGS" $FLAGS PREFIX=/usr TOPDIR="$_builddir" || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
mkdir -pm 0755 "$pkgdir/usr/lib" "$pkgdir/usr/include" \
|
|
"$pkgdir/usr/share/doc/$pkgname" || return 1
|
|
make $FLAGS PREFIX="$pkgdir/usr" install || return 1
|
|
for FILE in *.txt *.md LICENSE; do
|
|
install -m 0644 $FILE "$pkgdir/usr/share/doc/$pkgname" || return 1
|
|
done
|
|
}
|
|
md5sums="664a12807f2a2a7cda4781e3ab2ae0e1 openblas-0.2.17.tar.gz
|
|
ddce6ae8c2af85ebdd14e9150960d1c6 0001-Use-strsignal-instead-of-sys_siglist.patch"
|
|
sha256sums="0fe836dfee219ff4cadcc3567fb2223d9e0da5f60c7382711fb9e2c35ecf0dbf openblas-0.2.17.tar.gz
|
|
4e662d5dd5d03e0067c856d3c359d4306a8fb1ad66c2a70a7cf851decf5fdea3 0001-Use-strsignal-instead-of-sys_siglist.patch"
|
|
sha512sums="ae49294e0d4903d5f385c256956ac950a75cbc4f828a31c7c324e2512831afa955c22d71e965256c355d38e45cde1987ee2babb12ba9ab9e99323e476790b507 openblas-0.2.17.tar.gz
|
|
d3dd7cad2c0bc5414642cf51a46bc57e681c4449bd829bf304c743c44c53f29d90ba0c43233bf5a7cce3e6b057d1c1cef27d0ccffecb50125993b34c913477c8 0001-Use-strsignal-instead-of-sys_siglist.patch"
|