Fixing a bug with configurable polling
[theonering] / 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__ = """Send/receive texts and initiate GV callbacks all through Conversations and Phone
16 Features:
17 .
18 * Send Texts and Receive both Texts and Voicemail through your chat window (buggy on Maemo 4.1)
19 .
20 * Initiate Google Voice callbacks from the dialpad or your contacts
21 .
22 * Access to all of your Google Voice contacts (Maemo 4.1 only for now)
23 .
24 * Reduce battery drain by setting your status to "Away"
25 .
26 * Block incoming calls by switching your status to "Hidden"
27 .
28 Note: Google and Google Voice are probably trademarks of Google.  This software nor the author has any affiliation with Google
29 .
30 Homepage: http://theonering.garage.maemo.org
31 """
32 __author__ = "Ed Page"
33 __email__ = "eopage@byu.net"
34 __version__ = constants.__version__
35 __build__ = constants.__build__
36 __changelog__ = """
37 0.7.5
38 * Fixing a polling time bug introduced when making polling configurable
39
40 0.7.4
41 * Fixing a bug with deny-lists
42
43 0.7.3
44 * Fixing bug with being able to configure polling times
45
46 0.7.2
47 * Added a Deny list
48 * Added option to make GV Contacts optional
49 * Added a limit, where if a state machine period is longer than it, than we set the period to infinite
50 * Delayed when we say the connection is disconnected to hopefully help random issues
51 * Tweaked how The One Ring shows up in the addressbook (Maemo 5)
52 * Made polling configurable
53 * Delayed auto-disconnect in case the user is just switching network connections (Maemo 4.1)
54 * Bugfix: Removed superfluous blank message from debug prompt
55 * Bugfix: Moved some more (very minor, very rarely used) timeouts to second resolution reducing overhead
56 * Bugfix: debug prompt commands handled command validation poorly
57 * Debug Prompt: Added a "version" command
58 * Debug Prompt: Added a "get_polling" command to find out what the actual polling periods are
59 * Debug Prompt: Added a "grab_log" command which is a broken but means to offer the log file through a file transfer
60 * Debug Prompt: Added a "save_log" command to help till grab_log works and for where file transfers aren't supported by clients
61
62 0.7.1
63 * Reducing the race window where GV will mark messages as read accidently
64 * Modified some things blindly "because thats what Butterfly does"
65 * Modified some support files to mimic other plugins on Maemo 5 PR1.1
66 * Added link to bug tracker and moved all bugs and enhancements to it
67 * Switched contacts to being away by default upon user feedback
68 * Adjusting handling of call states to at least allow the option of clients to provide clearer information to the user
69 * Fixing some bugs with handling a variety of phone number formats
70 * Removed a hack that changed the number being called, most likely put in place in a bygone era
71
72 0.7.0
73 * Initial beta release for Maemo 5
74 * Late Alpha for Maemo 4.1 with horrible consequences like crashing RTComm
75
76 0.1.0
77 * Pre-Alpha Development Release
78 """
79
80
81 __postinstall__ = """#!/bin/sh -e
82
83 gtk-update-icon-cache -f /usr/share/icons/hicolor
84 rm -f ~/.telepathy-theonering/theonering.log
85 """
86
87 def find_files(path):
88         for root, dirs, files in os.walk(path):
89                 for file in files:
90                         if file.startswith("src!"):
91                                 fileParts = file.split("!")
92                                 unused, relPathParts, newName = fileParts[0], fileParts[1:-1], fileParts[-1]
93                                 assert unused == "src"
94                                 relPath = os.sep.join(relPathParts)
95                                 yield relPath, file, newName
96
97
98 def unflatten_files(files):
99         d = {}
100         for relPath, oldName, newName in files:
101                 if relPath not in d:
102                         d[relPath] = []
103                 d[relPath].append((oldName, newName))
104         return d
105
106
107 def build_package(distribution):
108         try:
109                 os.chdir(os.path.dirname(sys.argv[0]))
110         except:
111                 pass
112
113         py2deb.Py2deb.SECTIONS = py2deb.SECTIONS_BY_POLICY[distribution]
114         p = py2deb.Py2deb(__appname__)
115         if distribution == "debian":
116                 p.prettyName = constants.__pretty_app_name__
117         else:
118                 p.prettyName = "Google Voice plugin for Conversations and Calls"
119         p.description = __description__
120         p.bugTracker = "https://bugs.maemo.org/enter_bug.cgi?product=The%%20One%%20Ring"
121         #p.upgradeDescription = __changelog__.split("\n\n", 1)[0]
122         p.author = __author__
123         p.mail = __email__
124         p.license = "lgpl"
125         p.section = {
126                 "debian": "comm",
127                 "diablo": "user/network",
128                 "fremantle": "user/network",
129                 "mer": "user/network",
130         }[distribution]
131         p.depends = ", ".join([
132                 "python (>= 2.5) | python2.5",
133                 "python-dbus | python2.5-dbus",
134                 "python-gobject | python2.5-gobject",
135                 "python-telepathy | python2.5-telepathy",
136         ])
137         p.depends += {
138                 "debian": "",
139                 "diablo": ", python2.5-conic, account-plugin-haze",
140                 "fremantle": ", account-plugin-haze",
141                 "mer": "",
142         }[distribution]
143         p.arch = "all"
144         p.urgency = "low"
145         p.distribution = "diablo fremantle mer debian"
146         p.repository = "extras"
147         p.changelog = __changelog__
148         p.postinstall = __postinstall__
149         p.icon = {
150                 "debian": "26x26-theonering.png",
151                 "diablo": "26x26-theonering.png",
152                 "fremantle": "64x64-theonering.png", # Fremantle natively uses 48x48
153                 "mer": "64x64-theonering.png",
154         }[distribution]
155         for relPath, files in unflatten_files(find_files(".")).iteritems():
156                 fullPath = "/usr/lib/theonering"
157                 if relPath:
158                         fullPath += os.sep+relPath
159                 p[fullPath] = list(
160                         "|".join((oldName, newName))
161                         for (oldName, newName) in files
162                 )
163         p["/usr/share/dbus-1/services"] = ["org.freedesktop.Telepathy.ConnectionManager.theonering.service"]
164         if distribution in ("debian", ):
165                 p["/usr/share/mission-control/profiles"] = ["theonering.profile.%s|theonering.profile"% distribution]
166         elif distribution in ("diablo", "fremantle", "mer"):
167                 p["/usr/share/osso-rtcom"] = ["theonering.profile.%s|theonering.profile"% distribution]
168         p["/usr/lib/telepathy"] = ["telepathy-theonering"]
169         p["/usr/share/telepathy/managers"] = ["theonering.manager"]
170         p["/usr/share/icons/hicolor/26x26/hildon"] = ["26x26-theonering.png|im-theonering.png"]
171
172         if distribution == "debian":
173                 print p
174                 print p.generate(
175                         version="%s-%s" % (__version__, __build__),
176                         changelog=__changelog__,
177                         build=True,
178                         tar=False,
179                         changes=False,
180                         dsc=False,
181                 )
182                 print "Building for %s finished" % distribution
183         else:
184                 print p
185                 print p.generate(
186                         version="%s-%s" % (__version__, __build__),
187                         changelog=__changelog__,
188                         build=False,
189                         tar=True,
190                         changes=True,
191                         dsc=True,
192                 )
193                 print "Building for %s finished" % distribution
194
195
196 if __name__ == "__main__":
197         if len(sys.argv) > 1:
198                 try:
199                         import optparse
200                 except ImportError:
201                         optparse = None
202
203                 if optparse is not None:
204                         parser = optparse.OptionParser()
205                         (commandOptions, commandArgs) = parser.parse_args()
206         else:
207                 commandArgs = None
208                 commandArgs = ["diablo"]
209         build_package(commandArgs[0])