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