Files
guru/app-misc/onefetch/onefetch-2.26.1.ebuild
Lucio Sauer 695bcd4f2c app-misc/onefetch: add 2.26.1
Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
2025-12-30 18:12:41 +01:00

53 lines
1.3 KiB
Bash

# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
RUST_MIN_VER="1.88.0"
inherit cargo shell-completion
DESCRIPTION="Command-line Git information tool"
HOMEPAGE="https://onefetch.dev"
SRC_URI="https://github.com/o2sh/onefetch/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz
https://home.cit.tum.de/~salu/distfiles/${P}-crates.tar.xz
https://home.cit.tum.de/~salu/distfiles/${P}-shellcomp.tar.xz
"
LICENSE="MIT"
# Dependent crate licenses
LICENSE+=" Apache-2.0 BSD ISC MIT MPL-2.0 Unicode-3.0 ZLIB"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="app-arch/zstd:="
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
test? ( dev-vcs/git )
"
QA_FLAGS_IGNORED="usr/bin/onefetch"
pkg_setup() {
export ZSTD_SYS_USE_PKG_CONFIG=1
rust_pkg_setup
}
src_install() {
doman docs/onefetch.1
dodoc {CHANGELOG,README}.md
dobashcomp "${WORKDIR}"/completions/onefetch
dofishcomp "${WORKDIR}"/completions/onefetch.fish
dozshcomp "${WORKDIR}"/completions/_onefetch
cargo_src_install
}
pkg_postinst() {
elog "Onefetch supports displaying images using x11-terms/kitty or any terminal emulator"
elog "which supports the SIXEL graphics format or iTerm2's Inline Images Protocol."
elog "See also: https://github.com/o2sh/onefetch/wiki/images-in-the-terminal"
}