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