76 lines
1.4 KiB
Bash
76 lines
1.4 KiB
Bash
# Copyright 2023-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
CRATES=" "
|
|
LLVM_COMPAT=( 20 )
|
|
RUST_MIN_VER="1.82.0"
|
|
|
|
inherit cargo edo multiprocessing llvm-r1 shell-completion
|
|
|
|
DESCRIPTION="pkgcraft-based tools for Gentoo"
|
|
HOMEPAGE="https://pkgcraft.github.io/"
|
|
|
|
if [[ ${PV} == 9999 ]] ; then
|
|
EGIT_REPO_URI="https://github.com/pkgcraft/pkgcraft"
|
|
inherit git-r3
|
|
|
|
S="${WORKDIR}"/${P}/crates/pkgcraft-tools
|
|
else
|
|
SRC_URI="https://github.com/pkgcraft/pkgcraft/releases/download/${P}/${P}.tar.xz"
|
|
|
|
KEYWORDS="~amd64 ~arm64"
|
|
fi
|
|
|
|
LICENSE="MIT"
|
|
# Dependent crate licenses
|
|
LICENSE+=" Apache-2.0 BSD-2 BSD CC0-1.0 GPL-3+ ISC MIT Unicode-DFS-2016"
|
|
SLOT="0"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test ) "
|
|
|
|
QA_FLAGS_IGNORED="usr/bin/pk"
|
|
|
|
# Clang needed for bindgen
|
|
BDEPEND="
|
|
$(llvm_gen_dep '
|
|
llvm-core/clang:${LLVM_SLOT}
|
|
')
|
|
test? ( dev-util/cargo-nextest )
|
|
"
|
|
|
|
pkg_setup() {
|
|
llvm-r1_pkg_setup
|
|
rust_pkg_setup
|
|
}
|
|
|
|
src_unpack() {
|
|
if [[ ${PV} == 9999 ]] ; then
|
|
git-r3_src_unpack
|
|
cargo_live_src_unpack
|
|
else
|
|
cargo_src_unpack
|
|
fi
|
|
}
|
|
|
|
src_test() {
|
|
unset CLICOLOR CLICOLOR_FORCE
|
|
|
|
local -x NEXTEST_TEST_THREADS="$(makeopts_jobs)"
|
|
|
|
# pkg::env::current_dir is likely sensitive to ebuild env
|
|
edo ${CARGO} nextest run $(usev !debug '--release') \
|
|
--color always \
|
|
--all-features \
|
|
--tests \
|
|
-- --skip pkg::env::current_dir
|
|
}
|
|
|
|
src_install() {
|
|
cargo_src_install
|
|
|
|
newbashcomp shell/pk.bash pk
|
|
dozshcomp shell/_pk
|
|
dofishcomp shell/pk.fish
|
|
}
|