summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9b6e208999712914eace5b047958c175ed80af0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96

# Maintainer: Thomas Dziedzic < gostrc at gmail >
# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
# Contributor: Ray Rashif <schiv@archlinux.org>
# Contributor: Douglas Soares de Andrade <dsa@aur.archlinux.org>
# Contributor: Bodor Dávid Gábor <david.gabor.bodor@gmail.com>
# Contributor: Andrzej Giniewicz <gginiu@gmail.com>
pkgbase="python-scipy-mkl"
pkgname="python-scipy-mkl"
true && pkgname=('python-scipy-mkl' 'python2-scipy-mkl')

pkgver=0.18.1
pkgrel=1
pkgdesc="SciPy is open-source software for mathematics, science, and engineering. Compiled with intel MKL"
arch=('i686' 'x86_64')
url="http://www.scipy.org/"
license=('BSD')
makedepends=('intel-fortran-compiler' 'intel-compiler-base' 'intel-mkl' 'python-numpy' 'python2-numpy' 'swig' 'cython' 'cython2')
checkdepends=('python-nose' 'python2-nose')
source=("https://codeload.github.com/scipy/scipy/tar.gz/v0.18.1" )

md5sums=( '96d0dd6b0b584b2693fc7b08fdda48cd' )

build() {
  unset LDFLAGS
  unset FFLAGS
  export LDFLAGS="" 
  export FFLAGS="-fPIC -openmp"
  
  #mv scipy-0.18.1 scipy-0.18.1
  
  # Changing the arithmetic parameter (Thanks to Fabrizio Castellano)
  #sed -i "s/\#define\ UNK\ 1/\#define\ IBMPC\ 1/" \
  #  scipy-${pkgver}/scipy/special/cephes/mconf.h

  
  # 2 builds
  cp -r scipy-${pkgver} scipy-${pkgver}-py2

  # build for python3
  cd scipy-${pkgver}
  #patch -Np1   -i $srcdir/0001-GEN-regenerate-C-sources-with-Cython-0.17.1.patch

  python setup.py build --fcompiler=intelem --compiler=intel

  # build for python2
  cd ../scipy-${pkgver}-py2

  for file in $(find . -name '*.py' -print); do
       sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
       sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
  done

  python2 setup.py build --fcompiler=intelem --compiler=intel
}

check() {
  cd scipy-${pkgver}
# figure out how to run tests in the source tree easily
#  python -c "from scipy import test; test('full')"

  cd ../scipy-${pkgver}-py2
# figure out how to run tests in the source tree easily
#  python2 -c "from scipy import test; test('full')"
}

package_python2-scipy-mkl() {
  depends=('python2-numpy-mkl' 'qhull' 'python2-nose' )
  provides=('python2-scipy=${pkgver}' 'scipy=${pkgver}')
  replaces=('python2-scipy')
  conflicts=('python2-scipy')

  cd scipy-${pkgver}-py2

  python2 setup.py config_fc --fcompiler=intel install \
    --prefix=/usr --root=${pkgdir} --optimize=1

  install -Dm644 LICENSE.txt \
    "${pkgdir}/usr/share/licenses/python2-scipy/LICENSE"
}

package_python-scipy-mkl() {
  depends=('python-numpy-mkl' 'qhull' 'python-nose')
  provides=('python3-scipy=${pkgver}' 'python-scipy=${pkgver}' 'scipy=${pkgver}')
  replaces=('python-scipy')
  conflicts=('python-scipy')
  

  cd scipy-${pkgver}

  python setup.py config_fc --fcompiler=intel install \
    --prefix=/usr --root=${pkgdir} --optimize=1

  install -Dm644 LICENSE.txt \
    "${pkgdir}/usr/share/licenses/python-scipy/LICENSE"
}