mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
47 lines
845 B
Bash
47 lines
845 B
Bash
# Copyright 2024-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# Autogenerated by pycargoebuild 0.13.4
|
|
|
|
EAPI=8
|
|
|
|
RUST_MIN_VER="1.84.0"
|
|
|
|
CRATES="
|
|
"
|
|
|
|
inherit cargo
|
|
|
|
DESCRIPTION="Jujutsu - an experimental version control system"
|
|
HOMEPAGE="https://github.com/jj-vcs/jj"
|
|
SRC_URI="
|
|
https://github.com/jj-vcs/jj/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
|
|
https://files.demize.dev/gentoo/${CATEGORY}/${PN}/${P}-crates.tar.xz
|
|
"
|
|
|
|
LICENSE="Apache-2.0"
|
|
# Dependent crate licenses
|
|
LICENSE+="
|
|
Apache-2.0 BSD MIT MPL-2.0 Unicode-3.0 Unicode-DFS-2016 WTFPL-2 ZLIB
|
|
"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64"
|
|
|
|
RDEPEND="
|
|
dev-vcs/git
|
|
"
|
|
|
|
QA_FLAGS_IGNORED="usr/bin/${PN}"
|
|
|
|
src_configure() {
|
|
local myfeatures=(
|
|
watchman
|
|
git
|
|
)
|
|
cargo_src_configure --no-default-features
|
|
}
|
|
|
|
src_install() {
|
|
cargo_src_install --path cli
|
|
}
|