[arch-commits] Commit in python-netcdf4-openmpi/repos (2 files)
Bruno Pagani
archange at archlinux.org
Fri Jun 1 21:21:25 UTC 2018
Date: Friday, June 1, 2018 @ 21:21:24
Author: archange
Revision: 337027
archrelease: copy trunk to community-x86_64
Added:
python-netcdf4-openmpi/repos/community-x86_64/
python-netcdf4-openmpi/repos/community-x86_64/PKGBUILD
(from rev 337026, python-netcdf4-openmpi/trunk/PKGBUILD)
----------+
PKGBUILD | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 58 insertions(+)
Copied: python-netcdf4-openmpi/repos/community-x86_64/PKGBUILD (from rev 337026, python-netcdf4-openmpi/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2018-06-01 21:21:24 UTC (rev 337027)
@@ -0,0 +1,58 @@
+# Maintainer: Bruno Pagani <archange at archlinux.org>
+
+_pkg=netCDF4
+_mpi=openmpi
+pkgbase=python-${_pkg,,}-${_mpi}
+pkgname=("python-${_pkg,,}-${_mpi}" "python2-${_pkg,,}-${_mpi}")
+pkgver=1.4.0
+pkgrel=1
+pkgdesc="Python/NumPy interface to the netCDF C library (${_mpi} version)"
+arch=('x86_64')
+url="https://unidata.github.io/${_pkg,,}-python"
+license=('MIT')
+makedepends=('cython' 'python-setuptools' 'cython2' 'python2-setuptools' 'python-numpy' 'python-cftime' 'python-mpi4py' 'python2-numpy' 'python2-cftime' 'python2-mpi4py' "netcdf-${_mpi}")
+source=("https://pypi.io/packages/source/n/${_pkg}/${_pkg}-${pkgver}.tar.gz")
+sha256sums=('a6c0b46f410f101c09d60b8cc460aafec06732f0130c6cb2730717bcc605b388')
+
+prepare() {
+ cp -a ${_pkg}-${pkgver}{,-py2}
+}
+
+build() {
+ cd ${_pkg}-${pkgver}
+ USE_NCCONFIG=1 python setup.py build
+
+ cd ../${_pkg}-${pkgver}-py2
+ USE_NCCONFIG=1 python2 setup.py build
+}
+
+check() {
+ cd ${_pkg}-${pkgver}/test
+ PYTHONPATH="../build/lib.linux-${CARCH}-3.6" python -B ./run_all.py || warning "Tests failed"
+
+ cd ../../${_pkg}-${pkgver}-py2/test
+ PYTHONPATH="../build/lib.linux-${CARCH}-2.7" python2 -B ./run_all.py || warning "Tests failed"
+}
+
+package_python-netcdf4-openmpi() {
+ depends=('python-numpy' 'python-cftime' 'python-mpi4py' "netcdf-${_mpi}")
+
+ cd ${_pkg}-${pkgver}
+ USE_NCCONFIG=1 python setup.py install --prefix=/usr --root="${pkgdir}" --skip-build --optimize=2
+
+ install -Dm644 docs/netCDF4/* -t "${pkgdir}"/usr/share/doc/${pkgname}/docs/netCDF4
+ install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}
+
+package_python2-netcdf4-openmpi() {
+ depends=('python2-numpy' 'python2-cftime' 'python2-mpi4py' "netcdf-${_mpi}")
+
+ cd ${_pkg}-${pkgver}-py2
+ USE_NCCONFIG=1 python2 setup.py install --prefix=/usr --root="${pkgdir}" --skip-build --optimize=2
+
+ for binary in "${pkgdir}"/usr/bin/* ;
+ do mv ${binary}{,-py2} ;
+ done
+ install -Dm644 docs/netCDF4/* -t "${pkgdir}"/usr/share/doc/${pkgname}/docs/netCDF4
+ install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}
More information about the arch-commits
mailing list