diff options
Diffstat (limited to 'news/hellanzb/patches')
-rw-r--r-- | news/hellanzb/patches/patch-aa | 4 | ||||
-rw-r--r-- | news/hellanzb/patches/patch-ab | 15 | ||||
-rw-r--r-- | news/hellanzb/patches/patch-ac | 15 | ||||
-rw-r--r-- | news/hellanzb/patches/patch-ad | 15 |
4 files changed, 47 insertions, 2 deletions
diff --git a/news/hellanzb/patches/patch-aa b/news/hellanzb/patches/patch-aa index 2dc66a600f5..6d127c0a1c9 100644 --- a/news/hellanzb/patches/patch-aa +++ b/news/hellanzb/patches/patch-aa @@ -1,6 +1,6 @@ -$NetBSD: patch-aa,v 1.1.1.1 2008/07/30 13:26:39 bjs Exp $ +$NetBSD: patch-aa,v 1.2 2010/11/27 13:51:24 abs Exp $ ---- setup.py.orig 2008-07-30 08:30:03.000000000 -0400 +--- setup.py.orig 2008-07-30 12:30:03.000000000 +0000 +++ setup.py @@ -38,9 +38,7 @@ def runSetup(): packages = [ 'Hellanzb', 'Hellanzb.NZBLeecher', 'Hellanzb.HellaXMLRPC', diff --git a/news/hellanzb/patches/patch-ab b/news/hellanzb/patches/patch-ab new file mode 100644 index 00000000000..cd0df576e88 --- /dev/null +++ b/news/hellanzb/patches/patch-ab @@ -0,0 +1,15 @@ +$NetBSD: patch-ab,v 1.1 2010/11/27 13:51:24 abs Exp $ + +Handle twisted.copyright.versions such as 10.0.0 + +--- Hellanzb/HellaReactor.py.orig 2008-07-30 12:30:03.000000000 +0000 ++++ Hellanzb/HellaReactor.py +@@ -9,7 +9,7 @@ reactor system so it can catch signals, + import Hellanzb, sys, time + + import twisted.copyright +-if twisted.copyright.version >= '2.0.0': ++if int(twisted.copyright.version.partition('.')[0]) >= 2: + from twisted.internet.selectreactor import SelectReactor + from twisted.internet.selectreactor import _NO_FILENO + from twisted.internet.selectreactor import _NO_FILEDESC diff --git a/news/hellanzb/patches/patch-ac b/news/hellanzb/patches/patch-ac new file mode 100644 index 00000000000..2547824e689 --- /dev/null +++ b/news/hellanzb/patches/patch-ac @@ -0,0 +1,15 @@ +$NetBSD: patch-ac,v 1.1 2010/11/27 13:51:24 abs Exp $ + +Handle twisted.copyright.versions such as 10.0.0 + +--- Hellanzb/HellaXMLRPC/HtPasswdAuth.py.orig 2008-07-30 12:30:03.000000000 +0000 ++++ Hellanzb/HellaXMLRPC/HtPasswdAuth.py +@@ -13,7 +13,7 @@ from twisted.web import static + from twisted.web.resource import Resource + + import twisted.copyright +-if twisted.copyright.version >= '2.0.0': ++if int(twisted.copyright.version.partition('.')[0]) >= 2: + from twisted.web import http + else: + from twisted.protocols import http diff --git a/news/hellanzb/patches/patch-ad b/news/hellanzb/patches/patch-ad new file mode 100644 index 00000000000..b04d23afd86 --- /dev/null +++ b/news/hellanzb/patches/patch-ad @@ -0,0 +1,15 @@ +$NetBSD: patch-ad,v 1.1 2010/11/27 13:51:24 abs Exp $ + +Handle twisted.copyright.versions such as 10.0.0 + +--- Hellanzb/HellaXMLRPC/xmlrpc.py.orig 2008-07-30 12:30:03.000000000 +0000 ++++ Hellanzb/HellaXMLRPC/xmlrpc.py +@@ -31,7 +31,7 @@ from twisted.internet import defer, prot + from twisted.python import log, reflect + + import twisted.copyright +-if twisted.copyright.version >= '2.0.0': ++if int(twisted.copyright.version.partition('.')[0]) >= 2: + from twisted.web import http + else: + from twisted.protocols import http |