Date: Thursday, May 30, 2019 @ 11:21:15 Author: jelle Revision: 474617
Add python2-scipy since scipy no longer supports Python3 Added: python2-scipy/ python2-scipy/repos/ python2-scipy/trunk/ python2-scipy/trunk/PKGBUILD ----------+ PKGBUILD | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) Added: python2-scipy/trunk/PKGBUILD =================================================================== --- python2-scipy/trunk/PKGBUILD (rev 0) +++ python2-scipy/trunk/PKGBUILD 2019-05-30 11:21:15 UTC (rev 474617) @@ -0,0 +1,63 @@ +# Maintainer: Thomas Dziedzic < gostrc at gmail > +# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> +# Contributor: Ray Rashif <[email protected]> +# Contributor: Douglas Soares de Andrade <[email protected]> +# Contributor: Bodor Dávid Gábor <[email protected]> +# Contributor: Andrzej Giniewicz <[email protected]> + +_name=scipy +pkgname=python2-scipy +pkgver=1.2.1 +pkgrel=1 +pkgdesc="SciPy is open-source software for mathematics, science, and engineering." +arch=('x86_64') +url="https://www.scipy.org/" +license=('BSD') +makedepends=('gcc-fortran' 'python2-numpy' 'python2-setuptools') +checkdepends=('python2-pytest') +depends=('python2-numpy') +optdepends=('python2-pillow: for image saving module') +#source=("https://github.com/scipy/scipy/releases/download/v${pkgver}/scipy-${pkgver}.tar.xz") +source=("https://pypi.python.org/packages/source/${_name:0:1}/${_name}/${_name}-${pkgver}.tar.gz") +sha512sums=('80caf9af93046c0d58829a61eb90d824aabe8a53f3e7d8a72efc44accaa3299d1e22adbb4852ed192cee6e47aafbb4ebea3115233ed11f1ef05dd373866b0243') + +build() { + # required for gfortran + export LDFLAGS="-Wall -shared" + + cd scipy-${pkgver} + + 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 config_fc --fcompiler=gnu95 build +} + +check() { + cd scipy-${pkgver} + + # we need to do a temp install so we can import scipy + # also, the tests must not be run from the scipy source directory + export LDFLAGS="-Wall -shared" + + python2 setup.py config_fc --fcompiler=gnu95 install \ + --prefix=/usr --root=${srcdir}/test --optimize=1 + export PYTHONPATH=${srcdir}/test/usr/lib/python2.7/site-packages + cd ${srcdir} + python2 -c "from scipy import test; test('full')" +} + +package() { + cd scipy-${pkgver} + export LDFLAGS="-Wall -shared" + + python2 setup.py config_fc --fcompiler=gnu95 install \ + --prefix=/usr --root=${pkgdir} --optimize=1 + + install -Dm644 LICENSE.txt \ + "${pkgdir}/usr/share/licenses/python2-scipy/LICENSE" +} + +# vim:set ts=2 sw=2 et:
