mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
51 lines
1.3 KiB
Bash
51 lines
1.3 KiB
Bash
# Copyright 2024-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
CRATES=""
|
|
|
|
RUST_MIN_VER="1.85.0"
|
|
|
|
inherit cargo systemd shell-completion
|
|
|
|
DESCRIPTION="A cli tool for managing long running shell commands."
|
|
HOMEPAGE="https://github.com/nukesor/pueue"
|
|
|
|
SRC_URI="https://github.com/Nukesor/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
DEPS_URI="https://github.com/gentoo-crate-dist/pueue/releases/download/v${PV}/${P}-crates.tar.xz"
|
|
SRC_URI+=" ${DEPS_URI}"
|
|
|
|
LICENSE="MIT"
|
|
# Dependent crate licenses
|
|
LICENSE+=" Apache-2.0 BSD ISC MIT MPL-2.0 Unicode-DFS-2016 Unlicense"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
QA_FLAGS_IGNORED="
|
|
usr/bin/${PN}
|
|
usr/bin/${PN}d
|
|
"
|
|
|
|
src_install() {
|
|
cargo_src_install --path pueue
|
|
|
|
# generate and install shell completions files
|
|
mkdir completions
|
|
|
|
# bash completions
|
|
"${ED}"/usr/bin/pueue completions bash completions || die "gen bash completion failed"
|
|
newbashcomp completions/${PN}.bash ${PN}
|
|
|
|
# zsh completions
|
|
"${ED}"/usr/bin/pueue completions zsh completions || die "gen zsh completion failed"
|
|
dozshcomp completions/_${PN}
|
|
|
|
# fish completions
|
|
"${ED}"/usr/bin/pueue completions fish completions || die "gen fish completion failed "
|
|
dofishcomp completions/${PN}.fish
|
|
|
|
# install the systemd-service
|
|
systemd_douserunit utils/pueued.service
|
|
}
|