Date: Thursday, May 30, 2019 @ 17:26:41 Author: arojas Revision: 474910
Rebuild to fix pkgbase mismatch Modified: python2-scipy/trunk/PKGBUILD ----------+ PKGBUILD | 37 ++++++++++++++++++------------------- 1 file changed, 18 insertions(+), 19 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-05-30 17:25:10 UTC (rev 474909) +++ PKGBUILD 2019-05-30 17:26:41 UTC (rev 474910) @@ -1,4 +1,5 @@ -# Maintainer: Thomas Dziedzic < gostrc at gmail > +# Maintainer: Antonio Rojas <[email protected]> +# Contributor: 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]> @@ -8,17 +9,17 @@ _name=scipy pkgname=python2-scipy pkgver=1.2.1 -pkgrel=1 +pkgrel=2 pkgdesc="SciPy is open-source software for mathematics, science, and engineering." -arch=('x86_64') +arch=(x86_64) url="https://www.scipy.org/" -license=('BSD') -makedepends=('gcc-fortran' 'python2-numpy' 'python2-setuptools') -checkdepends=('python2-pytest') -depends=('python2-numpy') +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") +#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() { @@ -25,8 +26,7 @@ # required for gfortran export LDFLAGS="-Wall -shared" - cd scipy-${pkgver} - + 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 @@ -36,7 +36,7 @@ } check() { - cd scipy-${pkgver} + 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 @@ -43,21 +43,20 @@ 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} + --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} + cd scipy-$pkgver export LDFLAGS="-Wall -shared" python2 setup.py config_fc --fcompiler=gnu95 install \ - --prefix=/usr --root=${pkgdir} --optimize=1 + --prefix=/usr --root="$pkgdir" --optimize=1 install -Dm644 LICENSE.txt \ - "${pkgdir}/usr/share/licenses/python2-scipy/LICENSE" + "$pkgdir"/usr/share/licenses/python2-scipy/LICENSE } -# vim:set ts=2 sw=2 et:
