-
Notifications
You must be signed in to change notification settings - Fork 693
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
community/py3-partd: unvendor versioneer
their current version is from Python 3.2 (???): dask/partd#68
- Loading branch information
1 parent
18a801a
commit d3c8882
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Maintainer: Bart Ribbers <[email protected]> | ||
pkgname=py3-partd | ||
pkgver=1.4.1 | ||
pkgrel=0 | ||
pkgrel=1 | ||
pkgdesc="Concurrent appendable key-value storage" | ||
url="https://github.com/dask/partd/" | ||
arch="noarch" | ||
|
@@ -18,13 +18,15 @@ makedepends=" | |
py3-gpep517 | ||
py3-setuptools | ||
py3-wheel | ||
py3-python-versioneer | ||
" | ||
subpackages="$pkgname-pyc" | ||
source="https://pypi.python.org/packages/source/p/partd/partd-$pkgver.tar.gz" | ||
options="!check" # No tests | ||
builddir="$srcdir/partd-$pkgver" | ||
|
||
build() { | ||
rm versioneer.py | ||
gpep517 build-wheel \ | ||
--wheel-dir .dist \ | ||
--output-fd 3 3>&1 >&2 | ||
|