On login failure, switch to accounts tab
[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/GrandCentral phone service"
16 __author__ = "Ed Page"
17 __email__ = "eopage@byu.net"
18 __version__ = constants.__version__
19 __build__ = constants.__build__
20 __changelog__ = """
21 1.0.6
22 * Adding seperator between dialcentral launches in log
23 * Implemented a work around for https://bugs.maemo.org/show_bug.cgi?id=4957
24 * Disables notifications on uninstall
25 * Including a vastly improved py2deb for better packages (icons on package, etc)
26 * Tweaked sizes of stuff on recent tab
27 * Starting some work on rotation support for fremantle
28 * Made startup more error resistant
29 * Simplified menus
30 * Fremantle: Making various areas pannable
31 * Phone selection and SMS Message dialogs now use a tree view for the top part.  This gives highlighting of the last message, easier scrolling, easier code, etc
32 * UI Tweak: Switch to accounts tab when logging in and callback is blank as a sublte hint to configure it
33 * UI Tweak: Switch to accounts tab on failed login to remind the user they are not logged in
34 * Bug Fix: some dependencies for Diablo
35 * Bug Fix: Error on refreshing tabs when not logged in
36 * Bug Fix: #4471 Notification Checkbox Won't Stay Checked (hour roll over error)
37 * Bug Fix: Phone numbers in voicemails wouldn't appear
38 * Bug Fix: category for Fremantle/Diablo
39 * Bug Fix: needing to manually create "~/.dialcentral" due to earlier logging changes
40 * Bug Fix: dependencies for fremantle
41 * Bug Fix: Issues when trying to stack error messages
42 * Bug Fix: Python2.6 deprecates some stuff I did
43
44 1.0.5
45 * Contacts Tab remembers the last address book viewed on restart
46 * Applied some suggested changes for being more thumb friendly
47 * Messaging Dialog auto-scrolls to bottom
48 * Removed GrandCentral support
49 * Numbers can now be entered immediately, before login
50 * Bug Fix: Not clearing the entered number on sending an SMS
51 * Bug Fix: Disabling SMS button when logged off
52 * Bug Fix: Trying to make SMS and phone selection dialogs more readable
53 * Bug Fix: Adding some more thumb scrollbars
54
55 1.0.4
56 * "Back" button and tabs now visually indicate when they've entered a "hold" state
57 * Fixed the duplicate title on Maemo
58 * Removing some device connection observer code due to high bug to low benefit ratio
59 * Notification support
60 * 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
61
62 1.0.3
63 * Holding down a tab for a second will now force a refresh
64 * Fixed a bug dealing with overzealously refreshing the contacts tab
65 * Finding some undescriptive errors and made them more descriptive
66 * Swapped the order GrandCentral and GoogleVoice appear in login window
67 * Fixed the "Recent" and "Message" tabs, google changed things on me again
68
69 1.0.2
70 * Random bug fixes
71 * Random performance improvements
72
73 1.0.1
74 * Fixed a voicemail transcripts due to a GoogleVoice change
75
76 1.0.0
77 * Added names to the recent tab for GoogleVoice
78
79 0.9.9
80 * SMS From Dialpad
81 * Display of names for messages tab
82 * Condensed messages/recent's date column
83
84 0.9.8
85  * Added columns to recent view and messages view to help seperate messages
86  * Attempted refreshing session on dial/sms send
87  * Fixed a GC Bug
88  * Minor bug fixes as usual
89
90 0.9.7
91  * Switched to Force Refresh for when wanting to check for more messages
92  * Removed timeouts that forced refreshes on various tabs
93  * Added support for a settings file, fairly primitive right now
94  * Fixed Maemo Support
95  * Lots of major and minor bug fixes
96
97 0.9.6
98  * Experimenting with the tabs being on the side
99  * Now the phone selector is used always, even if there is just one phone number
100  * Added a Messages Tab, which displays SMS and Voicemail messages
101  * Added option to send SMS messages
102
103 0.9.5
104  * Fixed a login issue due to Google changing their webpage
105
106 0.9.4 - ""
107  * Misc Bug fixes and experiments
108
109 0.9.3 - ""
110  * Removed the much disliked contact source ID
111  * Added saving of callback number when using GoogleVoice
112  * Got proper formatting on things ("&" rather than "&")
113  * Misc Bug fixes
114
115 0.9.2 - "Two heads are better than one"
116  * Adding of UI to switch between GC and GV
117  * Minimized flashing the dial button between grayed out and not on startup
118  * Bug fixes
119
120 0.9.1 - "Get your hands off that"
121  * GoogleVoice Support, what a pain
122  * More flexible CSV support.  It now checks the header row for what column name/number are in
123  * Experimenting with faster startup by caching PYC files with the package
124  * Fixing of some bad error handling
125  * More debug output for when people run into issues
126
127 0.9.0 - "Slick as snot"
128  * Caching of contacts
129  * Refactoring to make working with the code easier
130  * Filesystem backed contacts but currently only supporting a specific csv format
131  * Gracefully handle lack of connection and connection transitions
132  * Gracefully handle failed login
133  * A tiny bit better error reporting
134
135 0.8.3 - "Extras Love"
136  * Version bump fighting the extras autobuilder, I hope this works
137
138 0.8.2 - "Feed is for horses, so what about feedback?"
139  * Merged addressbook
140  * many more smaller fixes
141
142 0.8.1 - "Two Beers"
143  * Thumb scrollbars ( Kudos Khertan )
144
145 0.8.0 - "Spit and polish"
146  * Addressbook support
147  * threaded networking for better interactivity
148  * Hold down back to clear number
149  * Standard about dialog
150  * many more smaller fixes
151 """
152
153
154 __postinstall__ = """#!/bin/sh -e
155
156 gtk-update-icon-cache -f /usr/share/icons/hicolor
157 """
158
159 __preremove__ = """#!/bin/sh -e
160
161 python /usr/lib/dialcentral/alarm_handler.py -d || true
162 """
163
164
165 def find_files(path):
166         for root, dirs, files in os.walk(path):
167                 for file in files:
168                         if file.startswith("src-"):
169                                 fileParts = file.split("-")
170                                 unused, relPathParts, newName = fileParts[0], fileParts[1:-1], fileParts[-1]
171                                 assert unused == "src"
172                                 relPath = os.sep.join(relPathParts)
173                                 yield relPath, file, newName
174
175
176 def unflatten_files(files):
177         d = {}
178         for relPath, oldName, newName in files:
179                 if relPath not in d:
180                         d[relPath] = []
181                 d[relPath].append((oldName, newName))
182         return d
183
184
185 def build_package(distribution):
186         try:
187                 os.chdir(os.path.dirname(sys.argv[0]))
188         except:
189                 pass
190
191         py2deb.Py2deb.SECTIONS = py2deb.SECTIONS_BY_POLICY[distribution]
192         p = py2deb.Py2deb(__appname__)
193         p.description = __description__
194         p.upgradeDescription = __changelog__.split("\n\n", 1)[0]
195         p.author = __author__
196         p.mail = __email__
197         p.license = "lgpl"
198         p.depends = ", ".join([
199                 "python2.6 | python2.5",
200                 "python-gtk2 | python2.5-gtk2",
201                 "python-xml | python2.5-xml",
202                 "python-dbus | python2.5-dbus",
203         ])
204         maemoSpecificDepends = ", python-osso | python2.5-osso, python-hildon | python2.5-hildon"
205         p.depends += {
206                 "debian": ", python-glade2",
207                 "chinook": maemoSpecificDepends,
208                 "diablo": maemoSpecificDepends,
209                 "fremantle": maemoSpecificDepends + ", python-glade2",
210                 "mer": maemoSpecificDepends + ", python-glade2",
211         }[distribution]
212         p.recommends = ", ".join([
213         ])
214         p.section = {
215                 "debian": "comm",
216                 "chinook": "communication",
217                 "diablo": "user/network",
218                 "fremantle": "user/network",
219                 "mer": "user/network",
220         }[distribution]
221         p.arch = "all"
222         p.urgency = "low"
223         p.distribution = "chinook diablo fremantle mer debian"
224         p.repository = "extras"
225         p.changelog = __changelog__
226         p.postinstall = __postinstall__
227         p.preremove = __preremove__
228         p.icon = {
229                 "debian": "26x26-dialcentral.png",
230                 "chinook": "26x26-dialcentral.png",
231                 "diablo": "26x26-dialcentral.png",
232                 "fremantle": "64x64-dialcentral.png", # Fremantle natively uses 48x48
233                 "mer": "64x64-dialcentral.png",
234         }[distribution]
235         p["/usr/bin"] = [ "dialcentral.py" ]
236         for relPath, files in unflatten_files(find_files(".")).iteritems():
237                 fullPath = "/usr/lib/dialcentral"
238                 if relPath:
239                         fullPath += os.sep+relPath
240                 p[fullPath] = list(
241                         "|".join((oldName, newName))
242                         for (oldName, newName) in files
243                 )
244         p["/usr/share/applications/hildon"] = ["dialcentral.desktop"]
245         p["/usr/share/icons/hicolor/26x26/hildon"] = ["26x26-dialcentral.png|dialcentral.png"]
246         p["/usr/share/icons/hicolor/64x64/hildon"] = ["64x64-dialcentral.png|dialcentral.png"]
247         p["/usr/share/icons/hicolor/scalable/hildon"] = ["scale-dialcentral.png|dialcentral.png"]
248
249         print p
250         print p.generate(
251                 version="%s-%s" % (__version__, __build__),
252                 changelog=__changelog__,
253                 build=False,
254                 tar=True,
255                 changes=True,
256                 dsc=True,
257         )
258         print "Building for %s finished" % distribution
259
260
261 if __name__ == "__main__":
262         if len(sys.argv) > 1:
263                 try:
264                         import optparse
265                 except ImportError:
266                         optparse = None
267
268                 if optparse is not None:
269                         parser = optparse.OptionParser()
270                         (commandOptions, commandArgs) = parser.parse_args()
271         else:
272                 commandArgs = None
273                 commandArgs = ["diablo"]
274         build_package(commandArgs[0])