net-p2p/deluge-cli: add upstream patch

Add patch for:
https://dev.deluge-torrent.org/ticket/3337

It fixes list of listen hosts:ports parsing.

Reported by:	Daniel O'Connor <darius@dons.net.au> (by email)
This commit is contained in:
Ruslan Makhmatkhanov 2020-11-16 08:25:30 +00:00
parent 7b0ed90f43
commit c970e6bfbe
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=555454
2 changed files with 14 additions and 1 deletions

View File

@ -2,7 +2,7 @@
PORTNAME= deluge
DISTVERSION= 2.0.3
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= net-p2p python
MASTER_SITES= CHEESESHOP
PKGNAMESUFFIX= -cli

View File

@ -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),
}
)