From b1923a1509d0a290950ce6fc32b23088e330c5fa Mon Sep 17 00:00:00 2001 From: Rasmus Thomsen Date: Thu, 10 Sep 2020 09:17:46 +0200 Subject: [PATCH] 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. --- main/vala/APKBUILD | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/main/vala/APKBUILD b/main/vala/APKBUILD index 404cde8b553..11b82ae19ee 100644 --- a/main/vala/APKBUILD +++ b/main/vala/APKBUILD @@ -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 \