From f084cbc1f5b8f007461251a87e37c7669cfef2ad Mon Sep 17 00:00:00 2001 From: James White Date: Thu, 30 Aug 2018 22:03:44 +0000 Subject: testing/py-h5py: new aport https://www.h5py.org Read and write HDF5 files from Python --- testing/py-h5py/APKBUILD | 49 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 testing/py-h5py/APKBUILD diff --git a/testing/py-h5py/APKBUILD b/testing/py-h5py/APKBUILD new file mode 100644 index 0000000000..9eb744da97 --- /dev/null +++ b/testing/py-h5py/APKBUILD @@ -0,0 +1,49 @@ +# Contributor: James White +# Maintainer: James White +pkgname=py-h5py +_pkgname=h5py +pkgver=2.8.0 +pkgrel=0 +pkgdesc="Read and write HDF5 files from Python" +url="https://www.h5py.org" +arch="all" +license="BSD" +depends="py-six py-numpy hdf5" +makedepends="cython-dev python2-dev python3-dev hdf5-dev py-setuptools py-numpy-dev py-six" +subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3" +source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" +builddir="$srcdir/$_pkgname-$pkgver" + +build() { + cd "$builddir" + + python2 setup.py build + python3 setup.py build +} + +package() { + mkdir -p "$pkgdir" +} + +_py2() { + replaces="$pkgname" + depends="${depends//py-/py2-}" + _py python2 +} + +_py3() { + replaces="$pkgname" + depends="${depends//py-/py3-}" + _py python3 +} + +_py() { + local python="$1" + pkgdesc="$pkgdesc (for $python)" + install_if="$pkgname=$pkgver-r$pkgrel $python" + + cd "$builddir" + $python setup.py install --prefix=/usr --root="$subpkgdir" +} + +sha512sums="670b80727c7a0b53018a5f8bb0bceedf9634fe9400fc3080954eaad5329d544c57c49177d02236a243a09ce3e638b10caeceb1cc572d03c87f227888a4430039 h5py-2.8.0.tar.gz" -- cgit v1.2.3