# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

RUST_MIN_VER="1.88.0"

inherit cargo git-r3

DESCRIPTION="Git information tool that displays project information and code statistics"
HOMEPAGE="https://onefetch.dev/
	https://github.com/o2sh/onefetch/"

EGIT_REPO_URI="https://github.com/o2sh/${PN}"
EGIT_BRANCH="main"

LICENSE="MIT"
SLOT="0"

QA_FLAGS_IGNORED='.*'

src_unpack() {
	git-r3_src_unpack
	cargo_live_src_unpack
}

src_compile() {
	cargo_src_compile --frozen --verbose --bin "${PN}"
}

src_install() {
	cargo_src_install
	einstalldocs
}