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