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