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