Switching around icons again
[theonering] / support / builddeb.py
1 #!/usr/bin/python2.5
2
3 import os
4 import sys
5
6 try:
7         import py2deb
8 except ImportError:
9         import fake_py2deb as py2deb
10
11 import constants
12
13
14 __appname__ = constants.__app_name__
15 __description__ = """Send/receive texts and initiate GV callbacks all through Conversations and Phone
16 Features:
17 .
18 * Send Texts and Receive both Texts and Voicemail through your chat window (buggy on Maemo 4.1)
19 .
20 * Initiate Google Voice callbacks from the dialpad or your contacts
21 .
22 * Access to all of your Google Voice contacts (Maemo 4.1 only for now)
23 .
24 * Reduce battery drain by setting your status to "Away"
25 .
26 * Block incoming calls by switching your status to "Hidden"
27 .
28 Note: Google and Google Voice are probably trademarks of Google.  This software nor the author has any affiliation with Google
29 .
30 Homepage: http://theonering.garage.maemo.org
31 """
32 __author__ = "Ed Page"
33 __email__ = "eopage@byu.net"
34 __version__ = constants.__version__
35 __build__ = constants.__build__
36 __changelog__ = """
37 0.7.14
38 * Bugfix: Polling state machines weren't properly resetting (maybe thats why I had such good battery life)
39 * Bugfix: On Maemo 4.1 there are still some empty windows created
40 * Bugfix: Obscure alias bug no one should hit with The One Ring
41 * Bugfix: Another obscure bug causing possibly no negative side-effects
42
43 0.7.13
44 * Bugfix: Cancelling timeouts
45
46 0.7.12
47 * Bugfix: In 0.7.11 I messed up refreshing messages
48 * Bugfix: DND support has been broken for a while
49 * Bugfix: Auto-disconnect on Maemo 4.1 couldn't have worked for a while
50 * Bugfix: Handling missed calls had .. issues
51 * Bugfix: Issues when making a call introduced in 0.7.11
52 * Etc with the bug fixes (all too small to list)
53
54 0.7.11
55 * Bugfix: Attempting to improve the behavior of calls by reducing potential RTComm errors
56 * Bugfix: Issues with weird unexpected disconnect issues
57 * Bugfix: I guess I made a mistake in registering for system signals, whoops
58 * Bugfix: Following more closely the Telepathy spec by doing connects and disconnects asynchronously
59
60 0.7.10
61 * Increased the network timeout when connecting to GV
62 * Bugfix: On connection failure, the connection would be left around, preventing future connections
63
64 0.7.9
65 * Bugfix: Disconnect/Reconnect issues seem to be lessoned for me (What I previously thought was a bugfix turned out to cause several bugs.)
66
67 0.7.8
68 * Bugfix: Issues with checking for new conversations
69
70 0.7.7
71 * On change between available/away, start state_machine at max rather than min, reducing overhead
72 * Added a check for voicemails on missed/rejected calls (checks 3 times, 1 minute apart each)
73 * Adjusted default polling times to be more battery cautious for our n8x0 friends who can't change things right now
74 * Bugfix: Some of the derived polling settings had bugs
75 * Bugfix: Setting text polling to infinite would still have polling done if one sent a text
76
77 0.7.6
78 * On login, polling now starts at the max time rather than the min, reducing overhead
79 * Bugfix: Polling configuration wasn't actually hooked up to anything
80 * Debug Prompt: Made it so you can either reset one or all state machines (Rather than just all)
81
82 0.7.5
83 * Fixing a polling time bug introduced when making polling configurable
84
85 0.7.4
86 * Fixing a bug with deny-lists
87
88 0.7.3
89 * Fixing bug with being able to configure polling times
90
91 0.7.2
92 * Added a Deny list
93 * Added option to make GV Contacts optional
94 * Added a limit, where if a state machine period is longer than it, than we set the period to infinite
95 * Delayed when we say the connection is disconnected to hopefully help random issues
96 * Tweaked how The One Ring shows up in the addressbook (Maemo 5)
97 * Made polling configurable
98 * Delayed auto-disconnect in case the user is just switching network connections (Maemo 4.1)
99 * Bugfix: Removed superfluous blank message from debug prompt
100 * Bugfix: Moved some more (very minor, very rarely used) timeouts to second resolution reducing overhead
101 * Bugfix: debug prompt commands handled command validation poorly
102 * Debug Prompt: Added a "version" command
103 * Debug Prompt: Added a "get_polling" command to find out what the actual polling periods are
104 * Debug Prompt: Added a "grab_log" command which is a broken but means to offer the log file through a file transfer
105 * Debug Prompt: Added a "save_log" command to help till grab_log works and for where file transfers aren't supported by clients
106
107 0.7.1
108 * Reducing the race window where GV will mark messages as read accidently
109 * Modified some things blindly "because thats what Butterfly does"
110 * Modified some support files to mimic other plugins on Maemo 5 PR1.1
111 * Added link to bug tracker and moved all bugs and enhancements to it
112 * Switched contacts to being away by default upon user feedback
113 * Adjusting handling of call states to at least allow the option of clients to provide clearer information to the user
114 * Fixing some bugs with handling a variety of phone number formats
115 * Removed a hack that changed the number being called, most likely put in place in a bygone era
116
117 0.7.0
118 * Initial beta release for Maemo 5
119 * Late Alpha for Maemo 4.1 with horrible consequences like crashing RTComm
120
121 0.1.0
122 * Pre-Alpha Development Release
123 """
124
125
126 __postinstall__ = """#!/bin/sh -e
127
128 gtk-update-icon-cache -f /usr/share/icons/hicolor
129 rm -f ~/.telepathy-theonering/theonering.log
130 """
131
132 def find_files(path):
133         for root, dirs, files in os.walk(path):
134                 for file in files:
135                         if file.startswith("src!"):
136                                 fileParts = file.split("!")
137                                 unused, relPathParts, newName = fileParts[0], fileParts[1:-1], fileParts[-1]
138                                 assert unused == "src"
139                                 relPath = os.sep.join(relPathParts)
140                                 yield relPath, file, newName
141
142
143 def unflatten_files(files):
144         d = {}
145         for relPath, oldName, newName in files:
146                 if relPath not in d:
147                         d[relPath] = []
148                 d[relPath].append((oldName, newName))
149         return d
150
151
152 def build_package(distribution):
153         try:
154                 os.chdir(os.path.dirname(sys.argv[0]))
155         except:
156                 pass
157
158         py2deb.Py2deb.SECTIONS = py2deb.SECTIONS_BY_POLICY[distribution]
159         p = py2deb.Py2deb(__appname__)
160         if distribution == "debian":
161                 p.prettyName = constants.__pretty_app_name__
162         else:
163                 p.prettyName = "Google Voice plugin for Conversations and Calls"
164         p.description = __description__
165         p.bugTracker = "https://bugs.maemo.org/enter_bug.cgi?product=The%%20One%%20Ring"
166         #p.upgradeDescription = __changelog__.split("\n\n", 1)[0]
167         p.author = __author__
168         p.mail = __email__
169         p.license = "lgpl"
170         p.section = {
171                 "debian": "comm",
172                 "diablo": "user/network",
173                 "fremantle": "user/network",
174                 "mer": "user/network",
175         }[distribution]
176         p.depends = ", ".join([
177                 "python (>= 2.5) | python2.5",
178                 "python-dbus | python2.5-dbus",
179                 "python-gobject | python2.5-gobject",
180                 "python-telepathy | python2.5-telepathy",
181         ])
182         p.depends += {
183                 "debian": "",
184                 "diablo": ", python2.5-conic, account-plugin-haze",
185                 "fremantle": ", account-plugin-haze",
186                 "mer": "",
187         }[distribution]
188         p.arch = "all"
189         p.urgency = "low"
190         p.distribution = "diablo fremantle mer debian"
191         p.repository = "extras"
192         p.changelog = __changelog__
193         p.postinstall = __postinstall__
194         p.icon = "32-tor_handset.png"
195         for relPath, files in unflatten_files(find_files(".")).iteritems():
196                 fullPath = "/usr/lib/theonering"
197                 if relPath:
198                         fullPath += os.sep+relPath
199                 p[fullPath] = list(
200                         "|".join((oldName, newName))
201                         for (oldName, newName) in files
202                 )
203         p["/usr/share/dbus-1/services"] = ["org.freedesktop.Telepathy.ConnectionManager.theonering.service"]
204         if distribution in ("debian", ):
205                 p["/usr/share/mission-control/profiles"] = ["theonering.profile.%s|theonering.profile"% distribution]
206         elif distribution in ("diablo", "fremantle", "mer"):
207                 p["/usr/share/osso-rtcom"] = ["theonering.profile.%s|theonering.profile"% distribution]
208         p["/usr/lib/telepathy"] = ["telepathy-theonering"]
209         p["/usr/share/telepathy/managers"] = ["theonering.manager"]
210         p["/usr/share/icons/hicolor/32x32/hildon"] = ["32-tor_handset.png|im_theonering.png"]
211         p["/usr/share/theonering"] = ["32-tor_handset.png|tor_handset.png"]
212         p["/usr/share/theonering"] = ["32-tor_phone.png|tor_phone.png"]
213         p["/usr/share/theonering"] = ["32-tor_question.png|tor_question.png"]
214         p["/usr/share/theonering"] = ["32-tor_self.png|tor_self.png"]
215
216         if distribution == "debian":
217                 print p
218                 print p.generate(
219                         version="%s-%s" % (__version__, __build__),
220                         changelog=__changelog__,
221                         build=True,
222                         tar=False,
223                         changes=False,
224                         dsc=False,
225                 )
226                 print "Building for %s finished" % distribution
227         else:
228                 print p
229                 print p.generate(
230                         version="%s-%s" % (__version__, __build__),
231                         changelog=__changelog__,
232                         build=False,
233                         tar=True,
234                         changes=True,
235                         dsc=True,
236                 )
237                 print "Building for %s finished" % distribution
238
239
240 if __name__ == "__main__":
241         if len(sys.argv) > 1:
242                 try:
243                         import optparse
244                 except ImportError:
245                         optparse = None
246
247                 if optparse is not None:
248                         parser = optparse.OptionParser()
249                         (commandOptions, commandArgs) = parser.parse_args()
250         else:
251                 commandArgs = None
252                 commandArgs = ["diablo"]
253         build_package(commandArgs[0])