mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 18:25:41 +03:00
this marginally increases install speed by not checking if it needs a rebuild. also remove --prefix=/usr as it defaults to /usr already. might break a build or two, will fix later
33 lines
785 B
Text
33 lines
785 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-partd
|
|
pkgver=1.3.0
|
|
pkgrel=1
|
|
pkgdesc="Concurrent appendable key-value storage"
|
|
url="https://github.com/dask/partd/"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="
|
|
py3-locket
|
|
py3-numpy
|
|
py3-pandas
|
|
py3-pyzmq
|
|
py3-toolz
|
|
python3
|
|
"
|
|
makedepends="py3-setuptools"
|
|
source="https://pypi.python.org/packages/source/p/partd/partd-$pkgver.tar.gz"
|
|
options="!check" # No tests
|
|
builddir="$srcdir/partd-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
0ebcccb5dd25d7328bf76e05523b3e40836a92ea867d26aee31e739b7859ca7848da92c6c20824ed1343c1ced2c759361b25ec30f8405e61bd36308613f866c7 partd-1.3.0.tar.gz
|
|
"
|