diff options
Diffstat (limited to 'net-p2p/deluge-cli')
-rw-r--r-- | net-p2p/deluge-cli/Makefile | 2 | ||||
-rw-r--r-- | net-p2p/deluge-cli/files/patch-deluge_core_preferencesmanager.py | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/net-p2p/deluge-cli/Makefile b/net-p2p/deluge-cli/Makefile index e580f23bd900..a8a18e5fc4c2 100644 --- a/net-p2p/deluge-cli/Makefile +++ b/net-p2p/deluge-cli/Makefile @@ -2,7 +2,7 @@ PORTNAME= deluge DISTVERSION= 2.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-p2p python MASTER_SITES= CHEESESHOP PKGNAMESUFFIX= -cli diff --git a/net-p2p/deluge-cli/files/patch-deluge_core_preferencesmanager.py b/net-p2p/deluge-cli/files/patch-deluge_core_preferencesmanager.py new file mode 100644 index 000000000000..e833dd0896e7 --- /dev/null +++ b/net-p2p/deluge-cli/files/patch-deluge_core_preferencesmanager.py @@ -0,0 +1,13 @@ +Fix for https://dev.deluge-torrent.org/ticket/3337 + +--- deluge/core/preferencesmanager.py.orig 2020-11-16 07:47:52 UTC ++++ deluge/core/preferencesmanager.py +@@ -231,7 +231,7 @@ class PreferencesManager(component.Component): + self.core.apply_session_settings( + { + 'listen_system_port_fallback': self.config['listen_use_sys_port'], +- 'listen_interfaces': ''.join(interfaces), ++ 'listen_interfaces': ','.join(interfaces), + } + ) + |