From 5304fe4d65fe3bc6a24168fe6491fc7c5f4ccd4b Mon Sep 17 00:00:00 2001 From: winterddd Date: Wed, 22 Oct 2025 10:30:38 +0800 Subject: [PATCH] riscv64: skip unsupport check libtasn1 check use valgrind, which do not support rva23 yet Signed-off-by: winterddd --- libtasn1.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libtasn1.spec b/libtasn1.spec index 187a432..8c83fc7 100644 --- a/libtasn1.spec +++ b/libtasn1.spec @@ -1,4 +1,4 @@ -%define anolis_release 3 +%define anolis_release 4 Summary: The ASN.1 library used in GNUTLS Name: libtasn1 @@ -73,7 +73,9 @@ autoreconf -vfi find %{buildroot}%{_libdir} -name "*.la" -exec %__rm -vf {} \; %check +%ifnarch riscv64 make check +%endif %files %license COPYING doc/COPYING* @@ -94,6 +96,9 @@ make check %doc AUTHORS NEWS README.md %changelog +* Tue Oct 23 2025 Ruidong Tian - 4.19.0-4 +- remove unsupport test on riscv + * Tue Jul 08 2025 mgb01105731 - 4.19.0-3 - Add patch to fix CVE-2024-12133 -- Gitee