mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
disable LTO Bug: https://bugs.gentoo.org/965963 Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr>
51 lines
1.0 KiB
Bash
51 lines
1.0 KiB
Bash
# Copyright 2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
CRATES="
|
|
"
|
|
RUST_MIN_VER="1.88.0"
|
|
|
|
inherit cargo
|
|
|
|
DESCRIPTION="Tunnel all your traffic over Websocket or HTTP2 - Bypass firewalls/DPI"
|
|
HOMEPAGE="https://github.com/erebe/wstunnel/"
|
|
SRC_URI="https://github.com/erebe/wstunnel/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
SRC_URI+=" https://raw.githubusercontent.com/PPN-SD/vendor/refs/tags/${P}/${P}-crates.tar.xz"
|
|
|
|
LICENSE="BSD"
|
|
# Autogenerated by pycargoebuild
|
|
# Dependent crate licenses
|
|
LICENSE+="
|
|
Apache-2.0 BSD CC0-1.0 CDLA-Permissive-2.0 ISC MIT openssl
|
|
Unicode-3.0
|
|
"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
QA_FLAGS_IGNORED="usr/bin/wstunnel"
|
|
|
|
pkg_setup() {
|
|
# see bug #965963
|
|
export CARGO_PROFILE_RELEASE_LTO=off
|
|
|
|
rust_pkg_setup
|
|
}
|
|
|
|
src_compile() {
|
|
cargo_src_compile --package wstunnel-cli
|
|
}
|
|
|
|
src_test() {
|
|
# skip test with network sandbox violations
|
|
cargo_src_test -- \
|
|
--skip test_proxy_connection
|
|
}
|
|
|
|
src_install() {
|
|
cargo_src_install --path wstunnel-cli
|
|
local DOCS+=( README.md docs/*.md )
|
|
einstalldocs
|
|
}
|