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