net-misc/wstunnel: Bump to 10.3.0

Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr>
This commit is contained in:
Nicolas PARLANT
2025-05-15 08:01:14 +00:00
parent 62d2f0787f
commit b4af2cd71f
2 changed files with 45 additions and 0 deletions

View File

@@ -2,3 +2,5 @@ DIST wstunnel-10.1.11-crates.tar.xz 34790528 BLAKE2B 0a610f5ef5f9ae05a9d723a9508
DIST wstunnel-10.1.11.tar.gz 291192 BLAKE2B eb4ea4e19b56cd60f3f0d559dee6586bb83b463fa94b47cdac5c5cff1759e5806326f32961c0e60cdee847b53f6ffdee90fc4f0c1019b82d3a1210ddc1d8deaf SHA512 369cc82c2c71bf614a51f6952e7bbb080a512945ce7d7763e722710c78bc0dcfd569a493dea77358c8b9e596cf0e9df026774a715052bd5b19c3bf3bbc9699bc
DIST wstunnel-10.2.0-crates.tar.xz 34103388 BLAKE2B 03618ee3cf554e6df5e1ea320d4afeb31927baa8115e9bd203d97ceb8b64c00c47c7c34561571a710e0be22c07c77b7a0c818ad7b77f16d51740879aeb342710 SHA512 e6f07c00693e2ceea7befc25192813b2c27115eecdedcfc85f459fe715c63bf13e07a7d91557433572af005ac44af2f71eaba2ee61eabbeff1f654e42a5156c5
DIST wstunnel-10.2.0.tar.gz 291521 BLAKE2B e8b02f18b3e924113a9e0b0e92493bda8632266550ebb81f428b23e0f6d40763011003c2870970a972db6c21e61a68ba706f41d3fd839a20e23744ccdc9f4082 SHA512 662d363c76831ad73dc3355541a39de890473c5802e99aa9b94164771d3ffd66b49d30abca7f520e11f07fd95282fd311494f0be0c88e158434c4375fd8ccc03
DIST wstunnel-10.3.0-crates.tar.xz 35231292 BLAKE2B a860070352142df33ef806d67b6ff11401de44691748de740b54f755edde39cca3ecb0c464b70f6d68214146f50df034b83759128e6bf2b5bf9573aebacabacd SHA512 917562a78210d7136ccaf357c6af8d5d30b394a029227b6be1f7be01e97cf0ff0b1c0b2e9a6adf9bbef68cc3b40431d2e9c4d77fabe684fd5ef9d7a26ac3d9f0
DIST wstunnel-10.3.0.tar.gz 291982 BLAKE2B ac157241c9d1b1758cee5937e90a20f4a116e9dd157d3341de50af29f217cc13bde2ac82aedec705fc6d38b97becca57e9d2f14b722aeb8918e2c2270d45ebe6 SHA512 3e3c4f36ae309a34bb15f2cccb2d857c31c6236ad2614a7262b879351d108b8e14b9f884e2f6bf37df986c9b348cc628f7c51ceeffd09787045616934ab21f68

View File

@@ -0,0 +1,43 @@
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CRATES="
"
RUST_MIN_VER="1.85.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"
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
}