diff options
-rw-r--r-- | testing/py-arrow/APKBUILD | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/testing/py-arrow/APKBUILD b/testing/py-arrow/APKBUILD new file mode 100644 index 0000000000..64fd9661b0 --- /dev/null +++ b/testing/py-arrow/APKBUILD @@ -0,0 +1,50 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py-arrow +_pkgname=arrow +pkgver=0.8.0 +pkgrel=0 +pkgdesc="A Python library to create and manipulate dates, times, and timestamps" +url="http://arrow.readthedocs.io/" +arch="noarch" +license="ASL-2.0" +depends="py-dateutil" +makedepends="python2-dev python3-dev py-setuptools" +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 || return 1 + python3 setup.py build || return 1 +} + +package() { + mkdir -p "$pkgdir" +} + +_py2() { + replaces="$pkgname" + depends="${depends//py-/py2-}" + _py python2 +} + +_py3() { + depends="${depends//py-/py3-}" + _py python3 +} + +_py() { + local python="$1" + pkgdesc="$pkgdesc (for $python)" + depends="$depends $python" + install_if="$pkgname=$pkgver-r$pkgrel $python" + + cd "$builddir" + $python setup.py install --prefix=/usr --root="$subpkgdir" +} + +md5sums="4dd7534cf32bc9e4fd8d8ab2f7401363 arrow-0.8.0.tar.gz" +sha256sums="b210c17d6bb850011700b9f54c1ca0eaf8cbbd441f156f0cd292e1fbda84e7af arrow-0.8.0.tar.gz" +sha512sums="b6c01970d408e1169d042f593859577eef9961a2e7d6e0d5d01ddbdc001f806ca191cf152bd2d4060a877aeabee6754f06c3b91fbca53ee0a135a9355d08b347 arrow-0.8.0.tar.gz" |