[arch-commits] Commit in python-numpy/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-11-03 Thread Felix Yan via arch-commits
Date: Tuesday, November 3, 2020 @ 18:38:43
  Author: felixonmars
Revision: 399223

archrelease: copy trunk to extra-x86_64

Added:
  python-numpy/repos/extra-x86_64/PKGBUILD
(from rev 399222, python-numpy/trunk/PKGBUILD)
Deleted:
  python-numpy/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-03 18:38:33 UTC (rev 399222)
+++ PKGBUILD2020-11-03 18:38:43 UTC (rev 399223)
@@ -1,45 +0,0 @@
-# Maintainer: Jan de Groot 
-# Maintainer: Felix Yan 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Angel 'angvp' Velasquez  
-
-pkgname=python-numpy
-pkgver=1.19.3
-pkgrel=1
-pkgdesc="Scientific tools for Python"
-arch=('x86_64')
-license=('custom')
-url="https://www.numpy.org/;
-depends=('cblas' 'lapack' 'python')
-optdepends=('python-nose: testsuite'
-'openblas: faster linear algebra')
-makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
-checkdepends=('python-pytest' 'python-hypothesis')
-options=('staticlibs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
-sha512sums=('01e0489754c33fc4255fe73b2314ed7bbb4577133cdd05e38eee48c618d247497767ad8d6ce2d03302f56466479207a9287b82f3f3e3bf17364e82ef86f4611a')
-
-prepare() {
-  # https://github.com/numpy/numpy/issues/17390
-  sed -i '/error/a \ignore:Module already imported so cannot be rewritten' 
numpy-$pkgver/pytest.ini
-}
-
-build() {
-  cd numpy-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd numpy-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
-}
-
-package() {
-  cd numpy-$pkgver
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
-}

Copied: python-numpy/repos/extra-x86_64/PKGBUILD (from rev 399222, 
python-numpy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-03 18:38:43 UTC (rev 399223)
@@ -0,0 +1,45 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgname=python-numpy
+pkgver=1.19.4
+pkgrel=1
+pkgdesc="Scientific tools for Python"
+arch=('x86_64')
+license=('custom')
+url="https://www.numpy.org/;
+depends=('cblas' 'lapack' 'python')
+optdepends=('python-nose: testsuite'
+'openblas: faster linear algebra')
+makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
+checkdepends=('python-pytest' 'python-hypothesis')
+options=('staticlibs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
+sha512sums=('369790f3a2dc91156c15f3b6502615ef40a2f0973a80ffdadfcd28a6e7971997d6ba5c146299e76ee0ec1776799a03c6fa185e64b38abea9475c452aebe1e07a')
+
+prepare() {
+  # https://github.com/numpy/numpy/issues/17390
+  sed -i '/error/a \ignore:Module already imported so cannot be rewritten' 
numpy-$pkgver/pytest.ini
+}
+
+build() {
+  cd numpy-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd numpy-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  cd "$PWD/tmp_install"
+  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
+}
+
+package() {
+  cd numpy-$pkgver
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
+  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
+}


[arch-commits] Commit in python-numpy/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-11-02 Thread Felix Yan via arch-commits
Date: Monday, November 2, 2020 @ 11:51:32
  Author: felixonmars
Revision: 399142

archrelease: copy trunk to extra-x86_64

Added:
  python-numpy/repos/extra-x86_64/PKGBUILD
(from rev 399141, python-numpy/trunk/PKGBUILD)
Deleted:
  python-numpy/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-02 11:51:19 UTC (rev 399141)
+++ PKGBUILD2020-11-02 11:51:32 UTC (rev 399142)
@@ -1,42 +0,0 @@
-# Maintainer: Jan de Groot 
-# Maintainer: Felix Yan 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Angel 'angvp' Velasquez  
-
-pkgname=python-numpy
-pkgver=1.19.2
-pkgrel=1
-pkgdesc="Scientific tools for Python"
-arch=('x86_64')
-license=('custom')
-url="https://www.numpy.org/;
-depends=('cblas' 'lapack' 'python')
-optdepends=('python-nose: testsuite'
-'openblas: faster linear algebra')
-makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
-checkdepends=('python-pytest' 'python-hypothesis')
-options=('staticlibs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
-sha512sums=('df6ba4e0b6fc4101cddf5f86ef28eba0bd03f173539dffddbd6c1cd9c77f6caf4a6301bc08869e46b8d4a69e1cb1462101d1b3aca1ad48c00da80d5c7e403c91')
-
-build() {
-  cd numpy-$pkgver
-  python setup.py build
-}
-
-check() {
-  # TODO: Fix fortran tests here (it works fine after installation)
-
-  cd numpy-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
-}
-
-package() {
-  cd numpy-$pkgver
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
-}

Copied: python-numpy/repos/extra-x86_64/PKGBUILD (from rev 399141, 
python-numpy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-02 11:51:32 UTC (rev 399142)
@@ -0,0 +1,45 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgname=python-numpy
+pkgver=1.19.3
+pkgrel=1
+pkgdesc="Scientific tools for Python"
+arch=('x86_64')
+license=('custom')
+url="https://www.numpy.org/;
+depends=('cblas' 'lapack' 'python')
+optdepends=('python-nose: testsuite'
+'openblas: faster linear algebra')
+makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
+checkdepends=('python-pytest' 'python-hypothesis')
+options=('staticlibs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
+sha512sums=('01e0489754c33fc4255fe73b2314ed7bbb4577133cdd05e38eee48c618d247497767ad8d6ce2d03302f56466479207a9287b82f3f3e3bf17364e82ef86f4611a')
+
+prepare() {
+  # https://github.com/numpy/numpy/issues/17390
+  sed -i '/error/a \ignore:Module already imported so cannot be rewritten' 
numpy-$pkgver/pytest.ini
+}
+
+build() {
+  cd numpy-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd numpy-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  cd "$PWD/tmp_install"
+  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
+}
+
+package() {
+  cd numpy-$pkgver
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
+  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
+}


[arch-commits] Commit in python-numpy/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-09-11 Thread Felix Yan via arch-commits
Date: Friday, September 11, 2020 @ 09:48:00
  Author: felixonmars
Revision: 395763

archrelease: copy trunk to extra-x86_64

Added:
  python-numpy/repos/extra-x86_64/PKGBUILD
(from rev 395762, python-numpy/trunk/PKGBUILD)
Deleted:
  python-numpy/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   84 ++---
 1 file changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-11 09:47:49 UTC (rev 395762)
+++ PKGBUILD2020-09-11 09:48:00 UTC (rev 395763)
@@ -1,42 +0,0 @@
-# Maintainer: Jan de Groot 
-# Maintainer: Felix Yan 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Angel 'angvp' Velasquez  
-
-pkgname=python-numpy
-pkgver=1.19.1
-pkgrel=1
-pkgdesc="Scientific tools for Python"
-arch=('x86_64')
-license=('custom')
-url="https://www.numpy.org/;
-depends=('cblas' 'lapack' 'python')
-optdepends=('python-nose: testsuite'
-'openblas: faster linear algebra')
-makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
-checkdepends=('python-pytest' 'python-hypothesis')
-options=('staticlibs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
-sha512sums=('3aefc8ec1566bb7bef58f855433cf5b8985e63f7c3596eb1283a101c0161cf0e7687874cbc6cc571ad39b97d4c7cafff12600b850cdb15f907f2c6988caf7068')
-
-build() {
-  cd numpy-$pkgver
-  python setup.py build
-}
-
-check() {
-  # TODO: Fix fortran tests here (it works fine after installation)
-
-  cd numpy-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
-}
-
-package() {
-  cd numpy-$pkgver
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
-}

Copied: python-numpy/repos/extra-x86_64/PKGBUILD (from rev 395762, 
python-numpy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-11 09:48:00 UTC (rev 395763)
@@ -0,0 +1,42 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgname=python-numpy
+pkgver=1.19.2
+pkgrel=1
+pkgdesc="Scientific tools for Python"
+arch=('x86_64')
+license=('custom')
+url="https://www.numpy.org/;
+depends=('cblas' 'lapack' 'python')
+optdepends=('python-nose: testsuite'
+'openblas: faster linear algebra')
+makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
+checkdepends=('python-pytest' 'python-hypothesis')
+options=('staticlibs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
+sha512sums=('df6ba4e0b6fc4101cddf5f86ef28eba0bd03f173539dffddbd6c1cd9c77f6caf4a6301bc08869e46b8d4a69e1cb1462101d1b3aca1ad48c00da80d5c7e403c91')
+
+build() {
+  cd numpy-$pkgver
+  python setup.py build
+}
+
+check() {
+  # TODO: Fix fortran tests here (it works fine after installation)
+
+  cd numpy-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  cd "$PWD/tmp_install"
+  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
+}
+
+package() {
+  cd numpy-$pkgver
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
+  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
+}


[arch-commits] Commit in python-numpy/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-07-22 Thread Felix Yan via arch-commits
Date: Wednesday, July 22, 2020 @ 06:43:25
  Author: felixonmars
Revision: 392349

archrelease: copy trunk to extra-x86_64

Added:
  python-numpy/repos/extra-x86_64/PKGBUILD
(from rev 392348, python-numpy/trunk/PKGBUILD)
Deleted:
  python-numpy/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   84 ++---
 1 file changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-22 06:43:09 UTC (rev 392348)
+++ PKGBUILD2020-07-22 06:43:25 UTC (rev 392349)
@@ -1,42 +0,0 @@
-# Maintainer: Jan de Groot 
-# Maintainer: Felix Yan 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Angel 'angvp' Velasquez  
-
-pkgname=python-numpy
-pkgver=1.19.0
-pkgrel=1
-pkgdesc="Scientific tools for Python"
-arch=('x86_64')
-license=('custom')
-url="https://www.numpy.org/;
-depends=('cblas' 'lapack' 'python')
-optdepends=('python-nose: testsuite'
-'openblas: faster linear algebra')
-makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
-checkdepends=('python-pytest')
-options=('staticlibs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
-sha512sums=('e4bbea4473f118615db5c2af4cfbe65901e4520486330378b4ae9ec13e3c0ddcd593b5d5337b94e517a59fd027c44702d0842d1ac2013c804899d141aebd1b4c')
-
-build() {
-  cd numpy-$pkgver
-  python setup.py build
-}
-
-check() {
-  # TODO: Fix fortran tests here (it works fine after installation)
-
-  cd numpy-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
-}
-
-package() {
-  cd numpy-$pkgver
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
-}

Copied: python-numpy/repos/extra-x86_64/PKGBUILD (from rev 392348, 
python-numpy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-22 06:43:25 UTC (rev 392349)
@@ -0,0 +1,42 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgname=python-numpy
+pkgver=1.19.1
+pkgrel=1
+pkgdesc="Scientific tools for Python"
+arch=('x86_64')
+license=('custom')
+url="https://www.numpy.org/;
+depends=('cblas' 'lapack' 'python')
+optdepends=('python-nose: testsuite'
+'openblas: faster linear algebra')
+makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
+checkdepends=('python-pytest' 'python-hypothesis')
+options=('staticlibs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
+sha512sums=('3aefc8ec1566bb7bef58f855433cf5b8985e63f7c3596eb1283a101c0161cf0e7687874cbc6cc571ad39b97d4c7cafff12600b850cdb15f907f2c6988caf7068')
+
+build() {
+  cd numpy-$pkgver
+  python setup.py build
+}
+
+check() {
+  # TODO: Fix fortran tests here (it works fine after installation)
+
+  cd numpy-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  cd "$PWD/tmp_install"
+  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
+}
+
+package() {
+  cd numpy-$pkgver
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
+  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
+}


[arch-commits] Commit in python-numpy/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-06-04 Thread Felix Yan via arch-commits
Date: Thursday, June 4, 2020 @ 07:03:25
  Author: felixonmars
Revision: 388244

archrelease: copy trunk to extra-x86_64

Added:
  python-numpy/repos/extra-x86_64/PKGBUILD
(from rev 388243, python-numpy/trunk/PKGBUILD)
Deleted:
  python-numpy/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   84 ++---
 1 file changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-04 07:03:09 UTC (rev 388243)
+++ PKGBUILD2020-06-04 07:03:25 UTC (rev 388244)
@@ -1,42 +0,0 @@
-# Maintainer: Jan de Groot 
-# Maintainer: Felix Yan 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Angel 'angvp' Velasquez  
-
-pkgname=python-numpy
-pkgver=1.18.4
-pkgrel=1
-pkgdesc="Scientific tools for Python"
-arch=('x86_64')
-license=('custom')
-url="https://www.numpy.org/;
-depends=('cblas' 'lapack' 'python')
-optdepends=('python-nose: testsuite'
-'openblas: faster linear algebra')
-makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
-checkdepends=('python-pytest')
-options=('staticlibs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
-sha512sums=('38a8eef1d51f746f1f9ab3e0d9e444cfa49312df7b32c34d707fc99ffd5f21af0e482e4c378bc890161c7d0f1efab6ce7d291825a4752793d3ffeefc3fb17fbc')
-
-build() {
-  cd numpy-$pkgver
-  python setup.py build
-}
-
-check() {
-  # TODO: Fix fortran tests here (it works fine after installation)
-
-  cd numpy-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
-}
-
-package() {
-  cd numpy-$pkgver
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
-}

Copied: python-numpy/repos/extra-x86_64/PKGBUILD (from rev 388243, 
python-numpy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-04 07:03:25 UTC (rev 388244)
@@ -0,0 +1,42 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgname=python-numpy
+pkgver=1.18.5
+pkgrel=1
+pkgdesc="Scientific tools for Python"
+arch=('x86_64')
+license=('custom')
+url="https://www.numpy.org/;
+depends=('cblas' 'lapack' 'python')
+optdepends=('python-nose: testsuite'
+'openblas: faster linear algebra')
+makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
+checkdepends=('python-pytest')
+options=('staticlibs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
+sha512sums=('ff62527fd83b50d40a288deb1b8e30ff83eddcf747893bef3ec8f3dd5b7e699553aea5bffc3fd2aabdb5417de4e0b8b4ab78baa4915cfc123319ae4b5a04a8b4')
+
+build() {
+  cd numpy-$pkgver
+  python setup.py build
+}
+
+check() {
+  # TODO: Fix fortran tests here (it works fine after installation)
+
+  cd numpy-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  cd "$PWD/tmp_install"
+  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
+}
+
+package() {
+  cd numpy-$pkgver
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
+  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
+}


[arch-commits] Commit in python-numpy/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-03 Thread Felix Yan via arch-commits
Date: Sunday, May 3, 2020 @ 20:13:46
  Author: felixonmars
Revision: 382203

archrelease: copy trunk to extra-x86_64

Added:
  python-numpy/repos/extra-x86_64/PKGBUILD
(from rev 382202, python-numpy/trunk/PKGBUILD)
Deleted:
  python-numpy/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   84 ++---
 1 file changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-03 20:13:36 UTC (rev 382202)
+++ PKGBUILD2020-05-03 20:13:46 UTC (rev 382203)
@@ -1,42 +0,0 @@
-# Maintainer: Jan de Groot 
-# Maintainer: Felix Yan 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Angel 'angvp' Velasquez  
-
-pkgname=python-numpy
-pkgver=1.18.3
-pkgrel=1
-pkgdesc="Scientific tools for Python"
-arch=('x86_64')
-license=('custom')
-url="https://www.numpy.org/;
-depends=('cblas' 'lapack' 'python')
-optdepends=('python-nose: testsuite'
-'openblas: faster linear algebra')
-makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
-checkdepends=('python-pytest')
-options=('staticlibs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
-sha512sums=('9a9423d2da9e6e408530afa91d5d6343ae8297cbae9733d4cfc9172f1e83de1405ee1c15549dacb31b7f2b2157f0cc2d9224a20186f3298004f93caed1ae3920')
-
-build() {
-  cd numpy-$pkgver
-  python setup.py build
-}
-
-check() {
-  # TODO: Fix fortran tests here (it works fine after installation)
-
-  cd numpy-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
-}
-
-package() {
-  cd numpy-$pkgver
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
-}

Copied: python-numpy/repos/extra-x86_64/PKGBUILD (from rev 382202, 
python-numpy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-03 20:13:46 UTC (rev 382203)
@@ -0,0 +1,42 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgname=python-numpy
+pkgver=1.18.4
+pkgrel=1
+pkgdesc="Scientific tools for Python"
+arch=('x86_64')
+license=('custom')
+url="https://www.numpy.org/;
+depends=('cblas' 'lapack' 'python')
+optdepends=('python-nose: testsuite'
+'openblas: faster linear algebra')
+makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
+checkdepends=('python-pytest')
+options=('staticlibs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
+sha512sums=('38a8eef1d51f746f1f9ab3e0d9e444cfa49312df7b32c34d707fc99ffd5f21af0e482e4c378bc890161c7d0f1efab6ce7d291825a4752793d3ffeefc3fb17fbc')
+
+build() {
+  cd numpy-$pkgver
+  python setup.py build
+}
+
+check() {
+  # TODO: Fix fortran tests here (it works fine after installation)
+
+  cd numpy-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  cd "$PWD/tmp_install"
+  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
+}
+
+package() {
+  cd numpy-$pkgver
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
+  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
+}


[arch-commits] Commit in python-numpy/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-04-19 Thread Felix Yan via arch-commits
Date: Sunday, April 19, 2020 @ 20:33:11
  Author: felixonmars
Revision: 380571

archrelease: copy trunk to extra-x86_64

Added:
  python-numpy/repos/extra-x86_64/PKGBUILD
(from rev 380570, python-numpy/trunk/PKGBUILD)
Deleted:
  python-numpy/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   84 ++---
 1 file changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-19 20:33:00 UTC (rev 380570)
+++ PKGBUILD2020-04-19 20:33:11 UTC (rev 380571)
@@ -1,42 +0,0 @@
-# Maintainer: Jan de Groot 
-# Maintainer: Felix Yan 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Angel 'angvp' Velasquez  
-
-pkgname=python-numpy
-pkgver=1.18.2
-pkgrel=1
-pkgdesc="Scientific tools for Python"
-arch=('x86_64')
-license=('custom')
-url="https://www.numpy.org/;
-depends=('cblas' 'lapack' 'python')
-optdepends=('python-nose: testsuite'
-'openblas: faster linear algebra')
-makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
-checkdepends=('python-pytest')
-options=('staticlibs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
-sha512sums=('34a4a29152dcafc221f2f99c4f3f6a481646ee4f5a63453429fbcd364bae1a71936a7c9b05cc57ef06f1d9c611b6993cb617e9e959f530d0963f1686cbc7edae')
-
-build() {
-  cd numpy-$pkgver
-  python setup.py build
-}
-
-check() {
-  # TODO: Fix fortran tests here (it works fine after installation)
-
-  cd numpy-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
-}
-
-package() {
-  cd numpy-$pkgver
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
-}

Copied: python-numpy/repos/extra-x86_64/PKGBUILD (from rev 380570, 
python-numpy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-19 20:33:11 UTC (rev 380571)
@@ -0,0 +1,42 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgname=python-numpy
+pkgver=1.18.3
+pkgrel=1
+pkgdesc="Scientific tools for Python"
+arch=('x86_64')
+license=('custom')
+url="https://www.numpy.org/;
+depends=('cblas' 'lapack' 'python')
+optdepends=('python-nose: testsuite'
+'openblas: faster linear algebra')
+makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
+checkdepends=('python-pytest')
+options=('staticlibs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
+sha512sums=('9a9423d2da9e6e408530afa91d5d6343ae8297cbae9733d4cfc9172f1e83de1405ee1c15549dacb31b7f2b2157f0cc2d9224a20186f3298004f93caed1ae3920')
+
+build() {
+  cd numpy-$pkgver
+  python setup.py build
+}
+
+check() {
+  # TODO: Fix fortran tests here (it works fine after installation)
+
+  cd numpy-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  cd "$PWD/tmp_install"
+  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
+}
+
+package() {
+  cd numpy-$pkgver
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
+  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
+}


[arch-commits] Commit in python-numpy/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-03-17 Thread Felix Yan via arch-commits
Date: Tuesday, March 17, 2020 @ 20:54:22
  Author: felixonmars
Revision: 377822

archrelease: copy trunk to extra-x86_64

Added:
  python-numpy/repos/extra-x86_64/PKGBUILD
(from rev 377821, python-numpy/trunk/PKGBUILD)
Deleted:
  python-numpy/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   84 ++---
 1 file changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-17 20:53:52 UTC (rev 377821)
+++ PKGBUILD2020-03-17 20:54:22 UTC (rev 377822)
@@ -1,42 +0,0 @@
-# Maintainer: Jan de Groot 
-# Maintainer: Felix Yan 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Angel 'angvp' Velasquez  
-
-pkgname=python-numpy
-pkgver=1.18.1
-pkgrel=1
-pkgdesc="Scientific tools for Python"
-arch=('x86_64')
-license=('custom')
-url="https://www.numpy.org/;
-depends=('cblas' 'lapack' 'python')
-optdepends=('python-nose: testsuite'
-'openblas: faster linear algebra')
-makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
-checkdepends=('python-pytest')
-options=('staticlibs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
-sha512sums=('32146eb8fda38dbb5a195b907bef828161739d4b7c7fffa2013e5333c71dee2f5bfdc9693e3e466dcf40a222e442cd9ead666546d1fab518530e35712d1098f4')
-
-build() {
-  cd numpy-$pkgver
-  python setup.py build
-}
-
-check() {
-  # TODO: Fix fortran tests here (it works fine after installation)
-
-  cd numpy-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
-}
-
-package() {
-  cd numpy-$pkgver
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
-}

Copied: python-numpy/repos/extra-x86_64/PKGBUILD (from rev 377821, 
python-numpy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-17 20:54:22 UTC (rev 377822)
@@ -0,0 +1,42 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgname=python-numpy
+pkgver=1.18.2
+pkgrel=1
+pkgdesc="Scientific tools for Python"
+arch=('x86_64')
+license=('custom')
+url="https://www.numpy.org/;
+depends=('cblas' 'lapack' 'python')
+optdepends=('python-nose: testsuite'
+'openblas: faster linear algebra')
+makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
+checkdepends=('python-pytest')
+options=('staticlibs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
+sha512sums=('34a4a29152dcafc221f2f99c4f3f6a481646ee4f5a63453429fbcd364bae1a71936a7c9b05cc57ef06f1d9c611b6993cb617e9e959f530d0963f1686cbc7edae')
+
+build() {
+  cd numpy-$pkgver
+  python setup.py build
+}
+
+check() {
+  # TODO: Fix fortran tests here (it works fine after installation)
+
+  cd numpy-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  cd "$PWD/tmp_install"
+  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
+}
+
+package() {
+  cd numpy-$pkgver
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
+  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
+}


[arch-commits] Commit in python-numpy/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-01-07 Thread Felix Yan via arch-commits
Date: Tuesday, January 7, 2020 @ 11:31:39
  Author: felixonmars
Revision: 372710

archrelease: copy trunk to extra-x86_64

Added:
  python-numpy/repos/extra-x86_64/PKGBUILD
(from rev 372709, python-numpy/trunk/PKGBUILD)
Deleted:
  python-numpy/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   84 ++---
 1 file changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-07 11:31:31 UTC (rev 372709)
+++ PKGBUILD2020-01-07 11:31:39 UTC (rev 372710)
@@ -1,42 +0,0 @@
-# Maintainer: Jan de Groot 
-# Maintainer: Felix Yan 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Angel 'angvp' Velasquez  
-
-pkgname=python-numpy
-pkgver=1.18.0
-pkgrel=1
-pkgdesc="Scientific tools for Python"
-arch=('x86_64')
-license=('custom')
-url="https://www.numpy.org/;
-depends=('cblas' 'lapack' 'python')
-optdepends=('python-nose: testsuite'
-'openblas: faster linear algebra')
-makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
-checkdepends=('python-pytest')
-options=('staticlibs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
-sha512sums=('96c97c21d611c613466f14105db12258d220b214cf14bcbc9eca1d0bd6b6c353a7eb3cece79656780f53a3be5e04f98621f8f3404cb78e841852e5845f11edfe')
-
-build() {
-  cd numpy-$pkgver
-  python setup.py build
-}
-
-check() {
-  # TODO: Fix fortran tests here (it works fine after installation)
-
-  cd numpy-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
-}
-
-package() {
-  cd numpy-$pkgver
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
-}

Copied: python-numpy/repos/extra-x86_64/PKGBUILD (from rev 372709, 
python-numpy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-07 11:31:39 UTC (rev 372710)
@@ -0,0 +1,42 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgname=python-numpy
+pkgver=1.18.1
+pkgrel=1
+pkgdesc="Scientific tools for Python"
+arch=('x86_64')
+license=('custom')
+url="https://www.numpy.org/;
+depends=('cblas' 'lapack' 'python')
+optdepends=('python-nose: testsuite'
+'openblas: faster linear algebra')
+makedepends=('python-setuptools' 'gcc-fortran' 'python-nose' 'cython')
+checkdepends=('python-pytest')
+options=('staticlibs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
+sha512sums=('32146eb8fda38dbb5a195b907bef828161739d4b7c7fffa2013e5333c71dee2f5bfdc9693e3e466dcf40a222e442cd9ead666546d1fab518530e35712d1098f4')
+
+build() {
+  cd numpy-$pkgver
+  python setup.py build
+}
+
+check() {
+  # TODO: Fix fortran tests here (it works fine after installation)
+
+  cd numpy-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  cd "$PWD/tmp_install"
+  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.8/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
+}
+
+package() {
+  cd numpy-$pkgver
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
+  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
+}


[arch-commits] Commit in python-numpy/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-05-28 Thread Felix Yan via arch-commits
Date: Wednesday, May 29, 2019 @ 05:57:21
  Author: felixonmars
Revision: 354464

archrelease: copy trunk to extra-x86_64

Added:
  python-numpy/repos/extra-x86_64/PKGBUILD
(from rev 354463, python-numpy/trunk/PKGBUILD)
Deleted:
  python-numpy/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  154 ++---
 1 file changed, 77 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-29 05:57:08 UTC (rev 354463)
+++ PKGBUILD2019-05-29 05:57:21 UTC (rev 354464)
@@ -1,77 +0,0 @@
-# Maintainer: Jan de Groot 
-# Maintainer: Felix Yan 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Angel 'angvp' Velasquez  
-
-pkgbase=python-numpy
-pkgname=('python-numpy' 'python2-numpy')
-pkgver=1.16.3
-pkgrel=1
-pkgdesc="Scientific tools for Python"
-arch=('x86_64')
-license=('custom')
-url="http://www.numpy.org/;
-makedepends=('cblas' 'lapack' 'python' 'python2' 'python-setuptools' 
'python2-setuptools'
- 'gcc-fortran' 'python-nose' 'python2-nose' 'cython' 'cython2')
-checkdepends=('python-pytest' 'python2-pytest')
-options=('staticlibs')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
-sha512sums=('f9caa1773ec38f6e737d7732083515dc32709c8127d137e51cf35138391a66b012b84592ef473c60846fd3178ed392aa81c4e8d27adb24e5746deabdd8352019')
-
-prepare() {
-  cp -a numpy-$pkgver{,-py2}
-  cd numpy-$pkgver-py2
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  cd "$srcdir"/numpy-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/numpy-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # TODO: Fix fortran tests here (it works fine after installation)
-
-  cd "$srcdir"/numpy-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.7/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
-
-  cd "$srcdir"/numpy-$pkgver-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python2.7/site-packages:$PYTHONPATH" python2 -c 
'import numpy; numpy.test()'
-}
-
-package_python-numpy() {
-  depends=('cblas' 'lapack' 'python')
-  optdepends=('python-nose: testsuite'
-  'openblas: faster linear algebra')
-
-  cd numpy-$pkgver
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
-}
-
-package_python2-numpy() {
-  depends=('cblas' 'lapack' 'python2')
-  optdepends=('python2-nose: testsuite'
-  'openblas: faster linear algebra')
-
-  cd numpy-$pkgver-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python2-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python2-numpy/"
-
-  mv "$pkgdir"/usr/bin/f2py{,2}
-}

Copied: python-numpy/repos/extra-x86_64/PKGBUILD (from rev 354463, 
python-numpy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-29 05:57:21 UTC (rev 354464)
@@ -0,0 +1,77 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgbase=python-numpy
+pkgname=('python-numpy' 'python2-numpy')
+pkgver=1.16.4
+pkgrel=1
+pkgdesc="Scientific tools for Python"
+arch=('x86_64')
+license=('custom')
+url="https://www.numpy.org/;
+makedepends=('cblas' 'lapack' 'python' 'python2' 'python-setuptools' 
'python2-setuptools'
+ 'gcc-fortran' 'python-nose' 'python2-nose' 'cython' 'cython2')
+checkdepends=('python-pytest' 'python2-pytest')
+options=('staticlibs')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
+sha512sums=('c8437e01a8c6c37787a8bf52f26d1adb273a6bb8f709f3cd92b427c63a1f772f9b2285b46321f2bd1a60a572797223d801aaed0fc2782bcdc7cbe39cd8c34c69')
+
+prepare() {
+  cp -a numpy-$pkgver{,-py2}
+  cd numpy-$pkgver-py2
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  cd "$srcdir"/numpy-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/numpy-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # TODO: Fix fortran tests here (it works fine after installation)
+
+  cd "$srcdir"/numpy-$pkgver
+  python setup.py install 

[arch-commits] Commit in python-numpy/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-04-22 Thread Felix Yan via arch-commits
Date: Monday, April 22, 2019 @ 08:23:12
  Author: felixonmars
Revision: 351868

archrelease: copy trunk to extra-x86_64

Added:
  python-numpy/repos/extra-x86_64/PKGBUILD
(from rev 351867, python-numpy/trunk/PKGBUILD)
Deleted:
  python-numpy/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  154 ++---
 1 file changed, 77 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-22 08:22:55 UTC (rev 351867)
+++ PKGBUILD2019-04-22 08:23:12 UTC (rev 351868)
@@ -1,77 +0,0 @@
-# Maintainer: Jan de Groot 
-# Maintainer: Felix Yan 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Angel 'angvp' Velasquez  
-
-pkgbase=python-numpy
-pkgname=('python-numpy' 'python2-numpy')
-pkgver=1.16.2
-pkgrel=1
-pkgdesc="Scientific tools for Python"
-arch=('x86_64')
-license=('custom')
-url="http://www.numpy.org/;
-makedepends=('cblas' 'lapack' 'python' 'python2' 'python-setuptools' 
'python2-setuptools'
- 'gcc-fortran' 'python-nose' 'python2-nose' 'cython' 'cython2')
-checkdepends=('python-pytest' 'python2-pytest')
-options=('staticlibs')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
-sha512sums=('81f0f1826e64933948f7c5d5bd94ae3ffaad7c902762114b51110e7959bd08ec2c885187f42f961c151380b8eac810c797442f72afc2965ad939981eed458b3c')
-
-prepare() {
-  cp -a numpy-$pkgver{,-py2}
-  cd numpy-$pkgver-py2
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  cd "$srcdir"/numpy-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/numpy-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # TODO: Fix fortran tests here (it works fine after installation)
-
-  cd "$srcdir"/numpy-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.7/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
-
-  cd "$srcdir"/numpy-$pkgver-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python2.7/site-packages:$PYTHONPATH" python2 -c 
'import numpy; numpy.test()'
-}
-
-package_python-numpy() {
-  depends=('cblas' 'lapack' 'python')
-  optdepends=('python-nose: testsuite'
-  'openblas: faster linear algebra')
-
-  cd numpy-$pkgver
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
-}
-
-package_python2-numpy() {
-  depends=('cblas' 'lapack' 'python2')
-  optdepends=('python2-nose: testsuite'
-  'openblas: faster linear algebra')
-
-  cd numpy-$pkgver-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python2-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python2-numpy/"
-
-  mv "$pkgdir"/usr/bin/f2py{,2}
-}

Copied: python-numpy/repos/extra-x86_64/PKGBUILD (from rev 351867, 
python-numpy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-22 08:23:12 UTC (rev 351868)
@@ -0,0 +1,77 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgbase=python-numpy
+pkgname=('python-numpy' 'python2-numpy')
+pkgver=1.16.3
+pkgrel=1
+pkgdesc="Scientific tools for Python"
+arch=('x86_64')
+license=('custom')
+url="http://www.numpy.org/;
+makedepends=('cblas' 'lapack' 'python' 'python2' 'python-setuptools' 
'python2-setuptools'
+ 'gcc-fortran' 'python-nose' 'python2-nose' 'cython' 'cython2')
+checkdepends=('python-pytest' 'python2-pytest')
+options=('staticlibs')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
+sha512sums=('f9caa1773ec38f6e737d7732083515dc32709c8127d137e51cf35138391a66b012b84592ef473c60846fd3178ed392aa81c4e8d27adb24e5746deabdd8352019')
+
+prepare() {
+  cp -a numpy-$pkgver{,-py2}
+  cd numpy-$pkgver-py2
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  cd "$srcdir"/numpy-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/numpy-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # TODO: Fix fortran tests here (it works fine after installation)
+
+  cd "$srcdir"/numpy-$pkgver
+  python setup.py install 

[arch-commits] Commit in python-numpy/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-02-26 Thread Felix Yan via arch-commits
Date: Wednesday, February 27, 2019 @ 07:26:43
  Author: felixonmars
Revision: 346890

archrelease: copy trunk to extra-x86_64

Added:
  python-numpy/repos/extra-x86_64/PKGBUILD
(from rev 346889, python-numpy/trunk/PKGBUILD)
Deleted:
  python-numpy/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  154 ++---
 1 file changed, 77 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-27 07:26:05 UTC (rev 346889)
+++ PKGBUILD2019-02-27 07:26:43 UTC (rev 346890)
@@ -1,77 +0,0 @@
-# Maintainer: Jan de Groot 
-# Maintainer: Felix Yan 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Angel 'angvp' Velasquez  
-
-pkgbase=python-numpy
-pkgname=('python-numpy' 'python2-numpy')
-pkgver=1.16.1
-pkgrel=1
-pkgdesc="Scientific tools for Python"
-arch=('x86_64')
-license=('custom')
-url="http://www.numpy.org/;
-makedepends=('cblas' 'lapack' 'python' 'python2' 'python-setuptools' 
'python2-setuptools'
- 'gcc-fortran' 'python-nose' 'python2-nose' 'cython' 'cython2')
-checkdepends=('python-pytest' 'python2-pytest')
-options=('staticlibs')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
-sha512sums=('8166b8253312f25e0af49f636421c94d63991dd28d50de0a55a052df94e82045507935554ef31afbd69df74124d13e004c2fb5a4515486299674712c41beaf5d')
-
-prepare() {
-  cp -a numpy-$pkgver{,-py2}
-  cd numpy-$pkgver-py2
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  cd "$srcdir"/numpy-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/numpy-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # TODO: Fix fortran tests here (it works fine after installation)
-
-  cd "$srcdir"/numpy-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.7/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
-
-  cd "$srcdir"/numpy-$pkgver-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python2.7/site-packages:$PYTHONPATH" python2 -c 
'import numpy; numpy.test()'
-}
-
-package_python-numpy() {
-  depends=('cblas' 'lapack' 'python')
-  optdepends=('python-nose: testsuite'
-  'openblas: faster linear algebra')
-
-  cd numpy-$pkgver
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
-}
-
-package_python2-numpy() {
-  depends=('cblas' 'lapack' 'python2')
-  optdepends=('python2-nose: testsuite'
-  'openblas: faster linear algebra')
-
-  cd numpy-$pkgver-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python2-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python2-numpy/"
-
-  mv "$pkgdir"/usr/bin/f2py{,2}
-}

Copied: python-numpy/repos/extra-x86_64/PKGBUILD (from rev 346889, 
python-numpy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-27 07:26:43 UTC (rev 346890)
@@ -0,0 +1,77 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgbase=python-numpy
+pkgname=('python-numpy' 'python2-numpy')
+pkgver=1.16.2
+pkgrel=1
+pkgdesc="Scientific tools for Python"
+arch=('x86_64')
+license=('custom')
+url="http://www.numpy.org/;
+makedepends=('cblas' 'lapack' 'python' 'python2' 'python-setuptools' 
'python2-setuptools'
+ 'gcc-fortran' 'python-nose' 'python2-nose' 'cython' 'cython2')
+checkdepends=('python-pytest' 'python2-pytest')
+options=('staticlibs')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
+sha512sums=('81f0f1826e64933948f7c5d5bd94ae3ffaad7c902762114b51110e7959bd08ec2c885187f42f961c151380b8eac810c797442f72afc2965ad939981eed458b3c')
+
+prepare() {
+  cp -a numpy-$pkgver{,-py2}
+  cd numpy-$pkgver-py2
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  cd "$srcdir"/numpy-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/numpy-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # TODO: Fix fortran tests here (it works fine after installation)
+
+  cd "$srcdir"/numpy-$pkgver
+  python setup.py install 

[arch-commits] Commit in python-numpy/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-02-01 Thread Felix Yan via arch-commits
Date: Friday, February 1, 2019 @ 12:11:22
  Author: felixonmars
Revision: 345008

archrelease: copy trunk to extra-x86_64

Added:
  python-numpy/repos/extra-x86_64/PKGBUILD
(from rev 345007, python-numpy/trunk/PKGBUILD)
Deleted:
  python-numpy/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  154 ++---
 1 file changed, 77 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-01 12:11:02 UTC (rev 345007)
+++ PKGBUILD2019-02-01 12:11:22 UTC (rev 345008)
@@ -1,77 +0,0 @@
-# Maintainer: Jan de Groot 
-# Maintainer: Felix Yan 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Angel 'angvp' Velasquez  
-
-pkgbase=python-numpy
-pkgname=('python-numpy' 'python2-numpy')
-pkgver=1.16.0
-pkgrel=1
-pkgdesc="Scientific tools for Python"
-arch=('x86_64')
-license=('custom')
-url="http://www.numpy.org/;
-makedepends=('cblas' 'lapack' 'python' 'python2' 'python-setuptools' 
'python2-setuptools'
- 'gcc-fortran' 'python-nose' 'python2-nose' 'cython' 'cython2')
-checkdepends=('python-pytest' 'python2-pytest')
-options=('staticlibs')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
-sha512sums=('fb1ef9c4e9d664b3c5db47dfd261dcd7ee8b4eb48eb167812de893de88ca0b9a984a56a039958f03184dbc369bcd58e03f89447ef71cf61294bb1fd6eb7f')
-
-prepare() {
-  cp -a numpy-$pkgver{,-py2}
-  cd numpy-$pkgver-py2
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  cd "$srcdir"/numpy-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/numpy-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # TODO: Fix fortran tests here (it works fine after installation)
-
-  cd "$srcdir"/numpy-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.7/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
-
-  cd "$srcdir"/numpy-$pkgver-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python2.7/site-packages:$PYTHONPATH" python2 -c 
'import numpy; numpy.test()'
-}
-
-package_python-numpy() {
-  depends=('cblas' 'lapack' 'python')
-  optdepends=('python-nose: testsuite'
-  'openblas: faster linear algebra')
-
-  cd numpy-$pkgver
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
-}
-
-package_python2-numpy() {
-  depends=('cblas' 'lapack' 'python2')
-  optdepends=('python2-nose: testsuite'
-  'openblas: faster linear algebra')
-
-  cd numpy-$pkgver-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python2-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python2-numpy/"
-
-  mv "$pkgdir"/usr/bin/f2py{,2}
-}

Copied: python-numpy/repos/extra-x86_64/PKGBUILD (from rev 345007, 
python-numpy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-01 12:11:22 UTC (rev 345008)
@@ -0,0 +1,77 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgbase=python-numpy
+pkgname=('python-numpy' 'python2-numpy')
+pkgver=1.16.1
+pkgrel=1
+pkgdesc="Scientific tools for Python"
+arch=('x86_64')
+license=('custom')
+url="http://www.numpy.org/;
+makedepends=('cblas' 'lapack' 'python' 'python2' 'python-setuptools' 
'python2-setuptools'
+ 'gcc-fortran' 'python-nose' 'python2-nose' 'cython' 'cython2')
+checkdepends=('python-pytest' 'python2-pytest')
+options=('staticlibs')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
+sha512sums=('8166b8253312f25e0af49f636421c94d63991dd28d50de0a55a052df94e82045507935554ef31afbd69df74124d13e004c2fb5a4515486299674712c41beaf5d')
+
+prepare() {
+  cp -a numpy-$pkgver{,-py2}
+  cd numpy-$pkgver-py2
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  cd "$srcdir"/numpy-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/numpy-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # TODO: Fix fortran tests here (it works fine after installation)
+
+  cd "$srcdir"/numpy-$pkgver
+  python setup.py install 

[arch-commits] Commit in python-numpy/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-11-05 Thread Felix Yan via arch-commits
Date: Monday, November 5, 2018 @ 17:31:54
  Author: felixonmars
Revision: 337885

archrelease: copy trunk to extra-x86_64

Added:
  python-numpy/repos/extra-x86_64/PKGBUILD
(from rev 337884, python-numpy/trunk/PKGBUILD)
Deleted:
  python-numpy/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  150 ++---
 1 file changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-11-05 17:31:24 UTC (rev 337884)
+++ PKGBUILD2018-11-05 17:31:54 UTC (rev 337885)
@@ -1,75 +0,0 @@
-# Maintainer: Jan de Groot 
-# Maintainer: Felix Yan 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Angel 'angvp' Velasquez  
-
-pkgbase=python-numpy
-pkgname=('python-numpy' 'python2-numpy')
-pkgver=1.15.3
-pkgrel=1
-pkgdesc="Scientific tools for Python"
-arch=('x86_64')
-license=('custom')
-url="http://www.numpy.org/;
-makedepends=('cblas' 'lapack' 'python' 'python2' 'python-setuptools' 
'python2-setuptools' 'gcc-fortran'
- 'python-nose' 'python2-nose' 'cython' 'cython2')
-checkdepends=('python-pytest' 'python2-pytest')
-options=('staticlibs')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
-sha512sums=('9c8125e5d1ede6bb700243909db6c2bd4e9dc5889ec461972985cb77d19890cd254047245a7b3826477ab222c21a6c27333a6d110117baa4df9c10e4eb701668')
-
-prepare() {
-  cp -a numpy-$pkgver{,-py2}
-  cd numpy-$pkgver-py2
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  cd "$srcdir"/numpy-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/numpy-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # TODO: Fix fortran tests here (it works fine after installation)
-
-  cd "$srcdir"/numpy-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.7/site-packages:$PYTHONPATH" python -c 'import 
numpy; numpy.test()'
-
-  cd "$srcdir"/numpy-$pkgver-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  cd "$PWD/tmp_install"
-  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python2.7/site-packages:$PYTHONPATH" python2 -c 
'import numpy; numpy.test()'
-}
-
-package_python-numpy() {
-  depends=('cblas' 'lapack' 'python')
-  optdepends=('python-nose: testsuite'
-  'openblas: faster linear algebra')
-
-  cd numpy-$pkgver
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
-}
-
-package_python2-numpy() {
-  depends=('cblas' 'lapack' 'python2')
-  optdepends=('python2-nose: testsuite'
-  'openblas: faster linear algebra')
-
-  cd numpy-$pkgver-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python2-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python2-numpy/"
-}

Copied: python-numpy/repos/extra-x86_64/PKGBUILD (from rev 337884, 
python-numpy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-11-05 17:31:54 UTC (rev 337885)
@@ -0,0 +1,75 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgbase=python-numpy
+pkgname=('python-numpy' 'python2-numpy')
+pkgver=1.15.4
+pkgrel=1
+pkgdesc="Scientific tools for Python"
+arch=('x86_64')
+license=('custom')
+url="http://www.numpy.org/;
+makedepends=('cblas' 'lapack' 'python' 'python2' 'python-setuptools' 
'python2-setuptools' 'gcc-fortran'
+ 'python-nose' 'python2-nose' 'cython' 'cython2')
+checkdepends=('python-pytest' 'python2-pytest')
+options=('staticlibs')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
+sha512sums=('2cb375b5cec4b9fbf6f65fb79eb81429af3e1e6aefa5e39cafeee7d9ecd8046647ccc97129170069e583327601b9cfba562be3720dc5cb2bdc2216ac6eb6d690')
+
+prepare() {
+  cp -a numpy-$pkgver{,-py2}
+  cd numpy-$pkgver-py2
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  cd "$srcdir"/numpy-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/numpy-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # TODO: Fix fortran tests here (it works fine after installation)
+
+  cd "$srcdir"/numpy-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  cd 

[arch-commits] Commit in python-numpy/repos/extra-x86_64 (PKGBUILD PKGBUILD site.cfg)

2015-10-13 Thread Felix Yan
Date: Wednesday, October 14, 2015 @ 04:03:36
  Author: fyan
Revision: 249240

archrelease: copy trunk to extra-x86_64

Added:
  python-numpy/repos/extra-x86_64/PKGBUILD
(from rev 249239, python-numpy/trunk/PKGBUILD)
  python-numpy/repos/extra-x86_64/site.cfg
(from rev 249239, python-numpy/trunk/site.cfg)
Deleted:
  python-numpy/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  168 ++---
 site.cfg |4 +
 2 files changed, 89 insertions(+), 83 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-10-14 02:03:15 UTC (rev 249239)
+++ PKGBUILD2015-10-14 02:03:36 UTC (rev 249240)
@@ -1,83 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Maintainer: Felix Yan 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Angel 'angvp' Velasquez  
-
-pkgbase=python-numpy
-pkgname=('python2-numpy' 'python-numpy')
-pkgver=1.10.0
-pkgrel=1
-pkgdesc="Scientific tools for Python"
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://www.numpy.org/;
-makedepends=('lapack' 'python' 'python2' 'python-setuptools' 
'python2-setuptools' 'gcc-fortran' 'python-nose' 'python2-nose' 'cython' 
'cython2')
-options=('staticlibs')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;)
-md5sums=('c8693369638ed9bff12a0c90ef8ea7af')
-
-prepare() {
-  cp -a numpy-$pkgver numpy-py2-$pkgver
-  cd numpy-py2-$pkgver
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  export ATLAS=None
-  export LDFLAGS="$LDFLAGS -shared"
-
-  echo "Building Python2"
-  cd numpy-py2-$pkgver
-  python2 setup.py config_fc --fcompiler=gnu95 build
-
-  echo "Building Python3"
-  cd ../numpy-$pkgver
-  python setup.py config_fc --fcompiler=gnu95 build
-}
-
-package_python2-numpy() {
-  depends=('lapack' 'python2')
-  optdepends=('python2-nose: testsuite')
-
-  _pyver=2.7
-
-  export ATLAS=None
-  export LDFLAGS="$LDFLAGS -shared"
-
-  cd numpy-py2-$pkgver
-  python2 setup.py config_fc --fcompiler=gnu95 install --prefix=/usr 
--root="${pkgdir}" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python2-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python2-numpy/"
-
-  install -m755 -d "${pkgdir}/usr/include/python${_pyver}"
-  ln -sf /usr/lib/python${_pyver}/site-packages/numpy/core/include/numpy 
"${pkgdir}/usr/include/python${_pyver}/numpy"
-}
-
-package_python-numpy() {
-  depends=('lapack' 'python')
-  optdepends=('python-nose: testsuite')
-  provides=("python3-numpy=${pkgver}")
-  replaces=('python3-numpy')
-  conflicts=('python3-numpy')
-
-  _pyver=3.5
-  _pyinc=3.5m
-
-  export ATLAS=None
-  export LDFLAGS="$LDFLAGS -shared"
-
-  cd numpy-$pkgver
-  python setup.py config_fc --fcompiler=gnu95 install --prefix=/usr 
--root="${pkgdir}" --optimize=1
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/python-numpy"
-  install -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-numpy/"
-
-  install -m755 -d "${pkgdir}/usr/include/python${_pyinc}"
-  ln -sf /usr/lib/python${_pyver}/site-packages/numpy/core/include/numpy 
"${pkgdir}/usr/include/python${_pyinc}/numpy"
-}

Copied: python-numpy/repos/extra-x86_64/PKGBUILD (from rev 249239, 
python-numpy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-10-14 02:03:36 UTC (rev 249240)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgbase=python-numpy
+pkgname=('python2-numpy' 'python-numpy')
+pkgver=1.10.1
+pkgrel=1
+pkgdesc="Scientific tools for Python"
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://www.numpy.org/;
+makedepends=('cblas' 'lapack' 'python' 'python2' 'python-setuptools' 
'python2-setuptools' 'gcc-fortran'
+   'python-nose' 'python2-nose' 'cython' 'cython2')
+options=('staticlibs')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/numpy/numpy/archive/v$pkgver.tar.gz;
 'site.cfg')
+md5sums=('d2a125a52187ab234bfe444287b53660'
+ '6ac5f9dac5d4c0e25a2eba6c98bf5b3c')
+
+prepare() {
+  cp site.cfg numpy-$pkgver
+  cp -a numpy-$pkgver numpy-py2-$pkgver
+  cd numpy-py2-$pkgver
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  export LDFLAGS="$LDFLAGS -shared"
+
+  echo "Building