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