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