mitmproxy-linux-0.12.11gentoo
download
# Copyright 2024-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CRATES="
"
# Extra crates required at runtime via rustc-build-sysroot crate.
# Note: versions are locked in /usr/lib/rust/*/lib/rustlib/src/rust/library/Cargo.lock.
CRATES+="
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]+wasi-0.2.4
[email protected]
[email protected]+wasi-0.2.9
[email protected]+wasi-0.3.0-rc-2026-03-15
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
"
# Implied by crates above.
RUST_MIN_VER=1.95.0
RUST_MAX_VER=1.97.1
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=maturin
PYTHON_COMPAT=( python3_{12..15} )
RUST_REQ_USE="llvm_targets_BPF(+),rust-src"
inherit cargo distutils-r1 pypi
DESCRIPTION="mitmproxy's Rust bits (Linux-specific part)"
HOMEPAGE="
https://github.com/mitmproxy/mitmproxy_rs/
https://pypi.org/project/mitmproxy-rs/
"
SRC_URI+="
${CARGO_CRATE_URIS}
https://github.com/gentoo-crate-dist/mitmproxy_rs/releases/download/v${PV}/mitmproxy_rs-${PV}-crates.tar.xz
"
LICENSE="MIT"
# Dependent crate licenses
LICENSE+="
0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD ISC
LGPL-3+ MIT Unicode-3.0 WTFPL-2 ZLIB
"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
BDEPEND="
dev-util/bpf-linker
"
src_prepare() {
local PATCHES=(
# aya-ebpf overwrites libc functions with incompatible
# implementations that break everything, and therefore
# can only be used for bpf* targets
# https://github.com/aya-rs/aya/issues/1254
"${FILESDIR}/${PN}-0.11.5-no-host-aya-ebpf.patch"
)
distutils-r1_src_prepare
# this only implicitly builds mitmproxy-linux-ebpf, and is broken
# https://github.com/mitmproxy/mitmproxy/issues/7663
rm mitmproxy-linux/build.rs || die
}
src_configure() {
# first, we must build mitmproxy-linux-ebpf for the bpf target
# bpf-linker requires BPF target that is only available in nightly
local -x RUSTC_BOOTSTRAP=1
# no clue why this needs to be explicit
local -x RUSTFLAGS="-C linker=bpf-linker"
local cmd=(
"${CARGO}" build
-Z build-std=core
--bins
--release
--target=bpfel-unknown-none
)
pushd mitmproxy-linux-ebpf >/dev/null || die
echo "${cmd[*]}" >&2
"${cmd[@]}" || die "${cmd[*]} failed"
popd >/dev/null || die
export OUT_DIR="${S}/target/bpfel-unknown-none/release"
}
python_test() {
:
# all tests are ignored
# cargo_src_test --manifest-path mitmproxy-linux/Cargo.toml
}