This repository has been archived by the owner on Nov 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
fabfile.py
397 lines (309 loc) · 14 KB
/
fabfile.py
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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import with_statement
import os
from os.path import join as pj
from string import Template
import json
import time
import re
import yaml
from fabric.api import local, run, sudo, execute, put
from fabric.context_managers import settings, hide
from fabric.decorators import task, hosts, with_settings
from fabric.utils import abort
from fabric.state import env
from fabric.colors import green, red
from cuisine import package_ensure, dir_ensure, file_write
from distutils.util import strtobool
env.disable_known_hosts = True
PATH = os.path.dirname(os.path.abspath(__file__))
RPM_COMPONENTS = ['base', 'updates', 'extras']
RPM_ARCHS = ['i386', 'x86_64']
CONFIG_FILE = os.path.expanduser('~/.config/package-build.yaml')
if not os.path.isfile(CONFIG_FILE):
abort('config file {} not found, aborting here'.format(CONFIG_FILE))
with open(CONFIG_FILE, 'r') as config_file:
env.update(yaml.load(config_file)['env'])
PACKAGE_FORMAT = {}
for package_format, dists in env.dists.iteritems():
for dist in dists:
PACKAGE_FORMAT[dist] = package_format
def atoi(text):
return (int(text) if text.isdigit() else text)
def natural_keys(text):
'''
alist.sort(key=natural_keys) sorts in human order
http://nedbatchelder.com/blog/200712/human_sorting.html
(See Toothy's implementation in the comments)
'''
return [atoi(c) for c in re.split('(\d+)', text)]
def package_exists(path):
if os.path.isfile(path):
print 'package has already been build: {}'.format(path)
return True
return False
def prep_bool_arg(arg):
return bool(strtobool(str(arg)))
# some repo_* commands must run as root, because sudo won't allow access to the GPG keyring
@hosts(env.repo_host)
@with_settings(user='root')
@task
def repo_rpm_init():
''' initialize package repo '''
package_ensure('createrepo')
for dist, package_format in PACKAGE_FORMAT.items():
if package_format == 'rpm':
dir_ensure('{0}/archive/{1}'.format(env.repo_rpm_root, dist), recursive=True)
for component in RPM_COMPONENTS:
for arch in RPM_ARCHS:
path = pj(env.repo_rpm_root, dist, component, arch)
dir_ensure(path, recursive=True)
run('createrepo {}'.format(path))
@hosts(env.repo_host)
@with_settings(hide('commands'))
@task
def repo_rpm_list(dist='centos6'):
''' list a rpm repo's packages '''
output = run('cd {0} && find {1} -type f -name "*rpm"'.format(env.repo_rpm_root, dist))
for line in output.split('\n'):
if line:
dist, component, arch, package = line.split('/')
print '{0}: {1}'.format('|'.join([dist, component, arch]), package)
@hosts(env.repo_host)
@with_settings(hide('commands'), user='root')
@task
def repo_rpm_add(package, dist='centos6', component='base'):
'''upload and add package to a rpm repo, defaults to centos6'''
arch = 'x86_64'
if any(map(lambda arch: arch in package, ['i386, i586, i686'])):
arch = 'i386'
put(package, pj(env.repo_rpm_root, 'archive', dist))
package = package.split('/')[-1]
path = pj(env.repo_rpm_root, dist, component, arch)
run('cp {0} {1}'.format(pj(env.repo_rpm_root, 'archive', dist, package), path))
output = run('createrepo {0}'.format(path))
if output.succeeded:
print green('added {0} to repo {1}'.format(package, dist))
@hosts(env.repo_host)
@with_settings(hide('commands'), user='root')
@task
def repo_rpm_del(packagename, dist='centos6', component='base'):
''' delete "packagename" from repo '''
packagename = packagename.strip()
if not packagename:
abort('can not delete empty package name'.format(packagename))
if not packagename.endswith('.rpm'):
packagename += '*.rpm'
path = '/'.join([env.repo_rpm_root, dist, component])
run('find {0} -name "{1}" -exec mv {{}} {2}/archive/ \;'.format(path, packagename, env.repo_rpm_root))
output = run('createrepo {0}'.format(path))
if output.succeeded:
print red('deleted {0} from repo {1}'.format(packagename, dist))
@hosts(env.repo_host)
@with_settings(user='root')
@task
def repo_deb_init():
''' initialize package repo '''
file_write('/etc/apt/sources.list.d/aptly-repo.list', 'deb http://repo.aptly.info/ squeeze main')
package_ensure('aptly')
with open('aptly.conf.tmpl', 'r') as tf:
template = Template(tf.read())
for dist, package_format in PACKAGE_FORMAT.items():
if package_format == 'deb':
dir_ensure(pj(env.repo_deb_root, 'archive', dist), recursive=True)
configfile = 'aptly-{0}.conf'.format(dist)
with open(configfile, 'w') as fh:
content = template.safe_substitute(repo_root=env.repo_deb_root, release=dist)
fh.write(content)
put(configfile, '/etc/aptly-{0}.conf'.format(dist))
os.unlink(configfile)
run('/usr/bin/aptly -config=/etc/aptly-{0}.conf repo list --raw=true | grep -q {0} \
|| /usr/bin/aptly -config /etc/aptly-{0}.conf repo create {0}'.format(dist))
@hosts(env.repo_host)
@with_settings(hide('commands'))
def get_last_snapshot(dist='ubuntu16.04'):
output = sudo('/usr/bin/aptly -config=/etc/aptly-{0}.conf snapshot list -sort="time" -raw=true'.format(dist))
return output.split('\n').pop()
@hosts(env.repo_host)
def republish(dist='ubuntu16.04', snapshot=False):
with hide('commands'):
if snapshot:
print 'drop current publication of repo {0}, if existing'.format(green(dist))
run('/usr/bin/aptly -config=/etc/aptly-{0}.conf -architectures=i386,amd64,all \
publish drop {0}'.format(dist),
warn_only=True)
print 'drop snapshot from today, if existing'
run('/usr/bin/aptly -config=/etc/aptly-{0}.conf -architectures=i386,amd64,all \
snapshot drop $(date +%F)'.format(dist),
warn_only=True)
print 'create current snapshot'
if run('/usr/bin/aptly -config=/etc/aptly-{0}.conf -architectures=i386,amd64,all \
snapshot create $(date +%F) from repo {0}'.format(dist)).failed:
return False
print 'publish current snapshot'
if run('/usr/bin/aptly -config=/etc/aptly-{0}.conf -architectures=i386,amd64,all \
publish snapshot $(date +%F)'.format(dist)).failed:
return False
else:
run('/usr/bin/aptly -config=/etc/aptly-{0}.conf \
publish list -raw=true | grep -q {0} || \
/usr/bin/aptly -config=/etc/aptly-{0}.conf \
publish repo -distribution={0} {0}'.format(dist),
warn_only=True)
if run('/usr/bin/aptly -config=/etc/aptly-{0}.conf \
publish update -force-overwrite {0}'.format(dist),
warn_only=True).failed:
return False
return True
@hosts(env.repo_host)
@with_settings(hide('commands'))
@task
def repo_deb_list(dist='ubuntu16.04', snapshot=False):
''' list an apt repo's packages '''
if snapshot:
last = get_last_snapshot(dist)
output = sudo('/usr/bin/aptly -config=/etc/aptly-{0}.conf snapshot show -with-packages {1}'.format(dist, last))
else:
output = sudo('/usr/bin/aptly -config=/etc/aptly-{0}.conf repo show -with-packages {0}'.format(dist))
for line in output.split('\n'):
print line
@hosts(env.repo_host)
@with_settings(user='root')
@task
def repo_deb_add(package, dist='ubuntu16.04'):
'''upload and add package to an apt repo, defaults to ubuntu16.04
Example:
% fab repo_deb_add:myfoo.deb,dist=ubuntu16.04
'''
if not os.path.isfile(os.path.expanduser(package)):
abort('could not upload {0}: file not found'.format(package))
with hide('commands'):
put(package, '{0}/archive/{1}'.format(env.repo_deb_root, dist))
package = package.split('/')[-1]
run('/usr/bin/aptly -config=/etc/aptly-{0}.conf repo add -force-replace {0} {1}/archive/{0}/{2}'.format(dist,
env.repo_deb_root, package))
if republish(dist):
print green('added {0} to repo {1}'.format(package, dist))
@hosts(env.repo_host)
@with_settings(user='root')
@task
def repo_deb_del(packagename, query='', dist='ubuntu16.04'):
''' delete "packagename" from repo '''
with hide('commands'):
if query:
run('/usr/bin/aptly -config=/etc/aptly-{0}.conf repo remove {0} "{1} ({2})"'.format(dist, packagename, query))
else:
run('/usr/bin/aptly -config=/etc/aptly-{0}.conf repo remove {0} {1}'.format(dist, packagename))
if republish(dist):
print red('deleted {0} from repo {1}'.format(packagename, dist))
@hosts(env.repo_host)
@with_settings(user='root')
@task
def repo_deb_rebuild(dist='ubuntu16.04'):
''' rebuild repository and re-import all packages '''
run('rm -fr {0}/{1}/'.format(env.repo_deb_root, dist))
repo_deb_init()
run('find {0}/archive/{1}/ -name "*.deb" \
| sort -n \
| while read package; do dpkg -I $package >/dev/null \
&& /usr/bin/aptly -config=/etc/aptly-{1}.conf \
repo add -force-replace {1} $package; done'.format(env.repo_deb_root,
dist))
if republish(dist):
print green('successfully rebuild repo for dist {0}'.format(dist))
@task
@with_settings(hide('commands'))
def package_info(package):
''' display metadata info for package file'''
info = {
'version': None,
'description': None,
'arch': None,
'dependencies': [],
'release': None,
}
os.path.isfile(package) or abort('{0} doesn\'t exist.'.format(package))
if package.endswith('.deb'):
info['version'] = local('dpkg --field {0} Version'.format(package), capture=True)
info['description'] = local('dpkg --field {0} Description'.format(package), capture=True)
info['arch'] = local('dpkg --field {0} Architecture'.format(package), capture=True)
info['release'] = local('dpkg --field {0} Revision'.format(package), capture=True)
dependencies = local('dpkg --field {0} Depends'.format(package), capture=True)
for dependency in dependencies.split(','):
dependency = dependency.replace('(', '').replace(')', '').replace(' ', '')
if not ('>=' in dependency or '<=' in dependency) and dependency.count('=') == 1:
dependency = dependency.replace('=', '==')
info['dependencies'].append(dependency)
if package.endswith('.rpm'):
info['version'] = local('rpm -qp --dbpath=/tmp --queryformat=%{{VERSION}} {0}'.format(package), capture=True)
info['description'] = local('rpm -qp --dbpath=/tmp --queryformat=%{{SUMMARY}} {0}'.format(package),
capture=True)
info['arch'] = local('rpm -qp --dbpath=/tmp --queryformat=%{{ARCH}} {0}'.format(package), capture=True)
info['release'] = local('rpm -qp --dbpath=/tmp --queryformat=%{{RELEASE}} {0}'.format(package), capture=True)
dependencies = local('rpm -qpR {0}'.format(package), capture=True)
for dependency in dependencies.split('\n'):
info['dependencies'].append(dependency.strip())
print json.dumps(info, indent=2)
return info
@task
def docker_build(dist=None, force=False):
''' build Docker image from ./docker/<dist>/Dockerfile '''
force = prep_bool_arg(force)
def build(dist, force):
image_existing = False
if not force:
with settings(warn_only=True):
image_existing = local('docker images | grep -q package_build/{dist}'.format(dist=dist)).succeeded
if not image_existing:
print '(re)building image {}...'.format(dist)
local('docker build --tag=package_build/{dist} {path}/docker/{dist}/'.format(dist=dist, path=PATH))
if dist:
print 'building Docker image for {}...'.format(dist)
builddir = pj(PATH, 'docker', dist)
os.path.isdir(builddir) or abort('{} dir is not existing'.format(builddir))
build(dist, force)
else:
print 'building Docker images for all distributions...'
for entry in os.listdir(pj(PATH, 'docker')):
if os.path.isdir(pj(PATH, 'docker', entry)):
build(entry, force)
@task
def docker_run(dist=None, command=''):
''' run a command on a Docker container based on dist'''
def run(dist, command):
with settings(warn_only=True):
cmd = 'docker run -v ${{PWD}}:/data package_build/{dist} {command}'.format(dist=dist, command=command)
if local(cmd).failed:
execute('docker_build', dist)
local(cmd)
if dist:
run(dist, command)
else:
for root, dirs, files in os.walk('./docker/'):
for dist in dirs:
run(dist, command)
@task
def package_build(recipe, dist=None, upload=False):
''' build package from recipe for dist '''
upload = prep_bool_arg(upload)
if dist:
dists = [dist]
else:
dists = [d for d, _ in PACKAGE_FORMAT.items()]
for dist in dists:
start_time = time.time()
execute('docker_run', dist, '/data/cook-recipe.sh {}'.format(recipe))
for root, dirs, files in os.walk(pj(PATH, 'recipes')):
for file in files:
if file == 'lastbuild' and os.path.getmtime(pj(root, file)) >= start_time:
package_name = ''
with open(pj(root, file), 'r') as fh:
package_name = fh.readline().strip()
print('package_name: {}'.format(package_name))
if package_name:
package_format = package_name.split('.')[-1]
dist = root.split('/')[-1]
if upload:
execute('repo_{0}_add'.format(package_format), pj(root, package_name), dist)
print 'task ran {0} seconds'.format(time.time() - start_time)