From nobody@FreeBSD.org  Fri May  9 08:40:16 2014
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by hub.freebsd.org (Postfix) with ESMTPS id EA24BF63
	for <freebsd-gnats-submit@FreeBSD.org>; Fri,  9 May 2014 08:40:16 +0000 (UTC)
Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4])
	(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
	(Client did not present a certificate)
	by mx1.freebsd.org (Postfix) with ESMTPS id BE3E7972
	for <freebsd-gnats-submit@FreeBSD.org>; Fri,  9 May 2014 08:40:16 +0000 (UTC)
Received: from cgiserv.freebsd.org ([127.0.1.6])
	by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s498eGpD014756
	for <freebsd-gnats-submit@FreeBSD.org>; Fri, 9 May 2014 08:40:16 GMT
	(envelope-from nobody@cgiserv.freebsd.org)
Received: (from nobody@localhost)
	by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s498eGQf014755;
	Fri, 9 May 2014 08:40:16 GMT
	(envelope-from nobody)
Message-Id: <201405090840.s498eGQf014755@cgiserv.freebsd.org>
Date: Fri, 9 May 2014 08:40:16 GMT
From: George Amanakis <g_amanakis@yahoo.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: Deluge not downloading blocklist
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         189497
>Category:       ports
>Synopsis:       net-p2p/deluge not downloading blocklist
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    rm
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Fri May 09 08:50:01 UTC 2014
>Closed-Date:    
>Last-Modified:  Tue May 13 04:46:30 UTC 2014
>Originator:     George Amanakis
>Release:        9.2-RELEASE-p5
>Organization:
>Environment:
FreeBSD hostname 9.2-RELEASE-p5 FreeBSD 9.2-RELEASE-p5 #1: Mon May  5 11:10:55 CEST 2014     root@hostname:/usr/obj/usr/src/sys/GEN_ipsec_altq  amd64
>Description:
The following bug exists on the port of Deluge:
Enabling the Blocklist plugin and attempting to download a list fails. The scenario was tested with deluged running as daemon on FreeBSD (built from ports) and a remote GTK-Interface on Windows (official prebuild-binaries) or on Archlinux (through the official repo). Culprit is the httpdownloader.py has not been updated to work with twisted > 13.1.0.

>How-To-Repeat:
See above.
>Fix:
The following patch resolves the problem:

--- httpdownloader.py.org       2014-05-08 23:36:46.000000000 +0200
+++ httpdownloader.py   2014-05-09 00:05:43.000000000 +0200
@@ -191,8 +191,18 @@
         if not headers:
             headers = {}
         headers["accept-encoding"] = "deflate, gzip, x-gzip"
+
+# In twisted 13.1.0 the _parse() function was replaced by the _URI class
+    if hasattr(client, '_parse'):
+       scheme, host, port, path = client._parse(url)
+    else:
+       from twisted.web.client import _URI
+       uri = _URI.fromBytes(url)
+       scheme = uri.scheme
+       host = uri.host
+       port = uri.port
+       path = uri.path

-    scheme, host, port, path = client._parse(url)
     factory = HTTPDownloader(url, filename, callback, headers, force_filename, allow_compression)
     if scheme == "https":
         from twisted.internet import ssl

Patch attached with submission follows:

--- httpdownloader.py.org	2014-05-08 23:36:46.000000000 +0200
+++ httpdownloader.py	2014-05-09 00:05:43.000000000 +0200
@@ -191,8 +191,18 @@
         if not headers:
             headers = {}
         headers["accept-encoding"] = "deflate, gzip, x-gzip"
+	
+# In twisted 13.1.0 the _parse() function was replaced by the _URI class 
+    if hasattr(client, '_parse'):
+    	scheme, host, port, path = client._parse(url)
+    else:
+	from twisted.web.client import _URI
+	uri = _URI.fromBytes(url)
+	scheme = uri.scheme
+	host = uri.host
+	port = uri.port
+	path = uri.path
 
-    scheme, host, port, path = client._parse(url)
     factory = HTTPDownloader(url, filename, callback, headers, force_filename, allow_compression)
     if scheme == "https":
         from twisted.internet import ssl


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->rm 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Tue May 13 04:46:30 UTC 2014 
Responsible-Changed-Why:  
Over to maintainer (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=189497 
>Unformatted:
