Fixing up the keysyms
[gc-dialer] / 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__ = """Touch screen enhanced interface to the GoogleVoice phone service"
16 Features:
17 .
18 * Dialpad for quick call
19 .
20 * Checking voicemails, texts, call history
21 .
22 * Sending texts
23 .
24 * Notification support for texts, voicemail, and/or missed calls
25 .
26 Homepage: http://gc-dialer.garage.maemo.org/
27 """
28 __author__ = "Ed Page"
29 __email__ = "eopage@byu.net"
30 __version__ = constants.__version__
31 __build__ = constants.__build__
32 __changelog__ = """
33 1.0.10
34 * Renamed Recent to History
35 * Sped up GV contacts
36 * Remember if fullscreen (Ctrl+enter) in settings
37 * Added Ctrl+w and Ctrl+q to quit
38 * Added a filter for the Call History
39 * Error logging for notifications
40 * Bugfix: Messages tab not showing all of a message in Fremantle
41 * Bugfix: When selecting a message, the wrong message is displayed in the Send SMS dialog
42 * Bugfix: Removing some false positives for notification
43
44 1.0.9
45 * Added .deb packages for generic linux
46 * UI Tweak: Added an app menu
47 * Bug Fix: "Unable to Complete Calls Out" due to google.com/voice/m issues
48
49 1.0.8
50 * Sped up login time by delay loading contact list
51 * Sped up login when you do not have a cookie file (first launch)
52 * Ability to narrow down messages either by type or status
53 * Fremantle: Notification Support including testing of custom notifications
54 * UI Tweak: Cut down the number of times the login dialog is needlessly displayed
55 * Bug Fix: Switching to accounts tab when callback is blank
56 * Bug Fix: Corrupt cookie files prevent login
57 * Bug Fix: Logging in without credentials through cookies
58 * Debugging: Log contents now accessible through Ctrl+l
59
60 1.0.7
61 * Sped up various login cases
62 * Added descriptions to the callback numbers
63 * Collapsed conversations in the messages tab
64 * Give access to all of a contacts numbers when launching dialog from Recent or Messages tabs
65 * UI Tweak: Added more login status notifications
66 * UI Tweak: When no characters are entered, you can't send a text
67 * UI Tweak: Trying to consolidate dialogs by combining phone selection and SMS entry
68 * UI Tweak: Removed "Select" button from SMS Dialog
69 * UI Tweak: Increased the size of the SMS dialog
70 * UI Tweak: Disable "Dial" when a text has started to be entered
71 * UI Tweak: Move the sms history scroll bars around the whole sms conversation, giving more room to see with
72 * UI Tweak: Trying to be clearer by switching the login dialog from "Close" to "Cancel"
73 * UI Tweak: Remove auto-cancel of login after X attempts
74 * Bug Fix: Expanded the types of the Enter key that are supported for going to full screen
75 * Bug Fix: Random people were reporting login issues
76 * Bug Fix: Hardened against issues with grabbing possible callback numbers
77 * Bug Fix: Fremantle GTK doesn't allow TreeView rows to be selected, so row-activated handlers have to read their path
78 * Bug Fix: Fremantle PyMaemo doesn't provide a function Mer PyMaemo does, created a hack to be workable on both
79 * Bug Fix: Once PyMaemo supports thumb button sizes, setting that for all of the random buttons
80 * Bug Fix: When debugging hildonization, dialogs weren't closing
81 * Bug Fix: Not properly hildonizing some code
82 * Bug Fix: Attempting a hack to fix redirect issues for people
83 * Debugging: Improved logging output
84 * Debugging: Printing page when can't get a callback number
85 * Debugging: Included stuff to create all the debug files
86
87 1.0.6
88 * Fremantle Prep: Simplified menus in prep for no menu or the Fremantle App Menu
89 * Fremantle Prep: Implemented a work around for https://bugs.maemo.org/show_bug.cgi?id=4957
90 * Fremantle Prep: Switched to touch selectors for notification time, callback number, and contact addressbook
91 * Fremantle Prep: Making various widgets pannable rather than scrollable
92 * Fremantle Prep: CTRL-V added for paste for Dialpad
93 * Fremantle Prep: CTRL-Enter added for fullscreen
94 * UI Tweak: Phone selection and SMS Message dialogs now highlight the last message and are easier to scroll
95 * UI Tweak: Tweaked sizes of stuff on recent tab
96 * UI Tweak: Added notifcations for various things like login and dialing
97 * UI Tweak: Switch to accounts tab when logging in and callback is blank as a sublte hint to configure it
98 * UI Tweak: Switch to accounts tab on failed login to remind the user they are not logged in
99 * Packaging: Disables notifications on uninstall
100 * Packaging: Including a vastly improved py2deb for better packages (icons on package, etc)
101 * Debugging: Adding seperator between dialcentral launches in log
102 * Bug Fix: Made startup more error resistant
103 * Bug Fix: some dependencies for Diablo
104 * Bug Fix: Error on refreshing tabs when not logged in
105 * Bug Fix: #4471 Notification Checkbox Won't Stay Checked (hour roll over error)
106 * Bug Fix: Phone numbers in voicemails wouldn't appear
107 * Bug Fix: category for Fremantle/Diablo
108 * Bug Fix: needing to manually create "~/.dialcentral" due to earlier logging changes
109 * Bug Fix: dependencies for fremantle
110 * Bug Fix: Issues when trying to stack error messages
111 * Bug Fix: Python2.6 deprecates some stuff I did
112 * Bug Fix: On refreshing the Accounts tab, the callback number resets to the number from startup
113
114 1.0.5
115 * Contacts Tab remembers the last address book viewed on restart
116 * Applied some suggested changes for being more thumb friendly
117 * Messaging Dialog auto-scrolls to bottom
118 * Removed GrandCentral support
119 * Numbers can now be entered immediately, before login
120 * Bug Fix: Not clearing the entered number on sending an SMS
121 * Bug Fix: Disabling SMS button when logged off
122 * Bug Fix: Trying to make SMS and phone selection dialogs more readable
123 * Bug Fix: Adding some more thumb scrollbars
124
125 1.0.4
126 * "Back" button and tabs now visually indicate when they've entered a "hold" state
127 * Fixed the duplicate title on Maemo
128 * Removing some device connection observer code due to high bug to low benefit ratio
129 * Notification support
130 * Fixed a bug from 1.0.3 where once you refreshed a tab by holding on it, every tab would then be forced to refresh
131
132 1.0.3
133 * Holding down a tab for a second will now force a refresh
134 * Fixed a bug dealing with overzealously refreshing the contacts tab
135 * Finding some undescriptive errors and made them more descriptive
136 * Swapped the order GrandCentral and GoogleVoice appear in login window
137 * Fixed the "Recent" and "Message" tabs, google changed things on me again
138
139 1.0.2
140 * Random bug fixes
141 * Random performance improvements
142
143 1.0.1
144 * Fixed a voicemail transcripts due to a GoogleVoice change
145
146 1.0.0
147 * Added names to the recent tab for GoogleVoice
148
149 0.9.9
150 * SMS From Dialpad
151 * Display of names for messages tab
152 * Condensed messages/recent's date column
153
154 0.9.8
155  * Added columns to recent view and messages view to help seperate messages
156  * Attempted refreshing session on dial/sms send
157  * Fixed a GC Bug
158  * Minor bug fixes as usual
159
160 0.9.7
161  * Switched to Force Refresh for when wanting to check for more messages
162  * Removed timeouts that forced refreshes on various tabs
163  * Added support for a settings file, fairly primitive right now
164  * Fixed Maemo Support
165  * Lots of major and minor bug fixes
166
167 0.9.6
168  * Experimenting with the tabs being on the side
169  * Now the phone selector is used always, even if there is just one phone number
170  * Added a Messages Tab, which displays SMS and Voicemail messages
171  * Added option to send SMS messages
172
173 0.9.5
174  * Fixed a login issue due to Google changing their webpage
175
176 0.9.4 - ""
177  * Misc Bug fixes and experiments
178
179 0.9.3 - ""
180  * Removed the much disliked contact source ID
181  * Added saving of callback number when using GoogleVoice
182  * Got proper formatting on things ("&" rather than "&")
183  * Misc Bug fixes
184
185 0.9.2 - "Two heads are better than one"
186  * Adding of UI to switch between GC and GV
187  * Minimized flashing the dial button between grayed out and not on startup
188  * Bug fixes
189
190 0.9.1 - "Get your hands off that"
191  * GoogleVoice Support, what a pain
192  * More flexible CSV support.  It now checks the header row for what column name/number are in
193  * Experimenting with faster startup by caching PYC files with the package
194  * Fixing of some bad error handling
195  * More debug output for when people run into issues
196
197 0.9.0 - "Slick as snot"
198  * Caching of contacts
199  * Refactoring to make working with the code easier
200  * Filesystem backed contacts but currently only supporting a specific csv format
201  * Gracefully handle lack of connection and connection transitions
202  * Gracefully handle failed login
203  * A tiny bit better error reporting
204
205 0.8.3 - "Extras Love"
206  * Version bump fighting the extras autobuilder, I hope this works
207
208 0.8.2 - "Feed is for horses, so what about feedback?"
209  * Merged addressbook
210  * many more smaller fixes
211
212 0.8.1 - "Two Beers"
213  * Thumb scrollbars ( Kudos Khertan )
214
215 0.8.0 - "Spit and polish"
216  * Addressbook support
217  * threaded networking for better interactivity
218  * Hold down back to clear number
219  * Standard about dialog
220  * many more smaller fixes
221 """
222
223
224 __postinstall__ = """#!/bin/sh -e
225
226 gtk-update-icon-cache -f /usr/share/icons/hicolor
227 rm -f ~/.dialcentral/notifier.log
228 rm -f ~/.dialcentral/dialcentral.log
229 """
230
231 __preremove__ = """#!/bin/sh -e
232
233 python /usr/lib/dialcentral/alarm_handler.py -d || true
234 """
235
236
237 def find_files(path):
238         for root, dirs, files in os.walk(path):
239                 for file in files:
240                         if file.startswith("src-"):
241                                 fileParts = file.split("-")
242                                 unused, relPathParts, newName = fileParts[0], fileParts[1:-1], fileParts[-1]
243                                 assert unused == "src"
244                                 relPath = os.sep.join(relPathParts)
245                                 yield relPath, file, newName
246
247
248 def unflatten_files(files):
249         d = {}
250         for relPath, oldName, newName in files:
251                 if relPath not in d:
252                         d[relPath] = []
253                 d[relPath].append((oldName, newName))
254         return d
255
256
257 def build_package(distribution):
258         try:
259                 os.chdir(os.path.dirname(sys.argv[0]))
260         except:
261                 pass
262
263         py2deb.Py2deb.SECTIONS = py2deb.SECTIONS_BY_POLICY[distribution]
264         p = py2deb.Py2deb(__appname__)
265         p.prettyName = constants.__pretty_app_name__
266         p.description = __description__
267         p.bugTracker = "https://bugs.maemo.org/enter_bug.cgi?product=Dialcentral"
268         p.upgradeDescription = __changelog__.split("\n\n", 1)[0]
269         p.author = __author__
270         p.mail = __email__
271         p.license = "lgpl"
272         p.depends = ", ".join([
273                 "python2.6 | python2.5",
274                 "python-gtk2 | python2.5-gtk2",
275                 "python-xml | python2.5-xml",
276                 "python-dbus | python2.5-dbus",
277         ])
278         maemoSpecificDepends = ", python-osso | python2.5-osso, python-hildon | python2.5-hildon"
279         p.depends += {
280                 "debian": ", python-glade2",
281                 "chinook": maemoSpecificDepends,
282                 "diablo": maemoSpecificDepends,
283                 "fremantle": maemoSpecificDepends + ", python-glade2, python-alarm",
284                 "mer": maemoSpecificDepends + ", python-glade2",
285         }[distribution]
286         p.recommends = ", ".join([
287         ])
288         p.section = {
289                 "debian": "comm",
290                 "chinook": "communication",
291                 "diablo": "user/network",
292                 "fremantle": "user/network",
293                 "mer": "user/network",
294         }[distribution]
295         p.arch = "all"
296         p.urgency = "low"
297         p.distribution = "chinook diablo fremantle mer debian"
298         p.repository = "extras"
299         p.changelog = __changelog__
300         p.postinstall = __postinstall__
301         p.preremove = __preremove__
302         p.icon = {
303                 "debian": "26x26-dialcentral.png",
304                 "chinook": "26x26-dialcentral.png",
305                 "diablo": "26x26-dialcentral.png",
306                 "fremantle": "64x64-dialcentral.png", # Fremantle natively uses 48x48
307                 "mer": "64x64-dialcentral.png",
308         }[distribution]
309         p["/usr/bin"] = [ "dialcentral.py" ]
310         for relPath, files in unflatten_files(find_files(".")).iteritems():
311                 fullPath = "/usr/lib/dialcentral"
312                 if relPath:
313                         fullPath += os.sep+relPath
314                 p[fullPath] = list(
315                         "|".join((oldName, newName))
316                         for (oldName, newName) in files
317                 )
318         p["/usr/share/applications/hildon"] = ["dialcentral.desktop"]
319         p["/usr/share/icons/hicolor/26x26/hildon"] = ["26x26-dialcentral.png|dialcentral.png"]
320         p["/usr/share/icons/hicolor/64x64/hildon"] = ["64x64-dialcentral.png|dialcentral.png"]
321         p["/usr/share/icons/hicolor/scalable/hildon"] = ["scale-dialcentral.png|dialcentral.png"]
322
323         if distribution == "debian":
324                 print p
325                 print p.generate(
326                         version="%s-%s" % (__version__, __build__),
327                         changelog=__changelog__,
328                         build=True,
329                         tar=False,
330                         changes=False,
331                         dsc=False,
332                 )
333                 print "Building for %s finished" % distribution
334         else:
335                 print p
336                 print p.generate(
337                         version="%s-%s" % (__version__, __build__),
338                         changelog=__changelog__,
339                         build=False,
340                         tar=True,
341                         changes=True,
342                         dsc=True,
343                 )
344                 print "Building for %s finished" % distribution
345
346
347 if __name__ == "__main__":
348         if len(sys.argv) > 1:
349                 try:
350                         import optparse
351                 except ImportError:
352                         optparse = None
353
354                 if optparse is not None:
355                         parser = optparse.OptionParser()
356                         (commandOptions, commandArgs) = parser.parse_args()
357         else:
358                 commandArgs = None
359                 commandArgs = ["diablo"]
360         build_package(commandArgs[0])