mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
17bb03e88f
added new checkdeps
55 lines
1.5 KiB
Bash
55 lines
1.5 KiB
Bash
pkgbase=python-pytest-timeout
|
|
pkgname=('python3-pytest-timeout' 'python2-pytest-timeout')
|
|
pkgver=1.2.0
|
|
pkgrel=1
|
|
pkgdesc='py.test plugin to abort hanging tests'
|
|
arch=('any')
|
|
license=('MIT')
|
|
url='https://bitbucket.org/pytest-dev/pytest-timeout'
|
|
makedepends=('python3-pytest' 'python2-pytest' 'mercurial')
|
|
checkdepends=('python3-pexpect' 'python2-pexpect')
|
|
source=("hg+https://bitbucket.org/pytest-dev/pytest-timeout#tag=$pkgver")
|
|
md5sums=('SKIP')
|
|
|
|
prepare() {
|
|
cp -a pytest-timeout{,-py2}
|
|
}
|
|
|
|
build() {
|
|
cd "$srcdir"/pytest-timeout
|
|
python3 setup.py build
|
|
|
|
cd "$srcdir"/pytest-timeout-py2
|
|
python2 setup.py build
|
|
}
|
|
|
|
check() {
|
|
# Hack entry points by installing it
|
|
|
|
cd "$srcdir"/pytest-timeout
|
|
python3 setup.py install --root="$PWD/tmp_install" --optimize=1
|
|
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" py.test
|
|
|
|
cd "$srcdir"/pytest-timeout-py2
|
|
python2 setup.py install --root="$PWD/tmp_install" --optimize=1
|
|
PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" py.test2
|
|
}
|
|
|
|
package_python3-pytest-timeout() {
|
|
depends=('python3-pytest')
|
|
|
|
cd pytest-timeout
|
|
python3 setup.py install --root="$pkgdir"/ --optimize=1
|
|
install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
}
|
|
|
|
package_python2-pytest-timeout() {
|
|
depends=('python2-pytest')
|
|
|
|
cd pytest-timeout-py2
|
|
python2 setup.py install --root="$pkgdir"/ --optimize=1
|
|
install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|