diff options
author | Ariadne Conill <ariadne@dereferenced.org> | 2020-04-08 01:23:26 +0000 |
---|---|---|
committer | Ariadne Conill <ariadne@dereferenced.org> | 2020-04-08 01:23:26 +0000 |
commit | 2eb506cfecab16d23c83cd3f75dbedf8a6e9c312 (patch) | |
tree | 20e1c934b123f6164e2ba44c678e8b0ea655e3a9 /community/py3-setuptools_scm/APKBUILD | |
parent | cf77bacd66ea99e873cf6b8a5e01e761c13ee433 (diff) | |
download | aports-2eb506cfecab16d23c83cd3f75dbedf8a6e9c312.tar.bz2 aports-2eb506cfecab16d23c83cd3f75dbedf8a6e9c312.tar.xz |
community/py3-setuptools_scm: disable tests on mips
Diffstat (limited to 'community/py3-setuptools_scm/APKBUILD')
-rwxr-xr-x | community/py3-setuptools_scm/APKBUILD | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/community/py3-setuptools_scm/APKBUILD b/community/py3-setuptools_scm/APKBUILD index 97654a9c8e..c9caf6efd8 100755 --- a/community/py3-setuptools_scm/APKBUILD +++ b/community/py3-setuptools_scm/APKBUILD @@ -17,6 +17,10 @@ builddir="$srcdir"/$_pkgname-$pkgver replaces="py-setuptools_scm" # Backwards compatibility provides="py-setuptools_scm=$pkgver-r$pkgrel" # Backwards compatibility +case "$CARCH" in +mips*) options="!check" ;; +esac + build() { python3 setup.py build } |