summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurice van der Pot <griffon26@gentoo.org>2008-09-23 20:17:39 +0000
committerMaurice van der Pot <griffon26@gentoo.org>2008-09-23 20:17:39 +0000
commit82954f7c8eee0cc84be6c5570db1a05b6c5ee0a1 (patch)
tree9a15dacea4d5aa9ca350200b863570936fa2073c /net-im/pymsn-t/files
parentFix accidental ebuild removal (#233852). (diff)
downloadgentoo-2-82954f7c8eee0cc84be6c5570db1a05b6c5ee0a1.tar.gz
gentoo-2-82954f7c8eee0cc84be6c5570db1a05b6c5ee0a1.tar.bz2
gentoo-2-82954f7c8eee0cc84be6c5570db1a05b6c5ee0a1.zip
Add some patches to pymsn-t for bug #238085
(Portage version: 2.2_rc8/cvs/Linux 2.6.26.2 x86_64)
Diffstat (limited to 'net-im/pymsn-t/files')
-rw-r--r--net-im/pymsn-t/files/pymsn-t-0.11.3-delete-reactor.patch10
-rw-r--r--net-im/pymsn-t/files/pymsn-t-0.11.3-remove-pid.patch41
-rw-r--r--net-im/pymsn-t/files/pymsn-t-0.11.3-unexpected-xfr.patch44
3 files changed, 95 insertions, 0 deletions
diff --git a/net-im/pymsn-t/files/pymsn-t-0.11.3-delete-reactor.patch b/net-im/pymsn-t/files/pymsn-t-0.11.3-delete-reactor.patch
new file mode 100644
index 000000000000..19ad24f3a8fd
--- /dev/null
+++ b/net-im/pymsn-t/files/pymsn-t-0.11.3-delete-reactor.patch
@@ -0,0 +1,10 @@
+--- pymsn-t/src/main.py 2008-09-19 10:53:30.000000000 +0200
++++ pymsn-t/src/main.py 2008-09-19 10:55:55.000000000 +0200
+@@ -72,7 +72,6 @@
+
+ if config.reactor:
+ # They picked their own reactor. Lets install it.
+- del sys.modules["twisted.internet.reactor"]
+ if config.reactor == "epoll":
+ from twisted.internet import epollreactor
+ epollreactor.install()
diff --git a/net-im/pymsn-t/files/pymsn-t-0.11.3-remove-pid.patch b/net-im/pymsn-t/files/pymsn-t-0.11.3-remove-pid.patch
new file mode 100644
index 000000000000..fb85d043d6f5
--- /dev/null
+++ b/net-im/pymsn-t/files/pymsn-t-0.11.3-remove-pid.patch
@@ -0,0 +1,41 @@
+--- pymsn-t/src/main.py 2008-04-04 17:45:43.000000000 +0400
++++ pymsn-t/src/main.py 2008-08-05 17:44:17.000000000 +0400
+@@ -91,6 +91,7 @@
+ from twisted.words.xish.domish import Element
+ from twisted.words.protocols.jabber import component
+ from twisted.words.protocols.jabber.jid import internJID
++from twisted.python import log
+
+ from debug import LogEvent, INFO, WARN, ERROR
+
+@@ -352,13 +353,29 @@
+ pf = open(config.pid, "w")
+ pf.write("%s\n" % pid)
+ pf.close()
++
++ def removePID(self, pidfile):
++ # Remove a PID file
++ if not pidfile:
++ return
++ try:
++ os.unlink(pidfile)
++ except OSError, e:
++ if e.errno == errno.EACCES or e.errno == errno.EPERM:
++ log.msg("Warning: No permission to delete pid file")
++ else:
++ log.msg("Failed to unlink PID file:")
++ log.deferr()
++ except:
++ log.msg("Failed to unlink PID file:")
++ log.deferr()
+
+ def shuttingDown(self):
+ self.transportSvc.removeMe()
+ # Keep the transport running for another 3 seconds
+ def cb(ignored=None):
+ if config.pid:
+- twistd.removePID(config.pid)
++ self.removePID(config.pid)
+ d = Deferred()
+ d.addCallback(cb)
+ reactor.callLater(3.0, d.callback, None)
diff --git a/net-im/pymsn-t/files/pymsn-t-0.11.3-unexpected-xfr.patch b/net-im/pymsn-t/files/pymsn-t-0.11.3-unexpected-xfr.patch
new file mode 100644
index 000000000000..7d93d975852e
--- /dev/null
+++ b/net-im/pymsn-t/files/pymsn-t-0.11.3-unexpected-xfr.patch
@@ -0,0 +1,44 @@
+--- pymsn-t/src/legacy/glue.py 2008-09-19 10:53:30.000000000 +0200
++++ pymsn-t/src/legacy/glue.py 2008-09-19 10:52:38.000000000 +0200
+@@ -379,7 +379,13 @@
+ self.session.removeMe()
+
+ def connectionLost(self, reason):
+- LogEvent(INFO, self.jabberID)
++ LogEvent(INFO, self.jabberID)
++ # If we got a second referral, don't really log out but let the next NS
++ # try to log us in
++ if reason.type == error.ConnectionDone and self.gotadditionalXFR != 0:
++ LogEvent(INFO, self.ident)
++ self.gotadditionalXFR = 0
++ return
+ if reason.type != error.ConnectionDone:
+ text = lang.get(self.session.lang).msnDisconnected % reason
+ self.session.sendMessage(to=self.jabberID, fro=config.jid, body=text)
+--- pymsn-t/src/legacy/msn/msn.py 2008-09-19 10:53:30.000000000 +0200
++++ pymsn-t/src/legacy/msn/msn.py 2008-09-19 10:52:38.000000000 +0200
+@@ -1347,7 +1347,9 @@
+ port = MSN_PORT
+
+ if not self._fireCallback(id, host, int(port), params[4]):
+- raise MSNProtocolError, "Got XFR (referral) that I didn't ask for .. should this happen?" # debug
++ #raise MSNProtocolError, "Got XFR (referral) that I didn't ask for .. should this happen?" # debug
++ self.factory.msncon.gotadditionalXFR = 1
++ self.factory.msncon.connectors.append(reactor.connectTCP(host, int(port), self.factory, bindAddress=(self.factory.msncon.BINDADDRESS, 0)))
+
+ def handle_RNG(self, params):
+ checkParamLen(len(params), 6, 'RNG')
+--- pymsn-t/src/legacy/msn/msnw.py 2008-09-19 10:53:30.000000000 +0200
++++ pymsn-t/src/legacy/msn/msnw.py 2008-09-19 10:52:38.000000000 +0200
+@@ -67,8 +67,9 @@
+ LogEvent(INFO, self.ident)
+
+ def _gotNotificationReferral(self, (host, port)):
+- self.timeout.cancel()
+- self.timeout = None
++ if self.timeout != None:
++ self.timeout.cancel()
++ self.timeout = None
+ # Create the NotificationClient
+ self.notificationFactory = msn.NotificationFactory()
+ self.notificationFactory.userHandle = self.username