main/vala: disable tests on ppc64le, fail to compile

A fix is available upstream: https://gitlab.gnome.org/GNOME/vala/-/issues/1068.
We can't just apply it though because it modifies the parts of Vala that
are written in Vala, so we'd have to rebootstrap the compiler. Since
a new release will be done soon for GNOME 3.38, we can just wait for that
and re-enable the tests when bumping.
This commit is contained in:
Rasmus Thomsen 2020-09-10 09:17:46 +02:00
parent ad6438e165
commit b1923a1509
No known key found for this signature in database
GPG Key ID: 1115241518154EA6

View File

@ -14,6 +14,14 @@ makedepends="libxslt-dev bash flex bison gobject-introspection-dev graphviz-dev"
checkdepends="dbus-x11"
source="https://download.gnome.org/sources/vala/${pkgver%.*}/vala-$pkgver.tar.xz"
case "$CARCH" in
ppc64le)
# Fail to compile, fix is upstream: https://gitlab.gnome.org/GNOME/vala/-/issues/1068
# Can't apply patch because then we'd have to re-bootstrap Vala, so wait for the next release tarball
options="!check"
;;
esac
build() {
./configure \
--build=$CBUILD \