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