Date: Wednesday, November 14, 2018 @ 17:40:15
  Author: felixonmars
Revision: 407481

archrelease: copy trunk to community-testing-any

Added:
  python-pytest/repos/community-testing-any/
  python-pytest/repos/community-testing-any/PKGBUILD
    (from rev 407480, python-pytest/trunk/PKGBUILD)

----------+
 PKGBUILD |   64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 64 insertions(+)

Copied: python-pytest/repos/community-testing-any/PKGBUILD (from rev 407480, 
python-pytest/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD                              (rev 0)
+++ community-testing-any/PKGBUILD      2018-11-14 17:40:15 UTC (rev 407481)
@@ -0,0 +1,64 @@
+# Maintainer: Felix Yan <felixonm...@archlinux.org>
+# Contributor: Felix Kaiser <felix.kai...@fxkr.net>
+
+pkgbase=python-pytest
+pkgname=('python-pytest' 'python2-pytest')
+pkgver=4.0.0
+pkgrel=1
+pkgdesc="Simple powerful testing with Python"
+arch=('any')
+license=('MIT')
+url="http://pytest.org/";
+makedepends=('python-setuptools-scm' 'python2-setuptools-scm' 'python-py' 
'python2-py' 'python-pluggy'
+             'python2-pluggy' 'python-attrs' 'python2-attrs' 
'python-more-itertools'
+             'python2-more-itertools' 'python-atomicwrites' 
'python2-atomicwrites'
+             'python2-funcsigs' 'python2-pathlib2')
+checkdepends=('lsof' 'python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-tox'
+              'python2-tox' 'python-yaml' 'python2-yaml' 'python-pytest-xdist'
+              'python2-pytest-xdist' 'python-twisted' 'python2-twisted' 
'python-requests'
+              'python2-requests' 'python-hypothesis' 'python2-hypothesis')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest/archive/$pkgver.tar.gz";)
+sha512sums=('7d2e96a7d117947b7531dfc3500e7317db2a840af599259a38b49ebb2b652d5357c5643a73c054e9aae8851acf889484a329cae071903dbba6292986cfabc877')
+
+prepare() {
+  cp -a pytest-$pkgver{,-py2}
+
+  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/pytest-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pytest-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pytest-$pkgver
+  PYTHONPATH="$PWD"/build/lib python src/pytest.py
+
+  cd "$srcdir"/pytest-$pkgver-py2
+  PYTHONPATH="$PWD"/build/lib python2 src/pytest.py
+}
+
+package_python-pytest() {
+  depends=('python-py' 'python-setuptools' 'python-pluggy' 'python-attrs' 
'python-more-itertools'
+           'python-atomicwrites')
+
+  cd pytest-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pytest() {
+  depends=('python2-py' 'python2-setuptools' 'python2-pluggy' 'python2-attrs'
+           'python2-more-itertools' 'python2-atomicwrites' 'python2-funcsigs' 
'python2-pathlib2')
+
+  cd pytest-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  mv "$pkgdir"/usr/bin/py.test{,2}
+  mv "$pkgdir"/usr/bin/pytest{,2}
+}

Reply via email to