# Copyright 2025-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # Autogenerated by pycargoebuild 0.13.5 EAPI=8 CRATES=" " declare -A GIT_CRATES=( [ratatui-core]='https://github.com/yazi-rs/ratatui;dde5e05eccfe5b7cb7712b4bdf76edd0c2cd1f25;ratatui-%commit%/ratatui-core' ) RUST_MIN_VER="1.95.0" inherit cargo desktop shell-completion xdg DESCRIPTION="Blazing fast terminal file manager written in Rust, based on async I/O" HOMEPAGE="https://yazi-rs.github.io" SRC_URI=" https://github.com/sxyazi/yazi/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz https://github.com/gentoo-zh-drafts/${PN}/releases/download/v${PV}/${P}-crates.tar.xz ${CARGO_CRATE_URIS} " LICENSE="MIT" # Dependent crate licenses LICENSE+=" Apache-2.0 BSD-2 BSD Boost-1.0 CC0-1.0 ISC MIT MPL-2.0 UoI-NCSA Unicode-3.0 Unicode-DFS-2016 WTFPL-2 ZLIB " SLOT="0" KEYWORDS="~amd64 ~arm64 ~riscv" IUSE="+cli" QA_FLAGS_IGNORED=" usr/bin/ya.* " DOCS=( README.md ) gen_git_crate_dir() { # https://github.com/gentoo/gentoo/blob/b09dd88412fe2d5eee5a8891e08bfa2d67848da3/eclass/cargo.eclass#L442 IFS=';' read -r crate_uri commit crate_dir <<<"${GIT_CRATES[$1]}" echo "${WORKDIR}/${crate_dir//%commit%/${commit}}" } src_prepare() { export YAZI_GEN_COMPLETIONS=true export YAZI_NO_GITCL=true sed -i -r 's/strip\s+= true/strip = false/' Cargo.toml || die "Sed failed!" # Remove the [patch.crates-io] section and add path-based patches sed -i '/^\[patch\.crates-io\]/,/^$/d' Cargo.toml || die cat >> Cargo.toml <<-EOF || die [patch.crates-io] ratatui-core = { path = "$(gen_git_crate_dir ratatui-core)" } EOF eapply_user } src_compile() { cargo_src_compile use cli && cargo_src_compile -p "${PN}-cli" } src_install() { dobin "$(cargo_target_dir)/${PN}" use cli && dobin "$(cargo_target_dir)/ya" newbashcomp "${S}/yazi-boot/completions/${PN}.bash" "${PN}" dozshcomp "${S}/yazi-boot/completions/_${PN}" dofishcomp "${S}/yazi-boot/completions/${PN}.fish" if use cli then newbashcomp "${S}/yazi-cli/completions/ya.bash" "ya" dozshcomp "${S}/yazi-cli/completions/_ya" dofishcomp "${S}/yazi-cli/completions/ya.fish" fi domenu "assets/${PN}.desktop" einstalldocs }