diff -Nru pegasus-wms-4.0.1+dfsg/debian/changelog pegasus-wms-4.0.1+dfsg/debian/changelog
--- pegasus-wms-4.0.1+dfsg/debian/changelog	2012-06-18 10:47:13.000000000 -0400
+++ pegasus-wms-4.0.1+dfsg/debian/changelog	2012-07-24 00:24:18.000000000 -0400
@@ -1,3 +1,10 @@
+pegasus-wms (4.0.1+dfsg-7) UNRELEASED; urgency=low
+
+  * Replace use of urlparse.uses_query with local copy of the information
+    since it was removed from urlparse in python 2.7.3. (Closes: #682148)
+
+ -- Scott Kitterman <sc...@kitterman.com>  Tue, 24 Jul 2012 00:22:37 -0400
+
 pegasus-wms (4.0.1+dfsg-6) unstable; urgency=low
 
   * Fixed pegasus-wms-doc misspelling in Suggests:
diff -Nru pegasus-wms-4.0.1+dfsg/debian/patches/python_2_7_3_urlparse_fix.patch pegasus-wms-4.0.1+dfsg/debian/patches/python_2_7_3_urlparse_fix.patch
--- pegasus-wms-4.0.1+dfsg/debian/patches/python_2_7_3_urlparse_fix.patch	1969-12-31 19:00:00.000000000 -0500
+++ pegasus-wms-4.0.1+dfsg/debian/patches/python_2_7_3_urlparse_fix.patch	2012-07-24 00:28:58.000000000 -0400
@@ -0,0 +1,24 @@
+Description: Replace use of urlparse.uses_query with local copy
+ pegasus-wms (4.0.1+dfsg-7) UNRELEASED; urgency=low
+ .
+   * Replace use of urlparse.uses_query with local copy of the information
+     since it was removed from urlparse in python 2.7.3. (Closes: #682148)
+Author: Scott Kitterman <sc...@kitterman.com>
+Bug-Debian: http://bugs.debian.org/682148
+Origin: <vendor>
+Forwarded: <no>
+Last-Update: <2012-07-24>
+
+--- pegasus-wms-4.0.1+dfsg.orig/lib/pegasus/python/netlogger/nlapi.py
++++ pegasus-wms-4.0.1+dfsg/lib/pegasus/python/netlogger/nlapi.py
+@@ -415,7 +415,9 @@ class Log:
+ # set up urlparse to recognize x-netlog schemes
+ for scheme in 'x-netlog','x-netlog-udp':
+     urlparse.uses_netloc.append(scheme)
+-    urlparse.uses_query.append(scheme)
++    uses_query = ['http', 'wais', 'imap', 'https', 'shttp', 'mms',
++                  'gopher', 'rtsp', 'rtspu', 'sip', 'sips', '']
++    uses_query.append(scheme)
+ 
+ def urlfile(url):
+     """urlfile(url:str) -> file
diff -Nru pegasus-wms-4.0.1+dfsg/debian/patches/series pegasus-wms-4.0.1+dfsg/debian/patches/series
--- pegasus-wms-4.0.1+dfsg/debian/patches/series	2012-05-29 11:28:05.000000000 -0400
+++ pegasus-wms-4.0.1+dfsg/debian/patches/series	2012-07-24 00:27:40.000000000 -0400
@@ -3,3 +3,4 @@
 doc-build
 classpath
 portability
+python_2_7_3_urlparse_fix.patch

Attachment: signature.asc
Description: This is a digitally signed message part.



Reply via email to