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