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