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

2020-11-09 Thread Felix Yan via arch-commits
Date: Monday, November 9, 2020 @ 20:11:51
  Author: felixonmars
Revision: 748138

archrelease: copy trunk to community-staging-x86_64

Added:
  python-scipy/repos/community-staging-x86_64/
  python-scipy/repos/community-staging-x86_64/PKGBUILD
(from rev 748137, python-scipy/trunk/PKGBUILD)

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

Copied: python-scipy/repos/community-staging-x86_64/PKGBUILD (from rev 748137, 
python-scipy/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-09 20:11:51 UTC (rev 748138)
@@ -0,0 +1,45 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Ray Rashif 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Bodor Dávid Gábor 
+# Contributor: Andrzej Giniewicz 
+
+_name=scipy
+pkgname=python-scipy
+pkgver=1.5.4
+pkgrel=2
+pkgdesc="SciPy is open-source software for mathematics, science, and 
engineering."
+arch=('x86_64')
+url="https://www.scipy.org/";
+license=(BSD)
+depends=(python-numpy)
+provides=(scipy)
+makedepends=(gcc-fortran python-setuptools pybind11)
+checkdepends=(python-pytest)
+optdepends=('python-pillow: for image saving module')
+source=("https://pypi.python.org/packages/source/${_name:0:1}/$_name/$_name-$pkgver.tar.gz";)
+sha256sums=('4a453d5e5689de62e5d38edf40af3f17560bfd63c9c5bd228c18c1f99afa155b')
+
+build() {
+  cd scipy-${pkgver}
+  python setup.py config_fc build
+}
+
+check() {
+  cd scipy-${pkgver}
+  python setup.py config_fc install \
+--prefix=/usr --root="$srcdir"/test --optimize=1
+  export PYTHONPATH="$srcdir"/test/usr/lib/python3.9/site-packages
+  cd ..
+  python -c "from scipy import test; test('full')"
+}
+
+package() {
+  cd scipy-$pkgver
+  python3 setup.py config_fc install \
+--prefix=/usr --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname
+}


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

2020-06-21 Thread Antonio Rojas via arch-commits
Date: Sunday, June 21, 2020 @ 22:16:19
  Author: arojas
Revision: 650299

archrelease: copy trunk to community-testing-x86_64

Added:
  python-scipy/repos/community-testing-x86_64/
  python-scipy/repos/community-testing-x86_64/PKGBUILD
(from rev 650298, python-scipy/trunk/PKGBUILD)

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

Copied: python-scipy/repos/community-testing-x86_64/PKGBUILD (from rev 650298, 
python-scipy/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-06-21 22:16:19 UTC (rev 650299)
@@ -0,0 +1,57 @@
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Ray Rashif 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Bodor Dávid Gábor 
+# Contributor: Andrzej Giniewicz 
+
+_name=scipy
+pkgname=python-scipy
+pkgver=1.5.0
+pkgrel=1
+pkgdesc="SciPy is open-source software for mathematics, science, and 
engineering."
+arch=('x86_64')
+url="https://www.scipy.org/";
+license=('BSD')
+depends=('python-numpy')
+provides=('python3-scipy' 'scipy')
+makedepends=('gcc-fortran' 'python-setuptools' 'pybind11')
+checkdepends=('python-pytest')
+optdepends=('python-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=('4c981a3125a88593cbc5a17417022a5db8f6ccb4c1c24e78afeb9bb26428b81d2d0fe9965caa418753b1bbbda2fa30533fa1307aac6ab168458d68f7b46049be')
+
+build() {
+  # required for gfortran
+  export LDFLAGS="-Wall -shared"
+
+  cd scipy-${pkgver}
+  python setup.py config_fc --fcompiler=gnu95 build
+}
+
+check() {
+  # 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"
+
+  cd scipy-${pkgver}
+  python3 setup.py config_fc --fcompiler=gnu95 install \
+--prefix=/usr --root=${srcdir}/test --optimize=1
+  export PYTHONPATH=${srcdir}/test/usr/lib/python3.8/site-packages
+  cd "${srcdir}"
+  python -c "from scipy import test; test('full')"
+}
+
+package() {
+  export LDFLAGS="-Wall -shared"
+
+  cd scipy-${pkgver}
+  python3 setup.py config_fc --fcompiler=gnu95 install \
+--prefix=/usr --root="${pkgdir}" --optimize=1
+
+  install -Dm644 LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python-scipy/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-01-02 Thread Antonio Rojas via arch-commits
Date: Thursday, January 2, 2020 @ 20:36:26
  Author: arojas
Revision: 546654

archrelease: copy trunk to community-testing-x86_64

Added:
  python-scipy/repos/community-testing-x86_64/
  python-scipy/repos/community-testing-x86_64/PKGBUILD
(from rev 546653, python-scipy/trunk/PKGBUILD)

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

Copied: python-scipy/repos/community-testing-x86_64/PKGBUILD (from rev 546653, 
python-scipy/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-01-02 20:36:26 UTC (rev 546654)
@@ -0,0 +1,63 @@
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Ray Rashif 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Bodor Dávid Gábor 
+# Contributor: Andrzej Giniewicz 
+
+_name=scipy
+pkgname=python-scipy
+pkgver=1.4.1
+pkgrel=1
+pkgdesc="SciPy is open-source software for mathematics, science, and 
engineering."
+arch=('x86_64')
+url="https://www.scipy.org/";
+license=('BSD')
+depends=('python-numpy')
+provides=('python3-scipy' 'scipy')
+makedepends=('gcc-fortran' 'python-setuptools' 'pybind11')
+checkdepends=('python-pytest')
+optdepends=('python-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=('79407a2cbb4ba29c0941570181df4d7835e5791e50a3abef9b63c2fc5b15308a2e4964eb71cdebbee8cd2dcb8e497cf92fe50ee21fb12cac3013ea5e0466b25d')
+
+build() {
+  # required for gfortran
+  export LDFLAGS="-Wall -shared"
+
+  # 2 builds
+  cp -r scipy-${pkgver} scipy-${pkgver}-py2
+
+  # build for python3
+  cd scipy-${pkgver}
+  python3 setup.py config_fc --fcompiler=gnu95 build
+
+}
+
+check() {
+  # 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"
+
+  cd scipy-${pkgver}
+  python3 setup.py config_fc --fcompiler=gnu95 install \
+--prefix=/usr --root=${srcdir}/test --optimize=1
+  export PYTHONPATH=${srcdir}/test/usr/lib/python3.8/site-packages
+  cd ${srcdir}
+  python -c "from scipy import test; test('full')"
+
+}
+
+package() {
+  export LDFLAGS="-Wall -shared"
+
+  cd scipy-${pkgver}
+  python3 setup.py config_fc --fcompiler=gnu95 install \
+--prefix=/usr --root=${pkgdir} --optimize=1
+
+  install -Dm644 LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python-scipy/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-10-25 Thread Felix Yan via arch-commits
Date: Saturday, October 26, 2019 @ 05:48:52
  Author: felixonmars
Revision: 520188

archrelease: copy trunk to community-staging-x86_64

Added:
  python-scipy/repos/community-staging-x86_64/
  python-scipy/repos/community-staging-x86_64/PKGBUILD
(from rev 520187, python-scipy/trunk/PKGBUILD)

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

Copied: python-scipy/repos/community-staging-x86_64/PKGBUILD (from rev 520187, 
python-scipy/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-10-26 05:48:52 UTC (rev 520188)
@@ -0,0 +1,63 @@
+# Maintainer: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Ray Rashif 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Bodor Dávid Gábor 
+# Contributor: Andrzej Giniewicz 
+
+_name=scipy
+pkgname=python-scipy
+pkgver=1.3.1
+pkgrel=2
+pkgdesc="SciPy is open-source software for mathematics, science, and 
engineering."
+arch=('x86_64')
+url="https://www.scipy.org/";
+license=('BSD')
+depends=('python-numpy')
+provides=('python3-scipy' 'scipy')
+makedepends=('gcc-fortran' 'python-numpy' 'python-setuptools')
+checkdepends=('python-pytest')
+optdepends=('python-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=('672915da782f5a439a3920ad1a200937b8415aeb4f1db2451cf0b5a90ba6e18c69e17e9ff8433f6a7760bbef2434d7b0f6447319faec9bb96fa6841794bfa538')
+
+build() {
+  # required for gfortran
+  export LDFLAGS="-Wall -shared"
+
+  # 2 builds
+  cp -r scipy-${pkgver} scipy-${pkgver}-py2
+
+  # build for python3
+  cd scipy-${pkgver}
+  python3 setup.py config_fc --fcompiler=gnu95 build
+
+}
+
+check() {
+  # 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"
+
+  cd scipy-${pkgver}
+  python3 setup.py config_fc --fcompiler=gnu95 install \
+--prefix=/usr --root=${srcdir}/test --optimize=1
+  export PYTHONPATH=${srcdir}/test/usr/lib/python3.8/site-packages
+  cd ${srcdir}
+  python -c "from scipy import test; test('full')"
+
+}
+
+package() {
+  export LDFLAGS="-Wall -shared"
+
+  cd scipy-${pkgver}
+  python3 setup.py config_fc --fcompiler=gnu95 install \
+--prefix=/usr --root=${pkgdir} --optimize=1
+
+  install -Dm644 LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python-scipy/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-06-30 Thread Felix Yan via arch-commits
Date: Saturday, June 30, 2018 @ 19:56:51
  Author: felixonmars
Revision: 349160

archrelease: copy trunk to community-staging-x86_64

Added:
  python-scipy/repos/community-staging-x86_64/
  python-scipy/repos/community-staging-x86_64/PKGBUILD
(from rev 349159, python-scipy/trunk/PKGBUILD)

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

Copied: python-scipy/repos/community-staging-x86_64/PKGBUILD (from rev 349159, 
python-scipy/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-06-30 19:56:51 UTC (rev 349160)
@@ -0,0 +1,93 @@
+# Maintainer: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Ray Rashif 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Bodor Dávid Gábor 
+# Contributor: Andrzej Giniewicz 
+
+_name=scipy
+pkgname=('python-scipy' 'python2-scipy')
+pkgver=1.1.0
+pkgrel=2
+pkgdesc="SciPy is open-source software for mathematics, science, and 
engineering."
+arch=('x86_64')
+url="http://www.scipy.org/";
+license=('BSD')
+makedepends=('gcc-fortran' 'python-numpy' 'python2-numpy' 'python-setuptools' 
'python2-setuptools')
+checkdepends=('python-pytest' 'python2-pytest')
+#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";)
+md5sums=('aa6bcc85276b6f25e17bcfc4dede8718')
+
+build() {
+  export LDFLAGS="-Wall -shared"
+
+  # 2 builds
+  cp -r scipy-${pkgver} scipy-${pkgver}-py2
+
+  # build for python3
+  cd scipy-${pkgver}
+  python3 setup.py config_fc --fcompiler=gnu95 build
+
+  # 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 config_fc --fcompiler=gnu95 build
+}
+
+check() {
+  # 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"
+
+  cd ${srcdir}/scipy-${pkgver}
+  python3 setup.py config_fc --fcompiler=gnu95 install \
+--prefix=/usr --root=${srcdir}/test --optimize=1
+  export PYTHONPATH=${srcdir}/test/usr/lib/python3.7/site-packages
+  cd ${srcdir}
+  python -c "from scipy import test; test('full')"
+
+  cd ${srcdir}/scipy-${pkgver}-py2
+  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_python-scipy() {
+  depends=('python-numpy')
+  provides=('python3-scipy' 'scipy')
+  optdepends=('python-pillow: for image saving module')
+
+  cd scipy-${pkgver}
+  export LDFLAGS="-Wall -shared"
+
+  python3 setup.py config_fc --fcompiler=gnu95 install \
+--prefix=/usr --root=${pkgdir} --optimize=1
+
+  install -Dm644 LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python-scipy/LICENSE"
+}
+
+package_python2-scipy() {
+  depends=('python2-numpy')
+  optdepends=('python2-pillow: for image saving module')
+  conflicts=('python-scipy<0.9.0')
+
+  cd scipy-${pkgver}-py2
+  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:


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

2018-05-03 Thread Bartłomiej Piotrowski via arch-commits
Date: Thursday, May 3, 2018 @ 10:39:13
  Author: bpiotrowski
Revision: 318835

archrelease: copy trunk to community-staging-x86_64

Added:
  python-scipy/repos/community-staging-x86_64/
  python-scipy/repos/community-staging-x86_64/PKGBUILD
(from rev 318834, python-scipy/trunk/PKGBUILD)

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

Copied: python-scipy/repos/community-staging-x86_64/PKGBUILD (from rev 318834, 
python-scipy/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-05-03 10:39:13 UTC (rev 318835)
@@ -0,0 +1,91 @@
+# Maintainer: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Ray Rashif 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Bodor Dávid Gábor 
+# Contributor: Andrzej Giniewicz 
+
+pkgname=('python-scipy' 'python2-scipy')
+pkgver=1.0.1
+pkgrel=2
+pkgdesc="SciPy is open-source software for mathematics, science, and 
engineering."
+arch=('x86_64')
+url="http://www.scipy.org/";
+license=('BSD')
+makedepends=('gcc-fortran' 'python-numpy' 'python2-numpy' 'python-setuptools' 
'python2-setuptools')
+checkdepends=('python-pytest' 'python2-pytest')
+source=("https://github.com/scipy/scipy/releases/download/v${pkgver}/scipy-${pkgver}.tar.xz";)
+md5sums=('418f557cd14e74f62a3c8280027ad36f')
+
+build() {
+  export LDFLAGS="-Wall -shared"
+
+  # 2 builds
+  cp -r scipy-${pkgver} scipy-${pkgver}-py2
+
+  # build for python3
+  cd scipy-${pkgver}
+  python3 setup.py config_fc --fcompiler=gnu95 build
+
+  # 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 config_fc --fcompiler=gnu95 build
+}
+
+check() {
+  # 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"
+
+  cd ${srcdir}/scipy-${pkgver}
+  python3 setup.py config_fc --fcompiler=gnu95 install \
+--prefix=/usr --root=${srcdir}/test --optimize=1
+  export PYTHONPATH=${srcdir}/test/usr/lib/python3.6/site-packages
+  cd ${srcdir}
+  python -c "from scipy import test; test('full')"
+
+  cd ${srcdir}/scipy-${pkgver}-py2
+  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_python-scipy() {
+  depends=('python-numpy')
+  provides=('python3-scipy' 'scipy')
+  optdepends=('python-pillow: for image saving module')
+
+  cd scipy-${pkgver}
+  export LDFLAGS="-Wall -shared"
+
+  python3 setup.py config_fc --fcompiler=gnu95 install \
+--prefix=/usr --root=${pkgdir} --optimize=1
+
+  install -Dm644 LICENSE.txt \
+"${pkgdir}/usr/share/licenses/python-scipy/LICENSE"
+}
+
+package_python2-scipy() {
+  depends=('python2-numpy')
+  optdepends=('python2-pillow: for image saving module')
+  conflicts=('python-scipy<0.9.0')
+
+  cd scipy-${pkgver}-py2
+  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:


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

2015-10-31 Thread Jelle van der Waa
Date: Saturday, October 31, 2015 @ 15:30:30
  Author: jelle
Revision: 145368

archrelease: copy trunk to community-i686, community-x86_64

Deleted:
  python-scipy/repos/community-i686/PKGBUILD
  python-scipy/repos/community-x86_64/PKGBUILD

---+
 community-i686/PKGBUILD   |   93 
 community-x86_64/PKGBUILD |   93 
 2 files changed, 186 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-10-31 13:38:38 UTC (rev 145367)
+++ community-i686/PKGBUILD 2015-10-31 14:30:30 UTC (rev 145368)
@@ -1,93 +0,0 @@
-# Maintainer: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Angel 'angvp' Velasquez 
-# Contributor: Ray Rashif 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Bodor Dávid Gábor 
-# Contributor: Andrzej Giniewicz 
-
-pkgname=('python-scipy' 'python2-scipy')
-pkgver=0.16.0
-pkgrel=2
-pkgdesc="SciPy is open-source software for mathematics, science, and 
engineering."
-arch=('i686' 'x86_64')
-url="http://www.scipy.org/";
-license=('BSD')
-makedepends=('gcc-fortran' 'python-numpy' 'python2-numpy' 'python-setuptools' 
'python2-setuptools')
-checkdepends=('python-nose' 'python2-nose')
-source=("https://pypi.python.org/packages/source/s/scipy/scipy-${pkgver}.tar.gz"{,.asc})
-validpgpkeys=('BFE95DF198689E30AFF4A1CDEDBEA378BF1A5EBD')
-md5sums=('eb95dda0f36cc3096673993a350cde77'
- 'SKIP')
-
-build() {
-  export LDFLAGS="-Wall -shared"
-
-  # 2 builds
-  cp -r scipy-${pkgver} scipy-${pkgver}-py2
-
-  # build for python3
-  cd scipy-${pkgver}
-  python3 setup.py config_fc --fcompiler=gnu95 build
-
-  # 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 config_fc --fcompiler=gnu95 build
-}
-
-check() {
-  # 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"
-
-  cd ${srcdir}/scipy-${pkgver}
-  python3 setup.py config_fc --fcompiler=gnu95 install \
---prefix=/usr --root=${srcdir}/test --optimize=1
-  export PYTHONPATH=${srcdir}/test/usr/lib/python3.5/site-packages
-  cd ${srcdir}
-  python -c "from scipy import test; test('full')"
-
-  cd ${srcdir}/scipy-${pkgver}-py2
-  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_python-scipy() {
-  depends=('python-numpy')
-  provides=('python3-scipy' 'scipy')
-  optdepends=('python-pillow: for image saving module')
-
-  cd scipy-${pkgver}
-  export LDFLAGS="-Wall -shared"
-
-  python3 setup.py config_fc --fcompiler=gnu95 install \
---prefix=/usr --root=${pkgdir} --optimize=1
-
-  install -Dm644 LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python-scipy/LICENSE"
-}
-
-package_python2-scipy() {
-  depends=('python2-numpy')
-  optdepends=('python2-pillow: for image saving module')
-  conflicts=('python-scipy<0.9.0')
-
-  cd scipy-${pkgver}-py2
-  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:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-10-31 13:38:38 UTC (rev 145367)
+++ community-x86_64/PKGBUILD   2015-10-31 14:30:30 UTC (rev 145368)
@@ -1,93 +0,0 @@
-# Maintainer: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Angel 'angvp' Velasquez 
-# Contributor: Ray Rashif 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Bodor Dávid Gábor 
-# Contributor: Andrzej Giniewicz 
-
-pkgname=('python-scipy' 'python2-scipy')
-pkgver=0.16.1
-pkgrel=1
-pkgdesc="SciPy is open-source software for mathematics, science, and 
engineering."
-arch=('i686' 'x86_64')
-url="http://www.scipy.org/";
-license=('BSD')
-makedepends=('gcc-fortran' 'python-numpy' 'python2-numpy' 'python-setuptools' 
'python2-setuptools')
-checkdepends=('python-nose' 'python2-nose')
-source=("https://pypi.python.org/packages/source/s/scipy/scipy-${pkgver}.tar.gz"{,.asc})
-validpgpkeys=('BFE95DF198689E30AFF4A1CDEDBEA378BF1A5EBD')
-md5sums=('967cdb8588a4249f820344d8264a2143'
- 'SKIP')
-
-build() {
-  export LDFLAGS="-Wall -shared"
-
-  # 2 builds
-  cp -r scipy-${pkgver} scipy-${pkgver}-py2
-
-  # build for python3
-  cd scipy-${pkgver}
-  python3 setup.py config_fc --fcompiler=gnu95 build
-
-  # build for python2
-  cd ../scipy-${pkgver}