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