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