summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-04-22 18:39:26 +0200
committerConrad Kostecki <conikost@gentoo.org>2024-04-24 14:50:45 +0200
commit3a8ae4651b5b93cb62c71c7c43243a42c140d4fd (patch)
treed29e6739d77774c80905908c6c2a908d153041b4 /net-vpn
parentgames-server/minecraft-server: fix message (diff)
downloadgentoo-3a8ae4651b5b93cb62c71c7c43243a42c140d4fd.tar.gz
gentoo-3a8ae4651b5b93cb62c71c7c43243a42c140d4fd.tar.bz2
gentoo-3a8ae4651b5b93cb62c71c7c43243a42c140d4fd.zip
net-vpn/riseup-vpn: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-vpn')
-rw-r--r--net-vpn/riseup-vpn/files/riseup-vpn-0.21.11_p20221113-revert-data-cipher-arg-to-cipher.patch18
1 files changed, 0 insertions, 18 deletions
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: