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