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