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