Files
guru/dev-vcs/jj/jj-9999.ebuild
Vivian Heisz (vhz) 7dc89e445b dev-vcs/jj: sync live
0.34.0 updated the MSRV to 1.88, so live should be updated as well.

Signed-off-by: Vivian Heisz (vhz) <demize@unstable.systems>
2025-10-01 20:23:22 -04:00

43 lines
719 B
Bash

# Copyright 2024-2025 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="Jujutsu - an experimental version control system"
HOMEPAGE="https://github.com/jj-vcs/jj"
EGIT_REPO_URI="https://github.com/jj-vcs/jj.git"
LICENSE="Apache-2.0"
# Dependent crate licenses
LICENSE+="
Apache-2.0 BSD MIT MPL-2.0 Unicode-3.0 Unicode-DFS-2016 WTFPL-2
"
SLOT="0"
RDEPEND="
dev-vcs/git
"
QA_FLAGS_IGNORED="usr/bin/${PN}"
src_unpack() {
git-r3_src_unpack
cargo_live_src_unpack
}
src_configure() {
local myfeatures=(
watchman
git
)
cargo_src_configure --no-default-features
}
src_install() {
cargo_src_install --path cli
}