blob: eb123caaaa97ae419be1f392eb61d9b3ea804eaf (
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
|
# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# Autogenerated by pycargoebuild 0.6.1
EAPI=8
CRATES=""
RUST_MIN_VER="1.81"
inherit cargo
DESCRIPTION="Next-generation test runner for Rust"
HOMEPAGE="https://nexte.st/"
SRC_URI="
https://github.com/nextest-rs/nextest/archive/refs/tags/${P}.tar.gz
https://github.com/gentoo-crate-dist/nextest/releases/download/${P}/nextest-${P}-crates.tar.xz
"
S="${WORKDIR}"/nextest-${P}/${PN}
LICENSE="|| ( Apache-2.0 MIT )"
# Dependent crate licenses
LICENSE+="
Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD Boost-1.0 ISC MIT
MPL-2.0 Unicode-3.0
"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ~x86"
BDEPEND="virtual/pkgconfig"
DEPEND="
>=app-arch/zstd-1.5.5:=
dev-libs/openssl
"
RDEPEND="${DEPEND}"
QA_FLAGS_IGNORED="usr/bin/${PN}"
pkg_setup() {
export OPENSSL_NO_VENDOR=1
export ZSTD_SYS_USE_PKG_CONFIG=1
rust_pkg_setup
}
|