From 6f6f34ea8b8ea9709cf57323e3b4adb11e0cf165 Mon Sep 17 00:00:00 2001 From: Weijie Wang Date: Thu, 13 Jun 2024 13:04:29 +0000 Subject: [PATCH] testing/*: disable on loongarch64 Signed-off-by: Weijie Wang --- testing/eva/APKBUILD | 4 +++- testing/grass/APKBUILD | 3 ++- testing/horust/APKBUILD | 3 ++- testing/lazymc/APKBUILD | 3 ++- testing/runst/APKBUILD | 3 ++- testing/xendmail/APKBUILD | 3 ++- 6 files changed, 13 insertions(+), 6 deletions(-) diff --git a/testing/eva/APKBUILD b/testing/eva/APKBUILD index 3e7649cc584..0675ca571fc 100644 --- a/testing/eva/APKBUILD +++ b/testing/eva/APKBUILD @@ -6,7 +6,9 @@ pkgrel=2 pkgdesc="Calculator REPL, similar to bc(1)" url="https://github.com/nerdypepper/eva" license="MIT" -arch="all !s390x !riscv64" # limited by rust/cargo +# s390x, riscv64: limited by rust/cargo +# loongarch64: libc crate fails to build +arch="all !s390x !riscv64 !loongarch64" makedepends="cargo cargo-auditable" source="https://github.com/nerdypepper/eva/archive/v$pkgver/eva-$pkgver.tar.gz deps.patch diff --git a/testing/grass/APKBUILD b/testing/grass/APKBUILD index a52633c1940..7e0d2b9c711 100644 --- a/testing/grass/APKBUILD +++ b/testing/grass/APKBUILD @@ -5,7 +5,8 @@ pkgver=0.12.3 pkgrel=1 pkgdesc="Sass compiler written purely in Rust" url="https://github.com/connorskees/grass" -arch="all" +# loongarch64: libc crate fails to build +arch="all !loongarch64" license="MIT" makedepends="cargo cargo-auditable" source=" diff --git a/testing/horust/APKBUILD b/testing/horust/APKBUILD index 3506c67de27..8967ce6b5fd 100644 --- a/testing/horust/APKBUILD +++ b/testing/horust/APKBUILD @@ -6,7 +6,8 @@ pkgrel=1 pkgdesc="Horust is a supervisor / init system written in rust and designed to be run inside containers" url="https://github.com/FedericoPonzi/Horust" # s390x, riscv64: nix/libc crates lack support -arch="all !s390x !riscv64" +# loongarch64: libc crate fails to build +arch="all !s390x !riscv64 !loongarch64" license="MIT" makedepends="cargo cargo-auditable" checkdepends="bash" # test_single_command uses bash diff --git a/testing/lazymc/APKBUILD b/testing/lazymc/APKBUILD index 5542c684bc2..b1009dea04c 100644 --- a/testing/lazymc/APKBUILD +++ b/testing/lazymc/APKBUILD @@ -5,7 +5,8 @@ pkgver=0.2.11 pkgrel=0 pkgdesc="Put your Minecraft server to rest when idle" url="https://github.com/timvisee/lazymc" -arch="all" +# loongarch64: libc crate +arch="all !loongarch64" license="GPL-3.0-only" makedepends=" cargo diff --git a/testing/runst/APKBUILD b/testing/runst/APKBUILD index 42bcb2c194a..8e490699a50 100644 --- a/testing/runst/APKBUILD +++ b/testing/runst/APKBUILD @@ -5,7 +5,8 @@ pkgver=0.1.7 pkgrel=0 pkgdesc="Dead simple notification daemon" url="https://github.com/orhun/runst" -arch="all !s390x" +# loongarch64: libc crate fails to build +arch="all !s390x !loongarch64" license="MIT OR Apache-2.0" makedepends=" cargo diff --git a/testing/xendmail/APKBUILD b/testing/xendmail/APKBUILD index 224487f3352..fdbc2101209 100644 --- a/testing/xendmail/APKBUILD +++ b/testing/xendmail/APKBUILD @@ -5,7 +5,8 @@ pkgrel=0 pkgdesc="Like sendmail, for users" url="https://git.sr.ht/~whynothugo/xendmail" # rust-ring -arch="all !s390x !ppc64le !riscv64" +# loongarch64: libc crate fails to build +arch="all !s390x !ppc64le !riscv64 !loongarch64" license="Apache-2.0" makedepends="cargo cargo-auditable scdoc" subpackages="$pkgname-doc"