mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-19 07:49:00 -04:00
- sys-apps/exa removed in ::gentoo, and changed to sys-apps/eza [1] - bat-extras-2023.09.19 changed to use sys-apps/eza [2] [1]64cad5f333
[2]d96fc92165
Signed-off-by: Huang Rui <vowstar@gmail.com>
83 lines
1.6 KiB
Bash
83 lines
1.6 KiB
Bash
# Copyright 2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Bash scripts that integrate bat with various command line tools."
|
|
HOMEPAGE="https://github.com/eth-p/bat-extras"
|
|
if [[ ${PV} == *9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/eth-p/bat-extras.git"
|
|
RESTRICT="mirror fetch"
|
|
else
|
|
SRC_URI="https://github.com/eth-p/bat-extras/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64"
|
|
RESTRICT="mirror test"
|
|
fi
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
IUSE="+man"
|
|
|
|
DEPEND="
|
|
app-shells/bash
|
|
sys-apps/bat
|
|
dev-util/sh
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
app-admin/entr
|
|
app-shells/fzf
|
|
dev-python/black
|
|
dev-util/git-delta
|
|
dev-vcs/git
|
|
sys-apps/eza
|
|
sys-apps/ripgrep
|
|
sys-devel/clang
|
|
sys-libs/ncurses
|
|
virtual/rust[rustfmt(+)]
|
|
"
|
|
|
|
S="${WORKDIR}/${P}"
|
|
|
|
src_unpack() {
|
|
default
|
|
if [[ ${PV} == *9999 ]]; then
|
|
git-r3_checkout
|
|
fi
|
|
}
|
|
|
|
src_prepare() {
|
|
# remove license
|
|
rm LICENSE.md || die
|
|
# remove contribution document
|
|
rm CONTRIBUTING.md || die
|
|
default
|
|
}
|
|
|
|
src_compile() {
|
|
if use man; then
|
|
./build.sh --compress --minify=all --manuals --no-verify || die "build failed"
|
|
else
|
|
./build.sh --compress --minify=all --no-verify || die "build failed"
|
|
fi
|
|
}
|
|
|
|
src_test() {
|
|
./test.sh || die "test failed"
|
|
}
|
|
|
|
src_install() {
|
|
dobin bin/*
|
|
if use man; then
|
|
doman man/*
|
|
fi
|
|
}
|
|
|
|
pkg_postinst() {
|
|
einfo "To enable additional code formatting for 'prettybat' script, ensure"
|
|
einfo "'net-libs/nodejs' is installed in your system, and use 'npm' to install"
|
|
einfo "'prettier' (npm i -g prettier). Once 'prettier' is properly installed in"
|
|
einfo "your system, remerge this pacakge."
|
|
}
|