summaryrefslogtreecommitdiff
path: root/net-vpn/riseup-vpn
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-04-24 23:59:27 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-04-24 23:59:27 +0100
commitb987a550f067c3da93b0664cf1fdc8a624c0aa38 (patch)
tree9ad1767fad656d26471a81af6bac8400a1c75218 /net-vpn/riseup-vpn
parente3f21c8aff8a76afe3423721c437a088e9232840 (diff)
gentoo auto-resync : 24:04:2024 - 23:59:27
Diffstat (limited to 'net-vpn/riseup-vpn')
-rw-r--r--net-vpn/riseup-vpn/Manifest1
-rw-r--r--net-vpn/riseup-vpn/files/riseup-vpn-0.21.11_p20221113-revert-data-cipher-arg-to-cipher.patch18
2 files changed, 0 insertions, 19 deletions
diff --git a/net-vpn/riseup-vpn/Manifest b/net-vpn/riseup-vpn/Manifest
index 338a6b4c91e8..1a7dd6744cc5 100644
--- a/net-vpn/riseup-vpn/Manifest
+++ b/net-vpn/riseup-vpn/Manifest
@@ -1,4 +1,3 @@
-AUX riseup-vpn-0.21.11_p20221113-revert-data-cipher-arg-to-cipher.patch 747 BLAKE2B 1a29495b1709e626a9a459dfb839860a5f5c60b37957fc8878f5aa2e4d8cd99f0058bbd5fe678b1a74153f9be3e1be4635661a91f45e7da78cb478e3f40be5da SHA512 a58f786835e484f1fb4dad34dd38b0ae46103551c4b0392ad1ee19f598c213d5759f6590812f0b35c1b7a0cac48ea42023264ff8386b2eeec4d50175fbfb9777
DIST riseup-vpn-0.24.3-deps.tar.xz 35335684 BLAKE2B 85774c35593e59009b8b8ae3ada8542d2df6206bbd0662f01b6798907246097b847c1fc894e50d912f5a2e66abb74f7fe2e7458762ba09a6ddba8d9f1aa6b2b4 SHA512 febba844bfa5b35e99cce586207320dafc393648904aa543293af941012f17164710b72eb7ca0bc7a7d5025bf67958340606cf6c7ce43ddf4dcf2a59ca98e87e
DIST riseup-vpn-0.24.3.tar.gz 12270357 BLAKE2B a28d5fe1920614717f7c4a276fbddd24523b7a0a4776bfb7ef49256984e1348b5821854c5547c8a1a72a4c5a07f28c3fd3b5866ed13cb1b3606ec398e4b41478 SHA512 03e916fd3e019b62a09b673aab14f7de9554d2ab5affd793c607f392ed8411c2081db8c223232572fe9b629a4bd68e9994e59c00c4d5ef67b0c8705c11981409
EBUILD riseup-vpn-0.24.3.ebuild 1787 BLAKE2B d847215657996c4ecd2a32a37af5ec6450f6b5232d7f54a8efd2bda9e4dd43ab2d00f313945a2b4586056b7382c42df75efbc5c57d5959fd02e081b0a0a92f56 SHA512 f616e1ff10503ad7921bb4d138924a7a3a95eb3252ce91fdcd316258acd0c5d14826e24edbd81846345d4139091f3d4e035f144b627fb42e3a5e6894fce9a3f2
diff --git a/net-vpn/riseup-vpn/files/riseup-vpn-0.21.11_p20221113-revert-data-cipher-arg-to-cipher.patch b/net-vpn/riseup-vpn/files/riseup-vpn-0.21.11_p20221113-revert-data-cipher-arg-to-cipher.patch
deleted file mode 100644
index 375250be4127..000000000000
--- a/net-vpn/riseup-vpn/files/riseup-vpn-0.21.11_p20221113-revert-data-cipher-arg-to-cipher.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/pkg/vpn/bonafide/eip_service.go b/pkg/vpn/bonafide/eip_service.go
-index 71c9b82..c6caf37 100644
---- a/pkg/vpn/bonafide/eip_service.go
-+++ b/pkg/vpn/bonafide/eip_service.go
-@@ -238,13 +238,6 @@ func (eip eipService) getOpenvpnArgs() []string {
- for arg, value := range cfg {
- switch v := value.(type) {
- case string:
-- // this is a transitioning hack for the transition to float deployment,
-- // assuming we're using openvpn 2.5. We're treating the "cipher"
-- // string that the platform sends us as the newer data-cipher
-- // which includes colon-separated ciphers.
-- if arg == "cipher" {
-- arg = "data-ciphers"
-- }
- args = append(args, "--"+arg)
- args = append(args, strings.Split(v, " ")...)
- case bool: