diff options
author | Ariadne Conill <ariadne@dereferenced.org> | 2020-03-23 18:11:34 +0000 |
---|---|---|
committer | Ariadne Conill <ariadne@dereferenced.org> | 2020-03-23 18:11:34 +0000 |
commit | 165b47b9973a17d45aa87834e0514c01cc62e2d2 (patch) | |
tree | ae729a74d6e5131869cfdbf00403b700cf73154b | |
parent | e7a7e4a12ce15361aa7f3c77104e534103bf6e4d (diff) | |
download | aports-165b47b9973a17d45aa87834e0514c01cc62e2d2.tar.bz2 aports-165b47b9973a17d45aa87834e0514c01cc62e2d2.tar.xz |
main/llvm8: apply same changes as llvm9
- py3-setuptools becomes makedepend
- check disabled on mips64
-rw-r--r-- | main/llvm8/APKBUILD | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/main/llvm8/APKBUILD b/main/llvm8/APKBUILD index 26d5ca2456..e9ec184400 100644 --- a/main/llvm8/APKBUILD +++ b/main/llvm8/APKBUILD @@ -15,8 +15,8 @@ url="https://llvm.org/" license="NCSA" depends_dev="$pkgname=$pkgver-r$pkgrel" makedepends="binutils-dev chrpath cmake libffi-dev paxmark python3 zlib-dev - libxml2-dev" -checkdepends="bash py3-setuptools" + libxml2-dev py3-setuptools" +checkdepends="bash" subpackages="$pkgname-static $pkgname-libs $pkgname-dev $pkgname-test-utils:_test_utils" source="https://github.com/llvm/llvm-project/releases/download/llvmorg-$pkgver/llvm-$pkgver.src.tar.xz 0001-Disable-dynamic-lib-tests-for-musl-s-dlclose-is-noop.patch @@ -29,8 +29,10 @@ builddir="$srcdir/$_pkgname-$pkgver.src" # ARM has few failures in test suite that we don't care about currently and # also it takes forever to run them on the builder. +# MIPS as well... case "$CARCH" in arm*) options="$options !check";; + mips*) options="$options !check";; esac # Whether is this package the default (latest) LLVM version. |