gentoo/net-proxy/mitmproxy-rs/mitmproxy-rs-0.12.8.ebuild
Eli Schwartz db07b66438
net-proxy/mitmproxy-rs: Stabilize 0.12.8 amd64, #967401
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
2025-12-14 01:45:36 -05:00

54 lines
1.2 KiB
Bash

# Copyright 2024-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CRATvES=""
declare -A GIT_CRATES=(
[boringtun]='https://github.com/cloudflare/boringtun;2f3c85f5c4a601018c10b464b1ca890d9504bf6e;boringtun-%commit%/boringtun'
)
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=maturin
PYTHON_COMPAT=( python3_{12..14} )
RUST_MIN_VER=1.89.0
RUST_MAX_VER=1.90.0
inherit cargo distutils-r1 pypi
DESCRIPTION="mitmproxy's Rust bits"
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}/${P/-/_}-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"
RDEPEND="
~net-proxy/mitmproxy-linux-${PV}[${PYTHON_USEDEP}]
"
src_prepare() {
distutils-r1_src_prepare
# replace upstream crate substitution with our crate substitution, sigh
local bor_dep=$(grep ^boringtun "${ECARGO_HOME}"/config.toml || die)
sed -i -e "/boringtun/s;^.*$;${bor_dep};" Cargo.toml || die
}
python_test() {
cargo_src_test --manifest-path mitmproxy-rs/Cargo.toml
}