[arch-commits] Commit in python-pytest-mock/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Sat Oct 26 20:21:20 UTC 2019
Date: Saturday, October 26, 2019 @ 20:21:19
Author: felixonmars
Revision: 520475
archrelease: copy trunk to community-staging-any
Added:
python-pytest-mock/repos/community-staging-any/
python-pytest-mock/repos/community-staging-any/PKGBUILD
(from rev 520474, python-pytest-mock/trunk/PKGBUILD)
----------+
PKGBUILD | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
Copied: python-pytest-mock/repos/community-staging-any/PKGBUILD (from rev 520474, python-pytest-mock/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2019-10-26 20:21:19 UTC (rev 520475)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-pytest-mock
+pkgname=('python-pytest-mock' 'python2-pytest-mock')
+pkgver=1.10.4
+pkgrel=2
+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/$pkgver.tar.gz")
+sha512sums=('5825f051a21d25027c413265bff98d7d4d0d98a4b2648d87ab247a942670133eb96091e4504c87f46b7c9d63e1e7c7e294c212761c9f3348ccfabcc129c57c35')
+
+prepare() {
+ cp -a pytest-mock-$pkgver{,-py2}
+
+ export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+}
+
+build() {
+ cd "$srcdir"/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.8/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
+}
+
+package_python-pytest-mock() {
+ depends=('python-pytest')
+
+ 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