2017-09-09 01:06:01 +00:00
|
|
|
# Maintainer: Felix Yan <felixonmars@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - drop makedepend on pypandoc
|
|
|
|
|
|
|
|
pkgbase=python-pytest-plugins
|
2019-11-14 14:45:32 +00:00
|
|
|
pkgname=('python-pytest-fixture-config' 'python-pytest-shutil' 'python-pytest-virtualenv')
|
2019-06-26 12:26:54 +00:00
|
|
|
pkgver=1.7.0
|
2020-12-02 19:33:05 +00:00
|
|
|
pkgrel=6
|
2017-09-09 01:06:01 +00:00
|
|
|
arch=('any')
|
|
|
|
license=('BSD')
|
2018-03-03 05:39:52 +00:00
|
|
|
url='https://github.com/manahl/pytest-plugins'
|
2019-11-14 14:45:32 +00:00
|
|
|
makedepends=('python-pytest' 'python-setuptools-git' 'python-execnet' 'python-path.py'
|
|
|
|
'python-mock' 'python-virtualenv' 'python-termcolor')
|
2017-09-09 01:06:01 +00:00
|
|
|
source=("$pkgbase-$pkgver.tar.gz::https://github.com/manahl/pytest-plugins/archive/v$pkgver.tar.gz")
|
2019-06-26 12:26:54 +00:00
|
|
|
sha512sums=('6ce64f554359ae8b4e8b1cdab9908226501bad1d6bcdec9d7968133bbf0b3530842883cf3ea7ef14e09372fd1454d685d4b1bf4e8d95498b69a8b0f20177e2be')
|
2017-09-09 01:06:01 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
# New pypandoc?
|
|
|
|
sed -i "s/'rst')/'rst', format='markdown')/" pytest-plugins-$pkgver/common_setup.py
|
|
|
|
|
|
|
|
# Our /bin is a symlink
|
|
|
|
sed -i "s|'/bin'|'/usr/bin'|" pytest-plugins-$pkgver/pytest-shutil/tests/integration/test_cmdline_integration.py
|
|
|
|
|
2019-01-20 15:35:26 +00:00
|
|
|
# Pytest 4
|
|
|
|
sed -i 's/< *4.0/<5/' pytest-plugins-$pkgver/pytest-*/setup.py
|
|
|
|
|
2017-09-09 01:06:01 +00:00
|
|
|
(cd pytest-plugins-$pkgver; make copyfiles)
|
|
|
|
|
|
|
|
sed -i '/contextlib2/d' pytest-plugins-$pkgver/pytest-shutil/setup.py
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
for _pkg in pytest-fixture-config pytest-shutil pytest-virtualenv; do
|
|
|
|
cd "$srcdir"/pytest-plugins-$pkgver/$_pkg
|
|
|
|
python setup.py build
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
|
|
|
# Hack entry points by installing it
|
|
|
|
|
|
|
|
for _pkg in pytest-fixture-config pytest-shutil pytest-virtualenv; do
|
|
|
|
cd "$srcdir"/pytest-plugins-$pkgver/$_pkg
|
|
|
|
python setup.py install --root="$srcdir"/tmp_install --optimize=1
|
2020-12-02 19:33:05 +00:00
|
|
|
PYTHONPATH="$srcdir"/tmp_install/usr/lib/python3.9/site-packages py.test
|
2017-09-09 01:06:01 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
package_python-pytest-fixture-config() {
|
|
|
|
pkgdesc='Fixture configuration utils for py.test'
|
|
|
|
depends=('python-pytest')
|
|
|
|
|
|
|
|
cd pytest-plugins-$pkgver/pytest-fixture-config
|
|
|
|
python setup.py install --root="$pkgdir" --optimize=1
|
|
|
|
install -D -m644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
|
|
}
|
|
|
|
|
|
|
|
package_python-pytest-shutil() {
|
|
|
|
pkgdesc='A goodie-bag of unix shell and environment tools for py.test'
|
2018-03-13 17:53:09 +00:00
|
|
|
depends=('python-pytest' 'python-execnet' 'python-path.py' 'python-mock' 'python-termcolor')
|
2017-09-09 01:06:01 +00:00
|
|
|
|
|
|
|
cd pytest-plugins-$pkgver/pytest-shutil
|
|
|
|
python setup.py install --root="$pkgdir" --optimize=1
|
|
|
|
install -D -m644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
|
|
}
|
|
|
|
|
|
|
|
package_python-pytest-virtualenv() {
|
|
|
|
pkgdesc='Virtualenv fixture for py.test'
|
|
|
|
depends=('python-pytest-fixture-config' 'python-pytest-shutil' 'python-virtualenv')
|
|
|
|
|
|
|
|
cd pytest-plugins-$pkgver/pytest-virtualenv
|
|
|
|
python setup.py install --root="$pkgdir" --optimize=1
|
|
|
|
install -D -m644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim:set ts=2 sw=2 et:
|