2017-09-09 01:06:01 +00:00
|
|
|
# $Id$
|
|
|
|
# Maintainer: Felix Yan <felixonmars@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - drop makedepend on pypandoc
|
|
|
|
|
|
|
|
pkgbase=python-pytest-plugins
|
|
|
|
pkgname=('python-pytest-fixture-config' 'python2-pytest-fixture-config'
|
|
|
|
'python-pytest-shutil' 'python2-pytest-shutil'
|
|
|
|
'python-pytest-virtualenv' 'python2-pytest-virtualenv')
|
2018-03-13 17:53:09 +00:00
|
|
|
pkgver=1.3.0
|
2018-03-03 05:39:52 +00:00
|
|
|
pkgrel=1
|
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'
|
2017-09-09 01:06:01 +00:00
|
|
|
makedepends=('python-pytest' 'python2-pytest' 'python-setuptools-git' 'python2-setuptools-git'
|
|
|
|
'python-execnet' 'python2-execnet'
|
|
|
|
'python-path.py' 'python2-path.py' 'python-mock' 'python2-mock' 'python2-contextlib2'
|
2018-03-13 17:53:09 +00:00
|
|
|
'python-virtualenv' 'python-termcolor' 'python2-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")
|
2018-03-13 17:53:09 +00:00
|
|
|
sha512sums=('6299f976804376e0f269e8f95a3fc1425359d887d0795ddac54d0cf14a0f614ee534ef0c58af4cceb9e3db121754df1d2f6102a6548dfeedd78da8fa0bae2edb')
|
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
|
|
|
|
|
|
|
|
(cd pytest-plugins-$pkgver; make copyfiles)
|
|
|
|
|
|
|
|
cp -a pytest-plugins-$pkgver{,-py2}
|
|
|
|
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
|
|
|
|
|
|
|
|
cd "$srcdir"/pytest-plugins-$pkgver-py2/$_pkg
|
|
|
|
python2 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
|
|
|
|
PYTHONPATH="$srcdir"/tmp_install/usr/lib/python3.6/site-packages py.test
|
|
|
|
|
|
|
|
cd "$srcdir"/pytest-plugins-$pkgver-py2/$_pkg
|
|
|
|
python2 setup.py install --root="$srcdir"/tmp_install --optimize=1
|
|
|
|
PYTHONPATH="$srcdir"/tmp_install/usr/lib/python2.7/site-packages py.test2
|
|
|
|
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_python2-pytest-fixture-config() {
|
|
|
|
pkgdesc='Fixture configuration utils for py.test'
|
|
|
|
depends=('python2-pytest')
|
|
|
|
|
|
|
|
cd pytest-plugins-$pkgver-py2/pytest-fixture-config
|
|
|
|
python2 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_python2-pytest-shutil() {
|
|
|
|
pkgdesc='A goodie-bag of unix shell and environment tools for py.test'
|
2018-03-13 17:53:09 +00:00
|
|
|
depends=('python2-pytest' 'python2-execnet' 'python2-path.py' 'python2-mock' 'python2-termcolor'
|
2017-09-09 01:06:01 +00:00
|
|
|
'python2-contextlib2')
|
|
|
|
|
|
|
|
cd pytest-plugins-$pkgver-py2/pytest-shutil
|
|
|
|
python2 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
|
|
|
|
}
|
|
|
|
|
|
|
|
package_python2-pytest-virtualenv() {
|
|
|
|
pkgdesc='Virtualenv fixture for py.test'
|
|
|
|
depends=('python2-pytest-fixture-config' 'python2-pytest-shutil' 'python-virtualenv')
|
|
|
|
|
|
|
|
cd pytest-plugins-$pkgver-py2/pytest-virtualenv
|
|
|
|
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:
|