mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 12:01:41 +02:00
testing/py-filelock: new aport
This commit is contained in:
parent
706da36557
commit
e03e40f33c
52
testing/py-filelock/APKBUILD
Normal file
52
testing/py-filelock/APKBUILD
Normal file
@ -0,0 +1,52 @@
|
||||
# Contributor: Dmitry Romanenko <dmitry@romanenko.in>
|
||||
# Maintainer: Dmitry Romanenko <dmitry@romanenko.in>
|
||||
pkgname=py-filelock
|
||||
_pkgname=filelock
|
||||
pkgver=3.0.10
|
||||
pkgrel=0
|
||||
pkgdesc="A platform independent file lock for Python"
|
||||
url="https://github.com/benediktschmitt/py-filelock"
|
||||
arch="noarch"
|
||||
license="Unlicense"
|
||||
depends=""
|
||||
checkdepends="pytest"
|
||||
makedepends="python2-dev python3-dev py-setuptools"
|
||||
subpackages="py3-$_pkgname:_py3 py2-$_pkgname:_py2"
|
||||
source="$pkgname-$pkgver.tar.gz::https://github.com/benediktschmitt/$pkgname/archive/v$pkgver.tar.gz"
|
||||
builddir="$srcdir"/$pkgname-$pkgver
|
||||
|
||||
build() {
|
||||
cd "$builddir"
|
||||
python2 setup.py build
|
||||
python3 setup.py build
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$builddir"
|
||||
python2 -m pytest -xvv test.py
|
||||
python3 -m pytest -xvv test.py
|
||||
}
|
||||
|
||||
package() {
|
||||
mkdir -p "$pkgdir"
|
||||
}
|
||||
|
||||
_py2() {
|
||||
_py python2
|
||||
}
|
||||
|
||||
_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"
|
||||
}
|
||||
|
||||
sha512sums="1fa4594eaba6689ea61149a60a71e86007297614a1c22dc6c94b4774520d396ff8ad03076dfdbb2ce49d2b6e42c374af065a115c167d81cf6107918abfbe52ef py-filelock-3.0.10.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user