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