[Pkg-telepathy-commits] [SCM] pymsn packaging branch, debian, updated. debian/0.3.3-3-4-g4c5920d

Laurent Bigonville bigon at bigon.be
Wed Jun 17 14:41:24 UTC 2009


The following commit has been merged in the debian branch:
commit 2579a559759bc310e889c34864cdba54d377232b
Author: Laurent Bigonville <bigon at bigon.be>
Date:   Wed Jun 17 15:42:37 2009 +0200

    Fix avatar bug with newer verion of Live Messenger 2009 (Thanks to Nicolò Chieffo) (LP: #382498)

diff --git a/debian/changelog b/debian/changelog
index a0dc1d7..ec5833e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,10 @@
 pymsn (0.3.3-4) UNRELEASED; urgency=low
 
   * debian/update-patches.mk: Fix script to work with newer git version
+  * Fix avatar bug with newer verion of Live Messenger 2009
+    (Thanks to Nicolò Chieffo) (LP: #382498)
 
- -- Laurent Bigonville <bigon at debian.org>  Wed, 17 Jun 2009 15:39:36 +0200
+ -- Laurent Bigonville <bigon at debian.org>  Wed, 17 Jun 2009 15:40:30 +0200
 
 pymsn (0.3.3-3) unstable; urgency=low
 
diff --git a/debian/patches/0001-Fix-reception-of-msnp2p-data-from-WLM-2009-users.-Co.patch b/debian/patches/0001-Fix-reception-of-msnp2p-data-from-WLM-2009-users.-Co.patch
new file mode 100644
index 0000000..a651f05
--- /dev/null
+++ b/debian/patches/0001-Fix-reception-of-msnp2p-data-from-WLM-2009-users.-Co.patch
@@ -0,0 +1,33 @@
+From db130b667b25b4a241122fc84d8b3f32c9e65a6d Mon Sep 17 00:00:00 2001
+From: Youness Alaoui <youness.alaoui at collabora.co.uk>
+Date: Thu, 4 Jun 2009 14:55:07 -0400
+Subject: [PATCH] =?utf-8?q?Fix=20reception=20of=20msnp2p=20data=20from=20WLM=202009=20users.=20Control=20flag=20check=20was=20too=20restrictive..=20Thanks=20to=20Nicol=C3=B2=20Chieffo=20for=20reporting=20it?=
+MIME-Version: 1.0
+Content-Type: text/plain; charset=utf-8
+Content-Transfer-Encoding: 8bit
+
+---
+ pymsn/msnp2p/transport/TLP.py |    3 ++-
+ 1 files changed, 2 insertions(+), 1 deletions(-)
+
+diff --git a/pymsn/msnp2p/transport/TLP.py b/pymsn/msnp2p/transport/TLP.py
+index be4ac18..393a024 100644
+--- a/pymsn/msnp2p/transport/TLP.py
++++ b/pymsn/msnp2p/transport/TLP.py
+@@ -102,6 +102,7 @@ class TLPFlag(object):
+     ERR = 0x80
+     KEY = 0x100
+     CRYPT = 0x200
++    UNKNOWN = 0x1000000
+ 
+ 
+ class MessageChunk(object):
+@@ -114,7 +115,7 @@ class MessageChunk(object):
+         return str(self.header) + str(self.body)
+ 
+     def is_control_chunk(self):
+-        return self.header.flags & 0xFFFFFFCF
++        return self.header.flags & 0xCF
+ 
+     def is_ack_chunk(self):
+         return self.header.flags & (TLPFlag.NAK | TLPFlag.ACK)

-- 
pymsn packaging



More information about the Pkg-telepathy-commits mailing list