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