mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-10 20:18:41 -04:00
guru version of this commit: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01ba4dc61965ef7658a24728841c04c9a1ce4871 Closes: https://bugs.gentoo.org/943170 Closes: https://bugs.gentoo.org/943223 Closes: #260 Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
60 lines
1.1 KiB
Bash
60 lines
1.1 KiB
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cargo
|
|
|
|
DESCRIPTION="Jujutsu - an experimental version control system"
|
|
HOMEPAGE="https://github.com/martinvonz/jj"
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/martinvonz/jj.git"
|
|
else
|
|
SRC_URI="
|
|
https://github.com/martinvonz/jj/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
|
|
${CARGO_CRATE_URIS}
|
|
"
|
|
KEYWORDS="~amd64"
|
|
fi
|
|
|
|
LICENSE="Apache-2.0"
|
|
# Dependent crate licenses
|
|
LICENSE+=" Apache-2.0 BSD MIT MPL-2.0 Unicode-DFS-2016"
|
|
SLOT="0"
|
|
|
|
BDEPEND="virtual/pkgconfig"
|
|
DEPEND="
|
|
>=app-arch/zstd-1.5.5:=
|
|
>=dev-libs/libgit2-1.8.1:0/1.8
|
|
dev-libs/openssl
|
|
net-libs/libssh2:=
|
|
sys-libs/zlib
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
QA_FLAGS_IGNORED="usr/bin/${PN}"
|
|
|
|
pkg_setup() {
|
|
export LIBGIT2_NO_VENDOR=1
|
|
export LIBSSH2_SYS_USE_PKG_CONFIG=1
|
|
export OPENSSL_NO_VENDOR=1
|
|
export PKG_CONFIG_ALLOW_CROSS=1
|
|
export ZSTD_SYS_USE_PKG_CONFIG=1
|
|
rust_pkg_setup
|
|
}
|
|
|
|
src_unpack() {
|
|
if [[ ${PV} == 9999 ]]; then
|
|
git-r3_src_unpack
|
|
cargo_live_src_unpack
|
|
else
|
|
cargo_src_unpack
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
cargo_src_install --path cli
|
|
}
|