forked from sonyxperiadev/ave
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdeb
More file actions
executable file
·338 lines (299 loc) · 11.7 KB
/
mkdeb
File metadata and controls
executable file
·338 lines (299 loc) · 11.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
#! /usr/bin/python2
import os
import sys
import shutil
import re
import subprocess
import glob
def run(cmd):
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = proc.communicate()
if proc.returncode:
print(out)
print(err)
sys.exit(1)
if __name__ == '__main__':
root = os.path.dirname(os.path.realpath(sys.argv[0]))
# clean out old staging material
for entry in os.listdir(root + '/packaging'):
if entry == 'DEBIAN':
continue
dst = root + '/packaging/' + entry
if os.path.isfile(dst):
os.unlink(dst)
else:
shutil.rmtree(dst)
#common-------------------------------------------------------------------
run(['make', '-C', root+'/common/src/libfdtx', 'clean'])
# build libfdtx
run(['make', '-C', root+'/common/src/libfdtx', 'libfdtx.so'])
# copy other executables to /usr/bin
src = glob.glob(root + '/common/bin/*')
dst = root + '/packaging/usr/bin'
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
if s.endswith('aapt') or s.endswith('hprof-conv'):
continue
shutil.copy(s, dst)
# copy modules and tests to /usr/lib/pymodules/ave
for path in ['/', '/network/']:
src = glob.glob(root + '/common/src/ave' + path + '*.py')
# ... except __init__.py which has to be an empty file
src = [s for s in src if os.path.basename(s) != '__init__.py']
for dst in [
root + '/packaging/usr/lib/pymodules/python2.6/ave' + path,
root + '/packaging/usr/lib/pymodules/python2.7/ave' + path
]:
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
# create the empty __init__.py
f = open(os.path.join(dst, '__init__.py'), 'w')
f.close()
# copy libfdtx to /usr/lib
src = root + '/common/src/libfdtx/libfdtx.so'
dst = root + '/packaging/usr/lib'
if not os.path.exists(dst):
os.makedirs(dst)
shutil.copy(src, dst)
# add search path to ave (fix for ubuntu 12).
for subver in [6, 7]:
path = root + '/packaging/usr/lib/python2.' + \
str(subver) + '/dist-packages'
if not os.path.exists(path):
os.makedirs(path)
with open(path + '/ave.pth', 'w') as text_file:
text_file.write('/usr/lib/pymodules/python2.' + str(subver) + '\n')
#broker-------------------------------------------------------------------
# copy upstart integration files to /etc/init
src = root + '/broker/etc/init/ave-broker.conf'
dst = root + '/packaging/etc/init'
if not os.path.exists(dst):
os.makedirs(dst)
shutil.copy(src, dst)
# copy executables to /usr/bin
src = glob.glob(root + '/broker/bin/*')
dst = root + '/packaging/usr/bin'
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
# copy all modules to /usr/lib/pymodules/python-2.*/ave/broker
src = glob.glob(root + '/broker/src/ave/broker/*.py')
for dst in [
root + '/packaging/usr/lib/pymodules/python2.6/ave/broker',
root + '/packaging/usr/lib/pymodules/python2.7/ave/broker'
]:
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
# copy all modules to /usr/lib/pymodules/ave/broker
src = glob.glob(root + '/broker/src/ave/broker/tools/*.py')
for dst in [
root + '/packaging/usr/lib/pymodules/python2.6/ave/broker/tools',
root + '/packaging/usr/lib/pymodules/python2.7/ave/broker/tools'
]:
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
#handset-------------------------------------------------------------------
# copy all handset modules to /usr/lib/pymodules/ave/handset
src = glob.glob(root + '/handset/src/ave/handset/*.py')
# ... except __init__.py which is owned by the ave-common package
src = [s for s in src if os.path.basename(s) != '__init__.py']
for dst in [
root + '/packaging/usr/lib/pymodules/python2.6/ave/handset',
root + '/packaging/usr/lib/pymodules/python2.7/ave/handset'
]:
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
# create the empty __init__.py
f = open(os.path.join(dst, '__init__.py'), 'w')
f.close()
# copy all adb modules to /usr/lib/pymodules/ave/adb
src = glob.glob(root + '/handset/src/ave/adb/*.py')
# ... except __init__.py which is owned by the ave-common package
src = [s for s in src if os.path.basename(s) != '__init__.py']
for dst in [
root + '/packaging/usr/lib/pymodules/python2.6/ave/adb',
root + '/packaging/usr/lib/pymodules/python2.7/ave/adb'
]:
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
# create the empty __init__.py
f = open(os.path.join(dst, '__init__.py'), 'w')
f.close()
# copy all in /usr/share/ave/handset to packaging
src = glob.glob(root + '/handset/usr/share/ave/handset/*')
dst = root + '/packaging/usr/share/ave/handset'
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
# copy all in bin to /usr/bin
src = glob.glob(root + '/handset/bin/*')
dst = root + '/packaging/usr/bin'
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
# copy all in etc to /etc/init
src = glob.glob(root + '/handset/etc/init/*')
dst = root + '/packaging/etc/init'
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
# copy all in etc to /etc/ave
src = glob.glob(root + '/handset/etc/ave/*')
dst = root + '/packaging/etc/ave'
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
#gerrit-------------------------------------------------------------------
# copy modules to /usr/lib/pymodules/python2.*/ave/gerrit
src = glob.glob(root + '/gerrit/src/ave/gerrit/*.py')
# ... except __init__.py which has to be an empty file
src = [s for s in src if os.path.basename(s) != '__init__.py']
for dst in [
root + '/packaging/usr/lib/pymodules/python2.6/ave/gerrit',
root + '/packaging/usr/lib/pymodules/python2.7/ave/gerrit'
]:
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
# create the empty __init__.py
f = open(os.path.join(dst, '__init__.py'), 'w')
f.close()
#vcsjob-------------------------------------------------------------------
# copy binaries to /usr/bin
src = root + '/vcsjob/bin/vcsjob'
dst = root + '/packaging/usr/bin'
if not os.path.exists(dst):
os.makedirs(dst)
shutil.copy(src, dst)
# copy package & modules to /usr/lib/pymodules/python2.6/vcsjob
src = glob.glob(root + '/vcsjob/src/vcsjob/*.py')
dst = root + '/packaging/usr/lib/pymodules/python2.6/vcsjob'
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
# copy package & modules to /usr/lib/pymodules/python2.7/vcsjob
dst = root + '/packaging/usr/lib/pymodules/python2.7/vcsjob'
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
#util-------------------------------------------------------------------
# copy modules and tests to /usr/lib/pymodules/ave
for path in ['/utils/']:
src = glob.glob(root + '/utils/src/ave' + path + '*.py')
# ... except __init__.py which has to be an empty file
src = [s for s in src if os.path.basename(s) != '__init__.py']
for dst in [
root + '/packaging/usr/lib/pymodules/python2.6/ave' + path,
root + '/packaging/usr/lib/pymodules/python2.7/ave' + path
]:
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
# create the empty __init__.py
f = open(os.path.join(dst, '__init__.py'), 'w')
f.close()
#workspace-------------------------------------------------------------------
# copy emma jar lib to /usr/share/ave/workspace
src = root + '/workspace/usr/share/ave/workspace/emma.jar'
dst = root + '/packaging/usr/share/ave/workspace'
if not os.path.exists(dst):
os.makedirs(dst)
shutil.copy(src, dst)
# copy executables to /usr/bin
src = glob.glob(root + '/workspace/bin/*')
dst = root + '/packaging/usr/bin'
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
# copy all modules and tests to /usr/lib/pymodules/python2.*/ave ...
src = glob.glob(root + '/workspace/src/ave/*.py')
# ... except __init__.py which is owned by the ave-common package
src = [s for s in src if os.path.basename(s) != '__init__.py']
for dst in [
root + '/packaging/usr/lib/pymodules/python2.6/ave',
root + '/packaging/usr/lib/pymodules/python2.7/ave'
]:
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
#galatea-------------------------------------------------------------------
src = root + '/galatea/latest/galatea.apk'
dst = root + '/packaging/usr/share/ave/galatea'
if not os.path.exists(dst):
os.makedirs(dst)
shutil.copy(src, dst)
#relay-------------------------------------------------------------------
# copy upstart integration files to /etc/init
src = root + '/relay/etc/init/ave-relay.conf'
dst = root + '/packaging/etc/init'
if not os.path.exists(dst):
os.makedirs(dst)
shutil.copy(src, dst)
# copy udev rules to /etc
src = glob.glob(root + '/relay/etc/udev/rules.d/*.rules')
dst = root + '/packaging/etc/udev/rules.d'
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
# copy executables to /usr/bin
src = glob.glob(root + '/relay/bin/*')
dst = root + '/packaging/usr/bin'
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
# copy all modules to /usr/lib/pymodules/python2.*/ave/relay
src = glob.glob(root + '/relay/src/ave/relay/*.py')
# ... except __init__.py which has special content in the local tree
src = [s for s in src if os.path.basename(s) != '__init__.py']
for dst in [
root + '/packaging/usr/lib/pymodules/python2.6/ave/relay',
root + '/packaging/usr/lib/pymodules/python2.7/ave/relay'
]:
if not os.path.exists(dst):
os.makedirs(dst)
for s in src:
shutil.copy(s, dst)
# create the empty __init__.py
f = open(os.path.join(dst, '__init__.py'), 'w')
f.close()
#----------------------------------------------------------------------------
# extract version information from the package control file
f = open(root + '/packaging/DEBIAN/control')
version = None
for line in f.readlines():
m = re.match('Version:\s*(?P<version>.*)', line)
if m:
version = m.group('version')
break
if not version:
print('ERROR: Could not find the version field in DEBIAN/control file')
sys.exit(1)
# generate the Debian package
src = root + '/packaging'
run(['fakeroot', 'dpkg-deb', '--build', src,
'%s/ave-%s.deb' % (root, version)])
print('created %s/ave-%s.deb' % (root, version))