* [gentoo-commits] repo/proj/guru:master commit in: net-misc/wstunnel/
@ 2025-04-07 9:32 David Roman
0 siblings, 0 replies; 13+ messages in thread
From: David Roman @ 2025-04-07 9:32 UTC (permalink / raw
To: gentoo-commits
commit: 82bf3ca1216f46773ee95101d28be144bd196c82
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Sun Apr 6 21:24:11 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Apr 6 21:29:37 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=82bf3ca1
net-misc/wstunnel: new package, add 10.1.10
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
net-misc/wstunnel/Manifest | 2 ++
net-misc/wstunnel/metadata.xml | 11 +++++++++
net-misc/wstunnel/wstunnel-10.1.10.ebuild | 37 +++++++++++++++++++++++++++++++
3 files changed, 50 insertions(+)
diff --git a/net-misc/wstunnel/Manifest b/net-misc/wstunnel/Manifest
new file mode 100644
index 000000000..a23aebe9b
--- /dev/null
+++ b/net-misc/wstunnel/Manifest
@@ -0,0 +1,2 @@
+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
diff --git a/net-misc/wstunnel/metadata.xml b/net-misc/wstunnel/metadata.xml
new file mode 100644
index 000000000..689012bc5
--- /dev/null
+++ b/net-misc/wstunnel/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>nicolas.parlant@parhuet.fr</email>
+ <name>Nicolas PARLANT</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">erebe/wstunnel</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/net-misc/wstunnel/wstunnel-10.1.10.ebuild b/net-misc/wstunnel/wstunnel-10.1.10.ebuild
new file mode 100644
index 000000000..2d18375ce
--- /dev/null
+++ b/net-misc/wstunnel/wstunnel-10.1.10.ebuild
@@ -0,0 +1,37 @@
+# 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 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() {
+ dobin target/release/wstunnel
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-misc/wstunnel/
@ 2025-04-12 9:59 David Roman
0 siblings, 0 replies; 13+ messages in thread
From: David Roman @ 2025-04-12 9:59 UTC (permalink / raw
To: gentoo-commits
commit: 0623c3a5308c53fc2a2434707b61aa7460688dcf
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Thu Apr 10 06:56:19 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Apr 10 07:03:19 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0623c3a5
net-misc/wstunnel: add "${S}" for dobin
Closes: https://bugs.gentoo.org/953508
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
net-misc/wstunnel/wstunnel-10.1.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/wstunnel/wstunnel-10.1.10.ebuild b/net-misc/wstunnel/wstunnel-10.1.10.ebuild
index 2d18375ce..24e0ea80c 100644
--- a/net-misc/wstunnel/wstunnel-10.1.10.ebuild
+++ b/net-misc/wstunnel/wstunnel-10.1.10.ebuild
@@ -33,5 +33,5 @@ src_test() {
}
src_install() {
- dobin target/release/wstunnel
+ dobin "${S}"/target/release/wstunnel
}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-misc/wstunnel/
@ 2025-04-19 15:28 David Roman
0 siblings, 0 replies; 13+ messages in thread
From: David Roman @ 2025-04-19 15:28 UTC (permalink / raw
To: gentoo-commits
commit: 7aabbd8f279770df50d0d0d12fada342db4a66cd
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Thu Apr 17 13:00:03 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Apr 17 13:45:30 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7aabbd8f
net-misc/wstunnel: add 10.1.11
Closes: https://bugs.gentoo.org/953875
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
net-misc/wstunnel/Manifest | 2 ++
net-misc/wstunnel/wstunnel-10.1.11.ebuild | 39 +++++++++++++++++++++++++++++++
2 files changed, 41 insertions(+)
diff --git a/net-misc/wstunnel/Manifest b/net-misc/wstunnel/Manifest
index a23aebe9b..636509f72 100644
--- a/net-misc/wstunnel/Manifest
+++ b/net-misc/wstunnel/Manifest
@@ -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
diff --git a/net-misc/wstunnel/wstunnel-10.1.11.ebuild b/net-misc/wstunnel/wstunnel-10.1.11.ebuild
new file mode 100644
index 000000000..bcbbecee3
--- /dev/null
+++ b/net-misc/wstunnel/wstunnel-10.1.11.ebuild
@@ -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
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-misc/wstunnel/
@ 2025-04-19 15:28 David Roman
0 siblings, 0 replies; 13+ messages in thread
From: David Roman @ 2025-04-19 15:28 UTC (permalink / raw
To: gentoo-commits
commit: f27623897b1b2b3a10c1a7dc4b38875b54f77ef8
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Thu Apr 17 13:01:02 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Apr 17 13:45:30 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f2762389
net-misc/wstunnel: drop 10.1.10
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
net-misc/wstunnel/Manifest | 2 --
net-misc/wstunnel/wstunnel-10.1.10.ebuild | 37 -------------------------------
2 files changed, 39 deletions(-)
diff --git a/net-misc/wstunnel/Manifest b/net-misc/wstunnel/Manifest
index 636509f72..265d168e1 100644
--- a/net-misc/wstunnel/Manifest
+++ b/net-misc/wstunnel/Manifest
@@ -1,4 +1,2 @@
-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
diff --git a/net-misc/wstunnel/wstunnel-10.1.10.ebuild b/net-misc/wstunnel/wstunnel-10.1.10.ebuild
deleted file mode 100644
index 24e0ea80c..000000000
--- a/net-misc/wstunnel/wstunnel-10.1.10.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# 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 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() {
- dobin "${S}"/target/release/wstunnel
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-misc/wstunnel/
@ 2025-05-09 1:03 Haelwenn Monnier
0 siblings, 0 replies; 13+ messages in thread
From: Haelwenn Monnier @ 2025-05-09 1:03 UTC (permalink / raw
To: gentoo-commits
commit: 9a165bd38371936a003a07fd49b3a494527466fc
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Thu May 8 06:07:12 2025 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Fri May 9 00:08:47 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9a165bd3
net-misc/wstunnel: add 10.2.0
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
net-misc/wstunnel/Manifest | 2 ++
net-misc/wstunnel/wstunnel-10.2.0.ebuild | 43 ++++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/net-misc/wstunnel/Manifest b/net-misc/wstunnel/Manifest
index 265d168e1..bc9f98199 100644
--- a/net-misc/wstunnel/Manifest
+++ b/net-misc/wstunnel/Manifest
@@ -1,2 +1,4 @@
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
+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
diff --git a/net-misc/wstunnel/wstunnel-10.2.0.ebuild b/net-misc/wstunnel/wstunnel-10.2.0.ebuild
new file mode 100644
index 000000000..c57fe35d9
--- /dev/null
+++ b/net-misc/wstunnel/wstunnel-10.2.0.ebuild
@@ -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
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-misc/wstunnel/
@ 2025-06-02 8:43 David Roman
0 siblings, 0 replies; 13+ messages in thread
From: David Roman @ 2025-06-02 8:43 UTC (permalink / raw
To: gentoo-commits
commit: d2c4afcd20d7a60cdc06e0ad5a6f7cbeb4805516
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Mon Jun 2 01:28:40 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Jun 2 01:29:07 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d2c4afcd
net-misc/wstunnel: Bump to 10.4.0
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
net-misc/wstunnel/Manifest | 2 ++
net-misc/wstunnel/wstunnel-10.4.0.ebuild | 43 ++++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/net-misc/wstunnel/Manifest b/net-misc/wstunnel/Manifest
index a32e5cc5a9..3d80b4cd0f 100644
--- a/net-misc/wstunnel/Manifest
+++ b/net-misc/wstunnel/Manifest
@@ -2,3 +2,5 @@ DIST wstunnel-10.2.0-crates.tar.xz 34103388 BLAKE2B 03618ee3cf554e6df5e1ea320d4a
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
+DIST wstunnel-10.4.0-crates.tar.xz 35470060 BLAKE2B bc8efa3b930bd79d3cf59a7d8ebfd8c72371930eef6b580bb26a078fea9cb90fd229e6c137243d8390cace8f076fd1f1cd056d8e882d05150966d05373586412 SHA512 dc4fc2e397132dcb20fb7266378153a6f6ef96836efae181e93991b8141547d3366293b802123b9de4bcfcaef800158f4ea91eba4739322ef9f5c6d9e3f13b6f
+DIST wstunnel-10.4.0.tar.gz 1713437 BLAKE2B 7b251f869e177b59e0a5f8aa6df3cec05db670ac4d474d6846912d864db44b2647fe9ceab039316d73c32b82ff379a9c776738e73d1febf381d85b7353133e69 SHA512 1ee1065e9e859b1532af037720a824dd027ec03abdc5bb92e09d6c7269bc2d068f196d4eb56cfe2f5b46e4b553374f7b4c5c09502ac4b0b08078805e770c34ac
diff --git a/net-misc/wstunnel/wstunnel-10.4.0.ebuild b/net-misc/wstunnel/wstunnel-10.4.0.ebuild
new file mode 100644
index 0000000000..c57fe35d97
--- /dev/null
+++ b/net-misc/wstunnel/wstunnel-10.4.0.ebuild
@@ -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
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-misc/wstunnel/
@ 2025-06-02 8:43 David Roman
0 siblings, 0 replies; 13+ messages in thread
From: David Roman @ 2025-06-02 8:43 UTC (permalink / raw
To: gentoo-commits
commit: 08df1cd920ada4a0cadcc9bebc38925ea95ff862
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Mon Jun 2 01:28:52 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Jun 2 01:29:14 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=08df1cd9
net-misc/wstunnel: drop 10.2.0
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
net-misc/wstunnel/Manifest | 2 --
net-misc/wstunnel/wstunnel-10.2.0.ebuild | 43 --------------------------------
2 files changed, 45 deletions(-)
diff --git a/net-misc/wstunnel/Manifest b/net-misc/wstunnel/Manifest
index 3d80b4cd0f..1fb1ae32f4 100644
--- a/net-misc/wstunnel/Manifest
+++ b/net-misc/wstunnel/Manifest
@@ -1,5 +1,3 @@
-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
DIST wstunnel-10.4.0-crates.tar.xz 35470060 BLAKE2B bc8efa3b930bd79d3cf59a7d8ebfd8c72371930eef6b580bb26a078fea9cb90fd229e6c137243d8390cace8f076fd1f1cd056d8e882d05150966d05373586412 SHA512 dc4fc2e397132dcb20fb7266378153a6f6ef96836efae181e93991b8141547d3366293b802123b9de4bcfcaef800158f4ea91eba4739322ef9f5c6d9e3f13b6f
diff --git a/net-misc/wstunnel/wstunnel-10.2.0.ebuild b/net-misc/wstunnel/wstunnel-10.2.0.ebuild
deleted file mode 100644
index c57fe35d97..0000000000
--- a/net-misc/wstunnel/wstunnel-10.2.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# 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
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-misc/wstunnel/
@ 2025-06-04 18:12 Eli Schwartz
0 siblings, 0 replies; 13+ messages in thread
From: Eli Schwartz @ 2025-06-04 18:12 UTC (permalink / raw
To: gentoo-commits
commit: 730d13ec02416e229807a283c7044b9f5e182b68
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Wed Jun 4 05:38:29 2025 +0000
Commit: Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
CommitDate: Wed Jun 4 05:39:43 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=730d13ec
net-misc/wstunnel: add 10.4.1
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
net-misc/wstunnel/Manifest | 2 ++
net-misc/wstunnel/wstunnel-10.4.1.ebuild | 43 ++++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/net-misc/wstunnel/Manifest b/net-misc/wstunnel/Manifest
index 1fb1ae32f4..fca1a35a3d 100644
--- a/net-misc/wstunnel/Manifest
+++ b/net-misc/wstunnel/Manifest
@@ -2,3 +2,5 @@ DIST wstunnel-10.3.0-crates.tar.xz 35231292 BLAKE2B a860070352142df33ef806d67b6f
DIST wstunnel-10.3.0.tar.gz 291982 BLAKE2B ac157241c9d1b1758cee5937e90a20f4a116e9dd157d3341de50af29f217cc13bde2ac82aedec705fc6d38b97becca57e9d2f14b722aeb8918e2c2270d45ebe6 SHA512 3e3c4f36ae309a34bb15f2cccb2d857c31c6236ad2614a7262b879351d108b8e14b9f884e2f6bf37df986c9b348cc628f7c51ceeffd09787045616934ab21f68
DIST wstunnel-10.4.0-crates.tar.xz 35470060 BLAKE2B bc8efa3b930bd79d3cf59a7d8ebfd8c72371930eef6b580bb26a078fea9cb90fd229e6c137243d8390cace8f076fd1f1cd056d8e882d05150966d05373586412 SHA512 dc4fc2e397132dcb20fb7266378153a6f6ef96836efae181e93991b8141547d3366293b802123b9de4bcfcaef800158f4ea91eba4739322ef9f5c6d9e3f13b6f
DIST wstunnel-10.4.0.tar.gz 1713437 BLAKE2B 7b251f869e177b59e0a5f8aa6df3cec05db670ac4d474d6846912d864db44b2647fe9ceab039316d73c32b82ff379a9c776738e73d1febf381d85b7353133e69 SHA512 1ee1065e9e859b1532af037720a824dd027ec03abdc5bb92e09d6c7269bc2d068f196d4eb56cfe2f5b46e4b553374f7b4c5c09502ac4b0b08078805e770c34ac
+DIST wstunnel-10.4.1-crates.tar.xz 35470060 BLAKE2B bc8efa3b930bd79d3cf59a7d8ebfd8c72371930eef6b580bb26a078fea9cb90fd229e6c137243d8390cace8f076fd1f1cd056d8e882d05150966d05373586412 SHA512 dc4fc2e397132dcb20fb7266378153a6f6ef96836efae181e93991b8141547d3366293b802123b9de4bcfcaef800158f4ea91eba4739322ef9f5c6d9e3f13b6f
+DIST wstunnel-10.4.1.tar.gz 1713902 BLAKE2B 8b987e2398eb52941a311ad2017e4e464a51b838a0ec028f01470d4260c658a0046d129c4c16f3e8d56defd9ed3cc6bc422804885a5a9ee0d11a08a5e09acf08 SHA512 94579ebb0f8a2065ce21524ff3c627f29fc51e03ae0ebcd2798878b53c92ee8a484a6fb55b2a98af7ff0ed393aaa3c31cee373c31bc1a3d220b890eab1881c18
diff --git a/net-misc/wstunnel/wstunnel-10.4.1.ebuild b/net-misc/wstunnel/wstunnel-10.4.1.ebuild
new file mode 100644
index 0000000000..c57fe35d97
--- /dev/null
+++ b/net-misc/wstunnel/wstunnel-10.4.1.ebuild
@@ -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
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-misc/wstunnel/
@ 2025-06-04 18:12 Eli Schwartz
0 siblings, 0 replies; 13+ messages in thread
From: Eli Schwartz @ 2025-06-04 18:12 UTC (permalink / raw
To: gentoo-commits
commit: 509db1085bd16ba6593d7fee3052b74acb215aea
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Wed Jun 4 05:38:42 2025 +0000
Commit: Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
CommitDate: Wed Jun 4 05:39:43 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=509db108
net-misc/wstunnel: drop 10.3.0
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
net-misc/wstunnel/Manifest | 2 --
net-misc/wstunnel/wstunnel-10.3.0.ebuild | 43 --------------------------------
2 files changed, 45 deletions(-)
diff --git a/net-misc/wstunnel/Manifest b/net-misc/wstunnel/Manifest
index fca1a35a3d..f33477e8f6 100644
--- a/net-misc/wstunnel/Manifest
+++ b/net-misc/wstunnel/Manifest
@@ -1,5 +1,3 @@
-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
DIST wstunnel-10.4.0-crates.tar.xz 35470060 BLAKE2B bc8efa3b930bd79d3cf59a7d8ebfd8c72371930eef6b580bb26a078fea9cb90fd229e6c137243d8390cace8f076fd1f1cd056d8e882d05150966d05373586412 SHA512 dc4fc2e397132dcb20fb7266378153a6f6ef96836efae181e93991b8141547d3366293b802123b9de4bcfcaef800158f4ea91eba4739322ef9f5c6d9e3f13b6f
DIST wstunnel-10.4.0.tar.gz 1713437 BLAKE2B 7b251f869e177b59e0a5f8aa6df3cec05db670ac4d474d6846912d864db44b2647fe9ceab039316d73c32b82ff379a9c776738e73d1febf381d85b7353133e69 SHA512 1ee1065e9e859b1532af037720a824dd027ec03abdc5bb92e09d6c7269bc2d068f196d4eb56cfe2f5b46e4b553374f7b4c5c09502ac4b0b08078805e770c34ac
DIST wstunnel-10.4.1-crates.tar.xz 35470060 BLAKE2B bc8efa3b930bd79d3cf59a7d8ebfd8c72371930eef6b580bb26a078fea9cb90fd229e6c137243d8390cace8f076fd1f1cd056d8e882d05150966d05373586412 SHA512 dc4fc2e397132dcb20fb7266378153a6f6ef96836efae181e93991b8141547d3366293b802123b9de4bcfcaef800158f4ea91eba4739322ef9f5c6d9e3f13b6f
diff --git a/net-misc/wstunnel/wstunnel-10.3.0.ebuild b/net-misc/wstunnel/wstunnel-10.3.0.ebuild
deleted file mode 100644
index c57fe35d97..0000000000
--- a/net-misc/wstunnel/wstunnel-10.3.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# 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
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-misc/wstunnel/
@ 2025-06-05 14:31 Lucio Sauer
0 siblings, 0 replies; 13+ messages in thread
From: Lucio Sauer @ 2025-06-05 14:31 UTC (permalink / raw
To: gentoo-commits
commit: 892ad950783a659d8f1179e03d8f4e50cf32e2a5
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Thu Jun 5 04:44:12 2025 +0000
Commit: Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Thu Jun 5 05:00:02 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=892ad950
net-misc/wstunnel: add 10.4.2
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
net-misc/wstunnel/Manifest | 2 ++
net-misc/wstunnel/wstunnel-10.4.2.ebuild | 43 ++++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/net-misc/wstunnel/Manifest b/net-misc/wstunnel/Manifest
index f33477e8f6..3851ffe5d7 100644
--- a/net-misc/wstunnel/Manifest
+++ b/net-misc/wstunnel/Manifest
@@ -2,3 +2,5 @@ DIST wstunnel-10.4.0-crates.tar.xz 35470060 BLAKE2B bc8efa3b930bd79d3cf59a7d8ebf
DIST wstunnel-10.4.0.tar.gz 1713437 BLAKE2B 7b251f869e177b59e0a5f8aa6df3cec05db670ac4d474d6846912d864db44b2647fe9ceab039316d73c32b82ff379a9c776738e73d1febf381d85b7353133e69 SHA512 1ee1065e9e859b1532af037720a824dd027ec03abdc5bb92e09d6c7269bc2d068f196d4eb56cfe2f5b46e4b553374f7b4c5c09502ac4b0b08078805e770c34ac
DIST wstunnel-10.4.1-crates.tar.xz 35470060 BLAKE2B bc8efa3b930bd79d3cf59a7d8ebfd8c72371930eef6b580bb26a078fea9cb90fd229e6c137243d8390cace8f076fd1f1cd056d8e882d05150966d05373586412 SHA512 dc4fc2e397132dcb20fb7266378153a6f6ef96836efae181e93991b8141547d3366293b802123b9de4bcfcaef800158f4ea91eba4739322ef9f5c6d9e3f13b6f
DIST wstunnel-10.4.1.tar.gz 1713902 BLAKE2B 8b987e2398eb52941a311ad2017e4e464a51b838a0ec028f01470d4260c658a0046d129c4c16f3e8d56defd9ed3cc6bc422804885a5a9ee0d11a08a5e09acf08 SHA512 94579ebb0f8a2065ce21524ff3c627f29fc51e03ae0ebcd2798878b53c92ee8a484a6fb55b2a98af7ff0ed393aaa3c31cee373c31bc1a3d220b890eab1881c18
+DIST wstunnel-10.4.2-crates.tar.xz 35470060 BLAKE2B bc8efa3b930bd79d3cf59a7d8ebfd8c72371930eef6b580bb26a078fea9cb90fd229e6c137243d8390cace8f076fd1f1cd056d8e882d05150966d05373586412 SHA512 dc4fc2e397132dcb20fb7266378153a6f6ef96836efae181e93991b8141547d3366293b802123b9de4bcfcaef800158f4ea91eba4739322ef9f5c6d9e3f13b6f
+DIST wstunnel-10.4.2.tar.gz 1713869 BLAKE2B d05de85e433fef807d0e6020fe8a23fd09cf7440ee5f35c8b679abcf527114a490cbcb36242e80a6a61c27bc2b7296690702092fa6096819a23cee262fdc0ddb SHA512 cf1cdb2d8eea619dae6e03b04459dbcf8d9a4588a81a39a2e786fc6872d7e738c00c6b0a173dce685d4974cad59fe0babdffb80af5a6452f93ee13a49d6fd385
diff --git a/net-misc/wstunnel/wstunnel-10.4.2.ebuild b/net-misc/wstunnel/wstunnel-10.4.2.ebuild
new file mode 100644
index 0000000000..c57fe35d97
--- /dev/null
+++ b/net-misc/wstunnel/wstunnel-10.4.2.ebuild
@@ -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
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-misc/wstunnel/
@ 2025-06-17 8:45 David Roman
0 siblings, 0 replies; 13+ messages in thread
From: David Roman @ 2025-06-17 8:45 UTC (permalink / raw
To: gentoo-commits
commit: 11b31148e1a6e3de20f87989aa597c629d0a561b
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Mon Jun 16 20:23:11 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Jun 16 20:24:23 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=11b31148
net-misc/wstunnel: drop 10.4.0, 10.4.1
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
net-misc/wstunnel/Manifest | 4 ---
net-misc/wstunnel/wstunnel-10.4.0.ebuild | 43 --------------------------------
net-misc/wstunnel/wstunnel-10.4.1.ebuild | 43 --------------------------------
3 files changed, 90 deletions(-)
diff --git a/net-misc/wstunnel/Manifest b/net-misc/wstunnel/Manifest
index 8f8be4819c..1f0c67a446 100644
--- a/net-misc/wstunnel/Manifest
+++ b/net-misc/wstunnel/Manifest
@@ -1,7 +1,3 @@
-DIST wstunnel-10.4.0-crates.tar.xz 35470060 BLAKE2B bc8efa3b930bd79d3cf59a7d8ebfd8c72371930eef6b580bb26a078fea9cb90fd229e6c137243d8390cace8f076fd1f1cd056d8e882d05150966d05373586412 SHA512 dc4fc2e397132dcb20fb7266378153a6f6ef96836efae181e93991b8141547d3366293b802123b9de4bcfcaef800158f4ea91eba4739322ef9f5c6d9e3f13b6f
-DIST wstunnel-10.4.0.tar.gz 1713437 BLAKE2B 7b251f869e177b59e0a5f8aa6df3cec05db670ac4d474d6846912d864db44b2647fe9ceab039316d73c32b82ff379a9c776738e73d1febf381d85b7353133e69 SHA512 1ee1065e9e859b1532af037720a824dd027ec03abdc5bb92e09d6c7269bc2d068f196d4eb56cfe2f5b46e4b553374f7b4c5c09502ac4b0b08078805e770c34ac
-DIST wstunnel-10.4.1-crates.tar.xz 35470060 BLAKE2B bc8efa3b930bd79d3cf59a7d8ebfd8c72371930eef6b580bb26a078fea9cb90fd229e6c137243d8390cace8f076fd1f1cd056d8e882d05150966d05373586412 SHA512 dc4fc2e397132dcb20fb7266378153a6f6ef96836efae181e93991b8141547d3366293b802123b9de4bcfcaef800158f4ea91eba4739322ef9f5c6d9e3f13b6f
-DIST wstunnel-10.4.1.tar.gz 1713902 BLAKE2B 8b987e2398eb52941a311ad2017e4e464a51b838a0ec028f01470d4260c658a0046d129c4c16f3e8d56defd9ed3cc6bc422804885a5a9ee0d11a08a5e09acf08 SHA512 94579ebb0f8a2065ce21524ff3c627f29fc51e03ae0ebcd2798878b53c92ee8a484a6fb55b2a98af7ff0ed393aaa3c31cee373c31bc1a3d220b890eab1881c18
DIST wstunnel-10.4.2-crates.tar.xz 35470060 BLAKE2B bc8efa3b930bd79d3cf59a7d8ebfd8c72371930eef6b580bb26a078fea9cb90fd229e6c137243d8390cace8f076fd1f1cd056d8e882d05150966d05373586412 SHA512 dc4fc2e397132dcb20fb7266378153a6f6ef96836efae181e93991b8141547d3366293b802123b9de4bcfcaef800158f4ea91eba4739322ef9f5c6d9e3f13b6f
DIST wstunnel-10.4.2.tar.gz 1713869 BLAKE2B d05de85e433fef807d0e6020fe8a23fd09cf7440ee5f35c8b679abcf527114a490cbcb36242e80a6a61c27bc2b7296690702092fa6096819a23cee262fdc0ddb SHA512 cf1cdb2d8eea619dae6e03b04459dbcf8d9a4588a81a39a2e786fc6872d7e738c00c6b0a173dce685d4974cad59fe0babdffb80af5a6452f93ee13a49d6fd385
DIST wstunnel-10.4.3-crates.tar.xz 35441048 BLAKE2B be9a65bbf71be1944d71eaa22acbe83999cf3e825f581ffee9ac6a3f9861a0ec2506a168af6bafd597ed9d005e5623700b1cebc7dbc1cee99638f394ad521b8d SHA512 2391130cb3982fcd892c1d8c5e8c8f1e63e0e3cd65da1c2f65c29f597119e9f4820fa49778b81a8e58eb6d4b7cb54f7e5c387ffa79b1a878409370c03a357a76
diff --git a/net-misc/wstunnel/wstunnel-10.4.0.ebuild b/net-misc/wstunnel/wstunnel-10.4.0.ebuild
deleted file mode 100644
index c57fe35d97..0000000000
--- a/net-misc/wstunnel/wstunnel-10.4.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# 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
-}
diff --git a/net-misc/wstunnel/wstunnel-10.4.1.ebuild b/net-misc/wstunnel/wstunnel-10.4.1.ebuild
deleted file mode 100644
index c57fe35d97..0000000000
--- a/net-misc/wstunnel/wstunnel-10.4.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# 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
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-misc/wstunnel/
@ 2025-07-03 10:04 David Roman
0 siblings, 0 replies; 13+ messages in thread
From: David Roman @ 2025-07-03 10:04 UTC (permalink / raw
To: gentoo-commits
commit: a18feb058f625138f28038e5cb27ebe9b42047b1
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Tue Jul 1 14:46:31 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Jul 1 14:47:01 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a18feb05
net-misc/wstunnel: drop 10.4.2
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
net-misc/wstunnel/Manifest | 2 --
net-misc/wstunnel/wstunnel-10.4.2.ebuild | 43 --------------------------------
2 files changed, 45 deletions(-)
diff --git a/net-misc/wstunnel/Manifest b/net-misc/wstunnel/Manifest
index 58f94708ae..d441c86bb3 100644
--- a/net-misc/wstunnel/Manifest
+++ b/net-misc/wstunnel/Manifest
@@ -1,5 +1,3 @@
-DIST wstunnel-10.4.2-crates.tar.xz 35470060 BLAKE2B bc8efa3b930bd79d3cf59a7d8ebfd8c72371930eef6b580bb26a078fea9cb90fd229e6c137243d8390cace8f076fd1f1cd056d8e882d05150966d05373586412 SHA512 dc4fc2e397132dcb20fb7266378153a6f6ef96836efae181e93991b8141547d3366293b802123b9de4bcfcaef800158f4ea91eba4739322ef9f5c6d9e3f13b6f
-DIST wstunnel-10.4.2.tar.gz 1713869 BLAKE2B d05de85e433fef807d0e6020fe8a23fd09cf7440ee5f35c8b679abcf527114a490cbcb36242e80a6a61c27bc2b7296690702092fa6096819a23cee262fdc0ddb SHA512 cf1cdb2d8eea619dae6e03b04459dbcf8d9a4588a81a39a2e786fc6872d7e738c00c6b0a173dce685d4974cad59fe0babdffb80af5a6452f93ee13a49d6fd385
DIST wstunnel-10.4.3-crates.tar.xz 35441048 BLAKE2B be9a65bbf71be1944d71eaa22acbe83999cf3e825f581ffee9ac6a3f9861a0ec2506a168af6bafd597ed9d005e5623700b1cebc7dbc1cee99638f394ad521b8d SHA512 2391130cb3982fcd892c1d8c5e8c8f1e63e0e3cd65da1c2f65c29f597119e9f4820fa49778b81a8e58eb6d4b7cb54f7e5c387ffa79b1a878409370c03a357a76
DIST wstunnel-10.4.3.tar.gz 1714602 BLAKE2B 622e6cd1b04d5b02c9818cb139a295a2945f162506223758807318d23af50d6a009d9a1be66b1570179a501be59365e465c31ad33fe48b8472e9c577612562a7 SHA512 b8edfafc9d28e667e7bc66e1aa71127e9f1d8dbe9b29107ed6af67d96555a607aaa7fc89468218c1b69023222410db8fe0761b49746be4c3855794bb4a700c15
DIST wstunnel-10.4.4-crates.tar.xz 35790812 BLAKE2B 58838de4069094efd15b38e1cdca0b217308233789160a59c7b911dd15ac612c8d9e9e39c281fdee1127429c0e58f103535a61818c885e728df7e22f30b7dd8d SHA512 75b8a48c836ed5b97f2a6039146ad179283e87bc3562c4be83cc4b1957c8e28fd4232aad2c285f120e2804ab75eb73170a7278de2d83b99c3733f07e968edd02
diff --git a/net-misc/wstunnel/wstunnel-10.4.2.ebuild b/net-misc/wstunnel/wstunnel-10.4.2.ebuild
deleted file mode 100644
index c57fe35d97..0000000000
--- a/net-misc/wstunnel/wstunnel-10.4.2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# 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
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-misc/wstunnel/
@ 2025-07-03 10:04 David Roman
0 siblings, 0 replies; 13+ messages in thread
From: David Roman @ 2025-07-03 10:04 UTC (permalink / raw
To: gentoo-commits
commit: caf8a1e3f0d5a2bbe6907d5441c38fd48a0a8021
Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Tue Jul 1 14:46:09 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Jul 1 14:46:48 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=caf8a1e3
net-misc/wstunnel: Bump to 10.4.4
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
net-misc/wstunnel/Manifest | 2 ++
net-misc/wstunnel/wstunnel-10.4.4.ebuild | 43 ++++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/net-misc/wstunnel/Manifest b/net-misc/wstunnel/Manifest
index 1f0c67a446..58f94708ae 100644
--- a/net-misc/wstunnel/Manifest
+++ b/net-misc/wstunnel/Manifest
@@ -2,3 +2,5 @@ DIST wstunnel-10.4.2-crates.tar.xz 35470060 BLAKE2B bc8efa3b930bd79d3cf59a7d8ebf
DIST wstunnel-10.4.2.tar.gz 1713869 BLAKE2B d05de85e433fef807d0e6020fe8a23fd09cf7440ee5f35c8b679abcf527114a490cbcb36242e80a6a61c27bc2b7296690702092fa6096819a23cee262fdc0ddb SHA512 cf1cdb2d8eea619dae6e03b04459dbcf8d9a4588a81a39a2e786fc6872d7e738c00c6b0a173dce685d4974cad59fe0babdffb80af5a6452f93ee13a49d6fd385
DIST wstunnel-10.4.3-crates.tar.xz 35441048 BLAKE2B be9a65bbf71be1944d71eaa22acbe83999cf3e825f581ffee9ac6a3f9861a0ec2506a168af6bafd597ed9d005e5623700b1cebc7dbc1cee99638f394ad521b8d SHA512 2391130cb3982fcd892c1d8c5e8c8f1e63e0e3cd65da1c2f65c29f597119e9f4820fa49778b81a8e58eb6d4b7cb54f7e5c387ffa79b1a878409370c03a357a76
DIST wstunnel-10.4.3.tar.gz 1714602 BLAKE2B 622e6cd1b04d5b02c9818cb139a295a2945f162506223758807318d23af50d6a009d9a1be66b1570179a501be59365e465c31ad33fe48b8472e9c577612562a7 SHA512 b8edfafc9d28e667e7bc66e1aa71127e9f1d8dbe9b29107ed6af67d96555a607aaa7fc89468218c1b69023222410db8fe0761b49746be4c3855794bb4a700c15
+DIST wstunnel-10.4.4-crates.tar.xz 35790812 BLAKE2B 58838de4069094efd15b38e1cdca0b217308233789160a59c7b911dd15ac612c8d9e9e39c281fdee1127429c0e58f103535a61818c885e728df7e22f30b7dd8d SHA512 75b8a48c836ed5b97f2a6039146ad179283e87bc3562c4be83cc4b1957c8e28fd4232aad2c285f120e2804ab75eb73170a7278de2d83b99c3733f07e968edd02
+DIST wstunnel-10.4.4.tar.gz 1715724 BLAKE2B 2a401416c0b7f4a0aeb64cd15cc1c6f8c7494296a3320e6f2799282f426a2c47cb5963c1a25910ef06beeaa443371a83405038f47979b14dc5359443cec05f42 SHA512 3a37db7c934959c6b3aff1d3736d1004a83fa77efe2eac83d64a6571b5ed0b2fbd7aebc1bdab3e4601775a1d7e8be4e0962a8ce13dc338c12786142a3d930530
diff --git a/net-misc/wstunnel/wstunnel-10.4.4.ebuild b/net-misc/wstunnel/wstunnel-10.4.4.ebuild
new file mode 100644
index 0000000000..c57fe35d97
--- /dev/null
+++ b/net-misc/wstunnel/wstunnel-10.4.4.ebuild
@@ -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
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-07-03 10:04 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-05 14:31 [gentoo-commits] repo/proj/guru:master commit in: net-misc/wstunnel/ Lucio Sauer
-- strict thread matches above, loose matches on Subject: below --
2025-07-03 10:04 David Roman
2025-07-03 10:04 David Roman
2025-06-17 8:45 David Roman
2025-06-04 18:12 Eli Schwartz
2025-06-04 18:12 Eli Schwartz
2025-06-02 8:43 David Roman
2025-06-02 8:43 David Roman
2025-05-09 1:03 Haelwenn Monnier
2025-04-19 15:28 David Roman
2025-04-19 15:28 David Roman
2025-04-12 9:59 David Roman
2025-04-07 9:32 David Roman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox