2020-08-21 08:46:35 +00:00
|
|
|
# Description: A platform independent file lock for Python
|
|
|
|
# URL: https://github.com/benediktschmitt/py-filelock
|
2021-10-10 12:24:01 +02:00
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2023-08-29 06:59:21 +02:00
|
|
|
# Depends on: python3-hatch-vcs
|
2020-08-21 08:46:35 +00:00
|
|
|
|
|
|
|
name=python3-filelock
|
2023-10-28 10:44:49 +02:00
|
|
|
version=3.13.0
|
2020-08-21 08:46:35 +00:00
|
|
|
release=1
|
2021-10-10 12:43:58 +02:00
|
|
|
source=(https://pypi.python.org/packages/source/f/filelock/filelock-$version.tar.gz)
|
2020-08-21 08:46:35 +00:00
|
|
|
|
|
|
|
build() {
|
2021-10-10 12:43:58 +02:00
|
|
|
cd filelock-$version
|
2022-12-29 10:55:06 +00:00
|
|
|
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
2020-08-21 08:46:35 +00:00
|
|
|
}
|