~ubuntu-branches/ubuntu/raring/torchat/raring

« back to all changes in this revision

Viewing changes to debian/patches/use-system-lib-fix-versions.patch

  • Committer: Package Import Robot
  • Author(s): Ulises Vitulli
  • Date: 2011-11-15 17:49:48 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20111115174948-122miassqztyzfi4
Tags: 0.9.9.550-1
* New upstream release.
* Removed Permission hardening patch, adopted on upstream.
* Transitioned to dh_python2.
* Link to https homepage version (Closes: #626678).

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
Date: 2011-04-17
3
3
Description: Use system socksipy library and fix release versions
4
4
 
5
 
--- torchat-0.9.9.530.orig/tc_client.py
6
 
+++ torchat-0.9.9.530/tc_client.py
 
5
Index: torchat-0.9.9.550/tc_client.py
 
6
===================================================================
 
7
--- torchat-0.9.9.550.orig/tc_client.py 2011-11-10 21:14:18.000000000 -0300
 
8
+++ torchat-0.9.9.550/tc_client.py      2011-11-18 11:19:31.000000000 -0300
7
9
@@ -17,7 +17,7 @@
8
10
 # This is the TorChat client library. Import this module, make an instance
9
11
 # of BuddyList, give it your call-back function and your client is running.
13
15
 import socket
14
16
 import threading
15
17
 import random
16
 
@@ -29,7 +29,6 @@ import subprocess
 
18
@@ -29,7 +29,6 @@
17
19
 import tempfile
18
20
 import hashlib
19
21
 import config
21
23
 
22
24
 TORCHAT_PORT = 11009 #do NOT change this.
23
25
 TOR_CONFIG = "tor" #the name of the active section in the .ini file
24
 
@@ -191,7 +190,7 @@ class Buddy(object):
 
26
@@ -192,7 +191,7 @@
25
27
         self.conn_in = None
26
28
         self.status = STATUS_OFFLINE
27
29
         self.client = ""
28
30
-        self.version = ""
29
 
+        self.version = "0.9.9.530"
 
31
+        self.version = "0.9.9.550"
30
32
         self.timer = False
31
33
         self.last_status_time = 0
32
34
         self.count_failed_connects = 0
33
 
@@ -505,9 +504,9 @@ class Buddy(object):
 
35
@@ -506,9 +505,9 @@
34
36
 
35
37
     def sendVersion(self):
36
38
         if self.isAlreadyPonged():
42
44
             msg.send()
43
45
         else:
44
46
             print "(2) not connected, not sending version to %s" % self.address
45
 
 
46
 
--- torchat-0.9.9.530.orig/tc_gui.py
47
 
+++ torchat-0.9.9.530/tc_gui.py
48
 
@@ -25,7 +25,6 @@ import shutil
 
47
Index: torchat-0.9.9.550/tc_gui.py
 
48
===================================================================
 
49
--- torchat-0.9.9.550.orig/tc_gui.py    2011-11-10 20:43:40.000000000 -0300
 
50
+++ torchat-0.9.9.550/tc_gui.py 2011-11-18 11:19:31.000000000 -0300
 
51
@@ -25,7 +25,6 @@
49
52
 import time
50
53
 import subprocess
51
54
 import textwrap
53
56
 import dlg_settings
54
57
 import translations
55
58
 import tc_notification
56
 
@@ -379,8 +378,8 @@ class PopupMenu(wx.Menu):
 
59
@@ -379,8 +378,8 @@
57
60
         dialog.ShowModal()
58
61
 
59
62
     def onAbout(self, evt):
60
63
-        wx.MessageBox(lang.ABOUT_TEXT % {"version":version.VERSION,
61
64
-                                         "svn":version.VERSION_SVN,
62
 
+        wx.MessageBox(lang.ABOUT_TEXT % {"version":"0.9.9.530",
 
65
+        wx.MessageBox(lang.ABOUT_TEXT % {"version":"0.9.9.550",
63
66
+                                         "svn":"530",
64
67
                                          "copyright":config.COPYRIGHT,
65
68
                                          "python":".".join(str(x) for x in sys.version_info),