pandora_box-0.18.0.ebuild
Download (2.4 KB)
# Copyright 2024-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
IUSE="static"
RUST_MIN_VER="1.88.0"
CRATES="
ahash@0.8.12
autocfg@1.5.0
bitflags@2.10.0
block-buffer@0.10.4
btoi@0.5.0
bumpalo@3.19.1
cfg-if@1.0.4
cfg_aliases@0.2.1
console@0.16.2
cpufeatures@0.2.17
crc-catalog@2.4.0
crc@3.4.0
crossbeam-deque@0.8.6
crossbeam-epoch@0.9.18
crossbeam-utils@0.8.21
crypto-common@0.1.7
data-encoding@2.9.0
digest@0.10.7
dns-lookup@2.1.1
either@1.15.0
encode_unicode@1.0.0
equivalent@1.0.2
errno@0.3.14
fastrand@2.3.0
generic-array@0.14.7
getrandom@0.3.4
hashbrown@0.16.1
hermit-abi@0.5.2
indexmap@2.12.1
indicatif@0.18.3
itoa@1.0.17
js-sys@0.3.83
keccak@0.1.5
lexopt@0.3.1
libc@0.2.179
linux-raw-sys@0.11.0
md5@0.8.0
memchr@2.7.6
memoffset@0.9.1
nix@0.30.1
num-traits@0.2.19
num_cpus@1.17.0
once_cell@1.21.3
patricia_tree@0.8.0
portable-atomic@1.13.0
proc-macro2@1.0.104
quote@1.0.42
r-efi@5.3.0
rayon-core@1.13.0
rayon@1.11.0
resolv-conf@0.7.6
rustix@1.1.3
rustversion@1.0.22
serde@1.0.228
serde_core@1.0.228
serde_derive@1.0.228
serde_json@1.0.148
sha1@0.10.6
sha3@0.10.8
simple-dns@0.7.1
socket2@0.6.1
syn@2.0.113
tempfile@3.24.0
typenum@1.19.0
unicode-ident@1.0.22
unicode-width@0.2.2
unit-prefix@0.5.2
version_check@0.9.5
wasip2@1.0.1+wasi-0.2.4
wasm-bindgen-macro-support@0.2.106
wasm-bindgen-macro@0.2.106
wasm-bindgen-shared@0.2.106
wasm-bindgen@0.2.106
web-time@1.1.0
windows-link@0.2.1
windows-sys@0.60.2
windows-sys@0.61.2
windows-targets@0.53.5
windows_aarch64_gnullvm@0.53.1
windows_aarch64_msvc@0.53.1
windows_i686_gnu@0.53.1
windows_i686_gnullvm@0.53.1
windows_i686_msvc@0.53.1
windows_x86_64_gnu@0.53.1
windows_x86_64_gnullvm@0.53.1
windows_x86_64_msvc@0.53.1
wit-bindgen@0.46.0
zerocopy-derive@0.8.31
zerocopy@0.8.31
zmij@1.0.10
"
inherit cargo
DESCRIPTION="Syd's log inspector & profile writer"
HOMEPAGE="https://man.exherbolinux.org"
SRC_URI="https://git.sr.ht/~alip/syd/archive/pandora-${PV}.tar.gz -> ${P}.tar.gz
${CARGO_CRATE_URIS}
"
S="${WORKDIR}/syd-pandora-${PV}/pandora"
LICENSE="GPL-3"
# Dependent crate licenses
LICENSE+="
Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD CC0-1.0 GPL-2
ISC MIT MPL-2.0 Unicode-DFS-2016
"
SLOT="0"
KEYWORDS="~amd64"
src_configure() {
if use static; then
export RUSTFLAGS+="-Ctarget-feature=+crt-static"
fi
cargo_src_configure
}
| ||