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