blob: 60bbcb905b07c3b83b7979b5fa940372bb4f550a (
plain)
1 # Description: Platform-independent file locking module
2 # URL:https://github.com/openstack/pylockfile
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-pbr
5
6 name=python3-lockfile
7 version=0.12.2
8 release=1
9 source=(https://files.pythonhosted.org/packages/source/l/lockfile/lockfile-$version.tar.gz)
10
11 build() {
12 cd lockfile-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --prefix=/usr \
15 --root=$PKG \
16 -O1 \
17 --skip-build
18 }
|