diff options
author | A. Wilcox <awilcox@wilcox-tech.com> | 2018-04-17 02:41:35 +0000 |
---|---|---|
committer | A. Wilcox <awilcox@wilcox-tech.com> | 2018-04-17 02:41:35 +0000 |
commit | 43b60beb3683582dba2610095c5c0d9fe103ec4c (patch) | |
tree | ee2d0852258898f90b9033fc54161c3f90fd8e7d /user/py3-pytest/APKBUILD | |
parent | 8e41995ddbb56175eb00995ab0f7f750e5bde2da (diff) | |
parent | 4f4582578d04b74931148cf5a3e4cc6653188bc6 (diff) | |
download | packages-43b60beb3683582dba2610095c5c0d9fe103ec4c.tar.gz packages-43b60beb3683582dba2610095c5c0d9fe103ec4c.tar.bz2 packages-43b60beb3683582dba2610095c5c0d9fe103ec4c.tar.xz packages-43b60beb3683582dba2610095c5c0d9fe103ec4c.zip |
Merge branch 'meta/tox' into 'master'
Basic python3 testing packages
```
Includes:
* user/py3-tox
* user/py3-setuptools
* user/py3-pluggy
* user/py3-virtualenv
* user/py3-pytest
** user/py3-py
Most of these packages use tox itself for tests, so !check until we have
a copy of tox on the mirrors with which to bootstrap.
```
See merge request !16
Diffstat (limited to 'user/py3-pytest/APKBUILD')
-rw-r--r-- | user/py3-pytest/APKBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/user/py3-pytest/APKBUILD b/user/py3-pytest/APKBUILD new file mode 100644 index 000000000..39b723529 --- /dev/null +++ b/user/py3-pytest/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: Max Rees <maxcrees@me.com> +# Maintainer: Max Rees <maxcrees@me.com> +pkgname=py3-pytest +_pkgname=pytest +pkgver=3.2.2 +pkgrel=0 +pkgdesc="A python test library" +url="https://pypi.python.org/pypi/pytest" +arch="noarch" +license="MIT" +depends="python3 py3-py" +makedepends="py3-setuptools python3-dev" +#checkdepends="py3-tox" +options="!check" # Circular dependency with py3-tox. Passes on x86_64 +source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" +builddir="$srcdir/$_pkgname-$pkgver" + +build() { + cd "$builddir" + python3 setup.py build +} + +check() { + cd "$builddir" + tox -e py36 +} + +package() { + cd "$builddir" + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="6df3a50e7d1efeaf7a283920b16d1daf800798f422bc851b0aacd2bbd5cb0a88c95f9057fae49943b9dfe6527ed552cdf8d983b944ab91d0af252ee4f6eb82db py3-pytest-3.2.2.tar.gz" |