-
Notifications
You must be signed in to change notification settings - Fork 2.7k
mitmproxy: update to 12.2.3 #61721
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
mitmproxy: update to 12.2.3 #61721
Changes from all commits
56e2b96
a173dac
7cc008f
dc9cad3
cf609aa
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- a/mitmproxy-linux/build.rs | ||
| +++ b/mitmproxy-linux/build.rs | ||
| @@ -31,5 +31,5 @@ fn main() -> anyhow::Result<()> { | ||
| .as_str(), | ||
| ..Default::default() | ||
| }; | ||
| - aya_build::build_ebpf([ebpf_package], Toolchain::default()) | ||
| + aya_build::build_ebpf([ebpf_package], Toolchain::Custom("stable")) | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| # Template file for 'python3-mitmproxy-linux' | ||
| pkgname=python3-mitmproxy-linux | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The package name should probably be |
||
| version=0.12.11 | ||
| revision=1 | ||
| build_style=python3-pep517 | ||
| build_helper="rust" | ||
| hostmakedepends="maturin cargo rust-bpf-linker llvm22-devel rust-src" | ||
| makedepends="rust-std python3-devel" | ||
| depends="python3" | ||
| short_desc="Linux native binary for mitmproxy" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We generally use upstream descriptions, |
||
| maintainer="Orphaned <orphan@voidlinux.org>" | ||
| license="MIT" | ||
| homepage="https://github.com/mitmproxy/mitmproxy_rs" | ||
| changelog="https://github.com/mitmproxy/mitmproxy_rs/raw/main/CHANGELOG.md" | ||
| distfiles="${PYPI_SITE}/m/mitmproxy_linux/mitmproxy_linux-${version}.tar.gz" | ||
| checksum=3155d4aa6b3e038f97b39ed5aa7b1fc89e5b7d25d119a19581aa472dc606ae5c | ||
|
|
||
| export LLVM_SYS_221_PREFIX=/usr/lib/llvm/22 | ||
| export RUSTC_BOOTSTRAP=1 | ||
|
|
||
| post_install() { | ||
| vlicense LICENSE | ||
| } | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,22 @@ | ||||||
| # Template file for 'rust-bpf-linker' | ||||||
| pkgname=rust-bpf-linker | ||||||
| version=0.10.4 | ||||||
| revision=1 | ||||||
| build_style=cargo | ||||||
| hostmakedepends="cargo llvm22-devel" | ||||||
| makedepends="rust-std" | ||||||
| short_desc="BPF static linker" | ||||||
| maintainer="Orphaned <orphan@voidlinux.org>" | ||||||
| license="MIT, Apache-2.0" | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| homepage="https://github.com/aya-rs/bpf-linker" | ||||||
| distfiles="https://github.com/aya-rs/bpf-linker/archive/refs/tags/v${version}.tar.gz" | ||||||
| checksum=32a5c6b3081386e7dca8765d2c7d23f9f7feed459ad135c914d8bab686168b3d | ||||||
| # tests require BPF sysroot and nightly Rust | ||||||
| make_check=no | ||||||
|
|
||||||
| export LLVM_SYS_221_PREFIX=/usr/lib/llvm/22 | ||||||
|
|
||||||
| post_install() { | ||||||
| vlicense LICENSE-MIT | ||||||
| vlicense LICENSE-APACHE | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Apache license doesn't need to be installed, we ship a copy in |
||||||
| } | ||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.