blob: 2a45f28a9d42876940107a977eb5d1b6984f2e4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYPI_VERIFY_REPO=https://github.com/breezy-team/vcsgraph
PYTHON_COMPAT=( python3_{13..14} )
RUST_MIN_VER="1.83"
CRATES=""
inherit cargo distutils-r1 pypi
DESCRIPTION="Graph algorithms for version control systems"
HOMEPAGE="
https://pypi.org/project/vcsgraph/
https://github.com/breezy-team/vcsgraph/
"
SRC_URI+="
https://github.com/gentoo-crate-dist/${PN}/releases/download/v${PV}/${P}-crates.tar.xz
"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
BDEPEND="
dev-python/setuptools-rust[${PYTHON_USEDEP}]
"
distutils_enable_tests unittest
QA_FLAGS_IGNORED="usr/lib.*/py.*/site-packages/vcsgraph/_graph_rs.*.so"
src_unpack() {
pypi_src_unpack
cargo_gen_config
}
python_test() {
cd "${BUILD_DIR}/install$(python_get_sitedir)" || die
eunittest
}
|