From fc4ba0498ce02a45ee392d7006bd9127656dbfe1 Mon Sep 17 00:00:00 2001 From: Huang Rui Date: Mon, 6 Jul 2026 04:41:50 -0700 Subject: [PATCH] app-text/xan: fix RUST_MIN_VER, drop compressed doc file A vendored crate needs Rust 1.87, so raise RUST_MIN_VER to match. Also remove the pre-compressed dataviz.tar.gz sample from the installed docs so it no longer trips the compressed-file QA check. Closes: https://bugs.gentoo.org/978812 Closes: https://bugs.gentoo.org/978813 Signed-off-by: Huang Rui --- app-text/xan/xan-0.59.0.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app-text/xan/xan-0.59.0.ebuild b/app-text/xan/xan-0.59.0.ebuild index b0ddaac9fa..670c67a809 100644 --- a/app-text/xan/xan-0.59.0.ebuild +++ b/app-text/xan/xan-0.59.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -RUST_MIN_VER="1.83.0" +RUST_MIN_VER="1.87.0" # Crate list bundled into a single tarball published at # https://github.com/vowstar/vowstar-overlay-dist @@ -63,5 +63,9 @@ src_compile() { src_install() { cargo_src_install + # docs/cookbook ships a pre-compressed sample dataset that would be + # installed as an already-compressed file, tripping the QA check for + # compressed files in /usr/share/doc (bug 978812). + rm "${S}"/docs/cookbook/resources/dataviz.tar.gz || die einstalldocs }