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