[arch-commits] Commit in python2-scipy/repos (2 files)

Antonio Rojas arojas at archlinux.org
Thu May 30 17:27:00 UTC 2019


    Date: Thursday, May 30, 2019 @ 17:27:00
  Author: arojas
Revision: 474913

archrelease: copy trunk to community-x86_64

Added:
  python2-scipy/repos/community-x86_64/
  python2-scipy/repos/community-x86_64/PKGBUILD
    (from rev 474911, python2-scipy/trunk/PKGBUILD)

----------+
 PKGBUILD |   62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 62 insertions(+)

Copied: python2-scipy/repos/community-x86_64/PKGBUILD (from rev 474911, python2-scipy/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2019-05-30 17:27:00 UTC (rev 474913)
@@ -0,0 +1,62 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
+# Contributor: Ray Rashif <schiv at archlinux.org>
+# Contributor: Douglas Soares de Andrade <dsa at aur.archlinux.org>
+# Contributor: Bodor Dávid Gábor <david.gabor.bodor at gmail.com>
+# Contributor: Andrzej Giniewicz <gginiu at gmail.com>
+
+_name=scipy
+pkgname=python2-scipy
+pkgver=1.2.1
+pkgrel=2
+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
+}
+



More information about the arch-commits mailing list