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