[arch-commits] Commit in python-pytest-benchmark/trunk (PKGBUILD)

Felix Yan felixonmars at archlinux.org
Tue Oct 10 07:42:07 UTC 2017


    Date: Tuesday, October 10, 2017 @ 07:42:06
  Author: felixonmars
Revision: 262274

upgpkg: python-pytest-benchmark 3.1.1-1

Modified:
  python-pytest-benchmark/trunk/PKGBUILD

----------+
 PKGBUILD |   40 +++++++++++++++++++++++-----------------
 1 file changed, 23 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2017-10-10 07:13:48 UTC (rev 262273)
+++ PKGBUILD	2017-10-10 07:42:06 UTC (rev 262274)
@@ -3,28 +3,31 @@
 
 pkgbase=python-pytest-benchmark
 pkgname=('python-pytest-benchmark' 'python2-pytest-benchmark')
-pkgver=3.0.0
-pkgrel=2
+pkgver=3.1.1
+pkgrel=1
 pkgdesc='A py.test fixture for benchmarking code'
 arch=('any')
 license=('BSD')
 url='https://github.com/ionelmc/pytest-benchmark'
-makedepends=('python-pytest' 'python2-pytest' 'python2-statistics' 'python2-pathlib' 'git')
+makedepends=('python-pytest' 'python2-pytest' 'python2-statistics' 'python2-pathlib'
+             'python-py-cpuinfo' 'python2-py-cpuinfo')
 checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-pygal' 'python2-pygal'
               'python-freezegun' 'python2-freezegun' 'mercurial' 'python-aspectlib'
-              'python2-aspectlib' 'python-pytest-xdist' 'python2-pytest-xdist')
-source=("git+https://github.com/ionelmc/pytest-benchmark.git#tag=v$pkgver")
-md5sums=('SKIP')
+              'python2-aspectlib' 'python-pytest-xdist' 'python2-pytest-xdist'
+              'python-pytest-runner' 'python2-pytest-runner' 'python-elasticsearch'
+              'python2-elasticsearch' 'git')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/ionelmc/pytest-benchmark/archive/v$pkgver.tar.gz")
+sha512sums=('4a037fc3133b93a5a5ae914c92bc03468812aaa883cfbfeca35877003ebad781ab0dd4fc941eb6d9c7c44d7bf5380585ce04392c77278c54b7b4ebe5911a09f8')
 
 prepare() {
-  cp -a pytest-benchmark{,-py2}
+  cp -a pytest-benchmark-$pkgver{,-py2}
 }
 
 build() {
-  cd "$srcdir"/pytest-benchmark
+  cd "$srcdir"/pytest-benchmark-$pkgver
   python setup.py build
 
-  cd "$srcdir"/pytest-benchmark-py2
+  cd "$srcdir"/pytest-benchmark-$pkgver-py2
   python2 setup.py build
 }
 
@@ -32,29 +35,32 @@
   # Hack entry points by installing it
   # Test should be related to pytest 2.9
 
-  cd "$srcdir"/pytest-benchmark
+  cd "$srcdir"/pytest-benchmark-$pkgver
   python setup.py install --root="$PWD/tmp_install" --optimize=1
-  LC_CTYPE=en_US.UTF-8 PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" py.test tests/ || warning "Tests failed"
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" PATH="$PWD/tmp_install/usr/bin:$PATH" python setup.py pytest --addopts=tests || warning "Tests failed"
 
-  cd "$srcdir"/pytest-benchmark-py2
+  cd "$srcdir"/pytest-benchmark-$pkgver-py2
   python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" py.test2 tests/ || warning "Tests failed"
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" PATH="$PWD/tmp_install/usr/bin:$PATH" python2 setup.py pytest --addopts=tests || warning "Tests failed"
 }
 
 package_python-pytest-benchmark() {
-  depends=('python-pytest')
+  depends=('python-pytest' 'python-py-cpuinfo')
 
-  cd "$srcdir"/pytest-benchmark
+  cd "$srcdir"/pytest-benchmark-$pkgver
   python setup.py install --root="$pkgdir"/ --optimize=1
   install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 
 package_python2-pytest-benchmark() {
-  depends=('python2-pytest' 'python2-statistics' 'python2-pathlib')
+  depends=('python2-pytest' 'python-py-cpuinfo' 'python2-statistics' 'python2-pathlib')
 
-  cd "$srcdir"/pytest-benchmark-py2
+  cd "$srcdir"/pytest-benchmark-$pkgver-py2
   python2 setup.py install --root="$pkgdir"/ --optimize=1
   install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  mv "$pkgdir"/usr/bin/pytest-benchmark{,2}
+  mv "$pkgdir"/usr/bin/py.test-benchmark{,2}
 }
 
 # vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list