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

Felix Yan felixonmars at archlinux.org
Sat Jan 9 14:09:55 UTC 2021


    Date: Saturday, January 9, 2021 @ 14:09:54
  Author: felixonmars
Revision: 815577

upgpkg: python-pytest-mock 3.0.0-1

Modified:
  python-pytest-mock/trunk/PKGBUILD

----------+
 PKGBUILD |   49 ++++++++++++++-----------------------------------
 1 file changed, 14 insertions(+), 35 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2021-01-09 14:01:52 UTC (rev 815576)
+++ PKGBUILD	2021-01-09 14:09:54 UTC (rev 815577)
@@ -1,54 +1,33 @@
 # Maintainer: Felix Yan <felixonmars at archlinux.org>
 
-pkgbase=python-pytest-mock
-pkgname=('python-pytest-mock' 'python2-pytest-mock')
-pkgver=2.0.0
-pkgrel=3
+pkgname=python-pytest-mock
+pkgver=3.0.0
+pkgrel=1
 pkgdesc="Thin-wrapper around the mock package for easier use with py.test"
 arch=('any')
 license=('LGPL3')
 url="https://github.com/pytest-dev/pytest-mock/"
-makedepends=('python-pytest' 'python2-pytest' 'python2-mock' 'python-setuptools-scm'
-             'python2-setuptools-scm')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-mock/archive/v$pkgver.tar.gz")
-sha512sums=('0bd15bf07e28fcea72f0269f09fe340bc1f01dd4e5f20215894c59e244ebad6ba15c8ef67c1547be0a750cff3e50536e0c1ca2d783a895eecbc492ece6c6fc55')
+depends=('python-pytest')
+makedepends=('python-setuptools-scm')
+# TODO: figure out why they fail
+#checkdepends=('python-pytest-asyncio')
+source=("https://github.com/pytest-dev/pytest-mock/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
+sha512sums=('8c967dd5aea1a26411a0b3d1347714551aad8fe5bab9ad3847d30d3a6a69dbfc5abd1e9eaaddae6771348715887dac68ce7c54bb553a4f8b5abb4abc9a7ad9ce')
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
 
-prepare() {
-  cp -a pytest-mock-$pkgver{,-py2}
-}
-
 build() {
-  cd "$srcdir"/pytest-mock-$pkgver
+  cd pytest-mock-$pkgver
   python setup.py build
-
-  cd "$srcdir"/pytest-mock-$pkgver-py2
-  python2 setup.py build
 }
 
 check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir"/pytest-mock-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH:$PWD/tests" py.test
-
-  cd "$srcdir"/pytest-mock-$pkgver-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH:$PWD/tests" py.test2
+  cd pytest-mock-$pkgver
+  python setup.py egg_info
+  PYTHONPATH="$PWD:$PWD/src" pytest
 }
 
-package_python-pytest-mock() {
-  depends=('python-pytest')
-
+package() {
   cd pytest-mock-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
 }
-
-package_python2-pytest-mock() {
-  depends=('python2-pytest' 'python2-mock')
-
-  cd pytest-mock-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}



More information about the arch-commits mailing list