community/*: disable on loongarch64 due to no libc crate support

support was only added in libc v0.2.154
This commit is contained in:
znley 2024-07-10 03:44:31 +00:00 committed by Celeste
parent e8fa81ad17
commit fdf1c0524f
6 changed files with 12 additions and 7 deletions

View File

@ -6,7 +6,8 @@ _pkgver=${pkgver/_pre/-pre.}
pkgrel=0 pkgrel=0
pkgdesc="CLI tool for reading Alpine's apk package format and APKBUILD" pkgdesc="CLI tool for reading Alpine's apk package format and APKBUILD"
url="https://github.com/jirutka/alpkit" url="https://github.com/jirutka/alpkit"
arch="all" # loongarch64: blocked by libc crate
arch="all !loongarch64"
license="MIT" license="MIT"
depends="/bin/sh" depends="/bin/sh"
makedepends=" makedepends="

View File

@ -6,7 +6,8 @@ pkgrel=3
pkgdesc="Share files by uploading via SSH and generating a non-guessable link" pkgdesc="Share files by uploading via SSH and generating a non-guessable link"
url="https://github.com/obreitwi/asfa" url="https://github.com/obreitwi/asfa"
# s390x: build failure # s390x: build failure
arch="all !s390x" # loongarch64: blocked by libc crate
arch="all !s390x !loongarch64"
license="MIT OR Apache-2.0" license="MIT OR Apache-2.0"
makedepends=" makedepends="
cargo cargo

View File

@ -6,7 +6,8 @@ pkgrel=1
pkgdesc="cat(1) clone with wings" pkgdesc="cat(1) clone with wings"
url="https://github.com/sharkdp/bat" url="https://github.com/sharkdp/bat"
# s390x: nix crate fails to build # s390x: nix crate fails to build
arch="all !s390x" # loongarch64: blocked by libc crate
arch="all !s390x !loongarch64"
license="Apache-2.0" license="Apache-2.0"
depends="less" # Required for RAW-CONTROL-CHARS depends="less" # Required for RAW-CONTROL-CHARS
makedepends=" makedepends="

View File

@ -7,7 +7,8 @@ pkgdesc="New way to see and navigate directory trees"
url="https://github.com/Canop/broot" url="https://github.com/Canop/broot"
# riscv64: TODO # riscv64: TODO
# s390x: fails to build nix crate # s390x: fails to build nix crate
arch="all !riscv64 !s390x" # loongarch64: blocked by libc crate
arch="all !riscv64 !s390x !loongarch64"
license="MIT" license="MIT"
makedepends=" makedepends="
cargo cargo

View File

@ -5,8 +5,8 @@ pkgver=0.9.70
pkgrel=0 pkgrel=0
pkgdesc="A next-generation test runner for Rust" pkgdesc="A next-generation test runner for Rust"
url="https://nexte.st/" url="https://nexte.st/"
# s390x, ppc64le: no ring crate # s390x, ppc64le, loongarch64: no ring crate
arch="all !s390x !ppc64le" arch="all !s390x !ppc64le !loongarch64"
license="Apache-2.0 OR MIT" license="Apache-2.0 OR MIT"
depends="cargo" depends="cargo"
makedepends=" makedepends="

View File

@ -8,7 +8,8 @@ pkgver=0.26.0
pkgrel=0 pkgrel=0
pkgdesc="Tool to generate C bindings from Rust code" pkgdesc="Tool to generate C bindings from Rust code"
url="https://github.com/eqrion/cbindgen" url="https://github.com/eqrion/cbindgen"
arch="all" # loongarch64: blocked by libc crate
arch="all !loongarch64"
license="MPL-2.0" license="MPL-2.0"
makedepends="cargo cargo-auditable" makedepends="cargo cargo-auditable"
checkdepends="cython" checkdepends="cython"