net-misc/wstunnel: add 10.1.11

Closes: https://bugs.gentoo.org/953875
Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr>
This commit is contained in:
Nicolas PARLANT
2025-04-17 13:00:03 +00:00
parent ad9a392ce4
commit 7aabbd8f27
2 changed files with 41 additions and 0 deletions

View File

@@ -1,2 +1,4 @@
DIST wstunnel-10.1.10-crates.tar.xz 26428260 BLAKE2B 186c3f45579deddcfc5609e77e5b22b9914b14aef644f3fa11aae02ce21f085d4bf63da0d26e6f8f213c501d1a095b29c2b3697a47d5952e644546036a02848d SHA512 ebc4b94c920ef495419af987a8bab519ca9ca2e995d9d37276e3c367edbb734de28ff9a676dade103cff8b61946250e0c3259eda14401d556f1454c8bf41d2a7
DIST wstunnel-10.1.10.tar.gz 288615 BLAKE2B a2e8285e27c8aa2ab4b7bc4cd92ab2519f5b724d8616f735bddbf13b07fdd6e27d747289e6806fc04d1dec38cc4bbf924511b46b9c286d550a917c49a3d85c58 SHA512 33d7041ddbca03b78445d31875fc0cedfb1f156c4117b45d39c89b43880cbda02ff0eb15650ccb9a9ff2e68c3344828146851fd593dfe8db14360dacb531a909
DIST wstunnel-10.1.11-crates.tar.xz 34790528 BLAKE2B 0a610f5ef5f9ae05a9d723a95089bf18cd7aaaebfc575f33167c7600495d4fb47eee9ed48e68ce0b25a9b74e32d62b079481dd8da138e387f65e28d8c8c224bb SHA512 55862002f3635fcf9ac31656853f79f06f647775f31805b8faa08a0d5d955081659ce59d6ec4b6543d14c06225292cbdb4d515b944db3c61f8c2ad5ab9e675fb
DIST wstunnel-10.1.11.tar.gz 291192 BLAKE2B eb4ea4e19b56cd60f3f0d559dee6586bb83b463fa94b47cdac5c5cff1759e5806326f32961c0e60cdee847b53f6ffdee90fc4f0c1019b82d3a1210ddc1d8deaf SHA512 369cc82c2c71bf614a51f6952e7bbb080a512945ce7d7763e722710c78bc0dcfd569a493dea77358c8b9e596cf0e9df026774a715052bd5b19c3bf3bbc9699bc

View File

@@ -0,0 +1,39 @@
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CRATES="
"
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 ISC MIT MPL-2.0 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
}