[arch-commits] Commit in python-hypothesis/trunk (PKGBUILD)
Felix Yan
felixonmars at archlinux.org
Tue Mar 21 09:32:23 UTC 2017
Date: Tuesday, March 21, 2017 @ 09:32:23
Author: felixonmars
Revision: 217988
upgpkg: python-hypothesis 3.7.0-1
Modified:
python-hypothesis/trunk/PKGBUILD
----------+
PKGBUILD | 37 +++++++++++++++++--------------------
1 file changed, 17 insertions(+), 20 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2017-03-21 09:27:30 UTC (rev 217987)
+++ PKGBUILD 2017-03-21 09:32:23 UTC (rev 217988)
@@ -3,50 +3,47 @@
pkgbase=python-hypothesis
pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.6.1
-_commit=7ed4892866960154d5dffc40f32340e385434128
-pkgrel=2
+pkgver=3.7.0
+pkgrel=1
pkgdesc="Advanced Quickcheck style testing library for Python"
arch=('any')
license=('MPL')
url="https://hypothesis.readthedocs.org"
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34' 'git')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34')
checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 'python2-flake8' 'python-pytz'
'python2-pytz' 'python-numpy' 'python2-numpy' 'python-fake-factory'
'python2-fake-factory' 'python-flaky' 'python2-flaky' 'python-pytest-benchmark'
'python2-pytest-benchmark' 'python-django' 'python2-django')
-source=("git+https://github.com/DRMacIver/hypothesis.git#commit=$_commit")
-sha512sums=('SKIP')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz")
+sha512sums=('5bde3a3ba296f3395c61d7396b71896d38037148ca554472fee9c3fce908e2d559fb557e646e26bdef011985f6cb4a82599a054179d6216aecf8b6b7d68c3ac9')
prepare() {
- sed -i 's/@pytest.mark.hookwrapper/@pytest.hookimpl(hookwrapper=True)/' hypothesis/src/hypothesis/extra/pytestplugin.py
+ cp -a hypothesis-python-$pkgver{,-py2}
- cp -a hypothesis{,-py2}
+ rm -r hypothesis-python-$pkgver/tests/py2
+ rm -r hypothesis-python-$pkgver-py2/tests/py3
- rm -r hypothesis/tests/py2
- rm -r hypothesis-py2/tests/py3
+ export LC_CTYPE=en_US.UTF-8
}
build() {
- cd "$srcdir"/hypothesis
+ cd "$srcdir"/hypothesis-python-$pkgver
python setup.py build
- cd "$srcdir"/hypothesis-py2
+ cd "$srcdir"/hypothesis-python-$pkgver-py2
python2 setup.py build
}
check() {
- export LC_CTYPE=en_US.UTF-8
-
- cd "$srcdir"/hypothesis
+ cd "$srcdir"/hypothesis-python-$pkgver
mv tests/django ../
- python setup.py ptr
+ python setup.py pytest
mv ../django tests/
PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test tests.django
- cd "$srcdir"/hypothesis-py2
+ cd "$srcdir"/hypothesis-python-$pkgver-py2
mv tests/django ../
- python2 setup.py ptr
+ python2 setup.py pytest
mv ../django tests/
PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test tests.django
}
@@ -59,7 +56,7 @@
'python-numpy: for numpy module'
'python-pytest: for pytest module')
- cd hypothesis
+ cd hypothesis-python-$pkgver
python setup.py install --root="$pkgdir" --optimize=1
}
@@ -71,6 +68,6 @@
'python2-numpy: for numpy module'
'python2-pytest: for pytest module')
- cd hypothesis-py2
+ cd hypothesis-python-$pkgver-py2
python2 setup.py install --root="$pkgdir" --optimize=1
}
More information about the arch-commits
mailing list